F_RPT_030106.Designer.cs 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640
  1. namespace Dongke.IBOSS.PRD.Client.ReportModule
  2. {
  3. partial class F_RPT_030106
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_030106));
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  57. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  58. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  59. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  60. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  61. this.CheckbatchonCheckBox = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
  62. this.RecyclingflagCheckBox1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
  63. this.lblCdate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  64. this.txtTestFormFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  65. this.dropTestFormFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ComboBox();
  66. this.chkTestMouldFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
  67. this.txtFyear = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  68. this.lblFyear = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  69. this.txtKcode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  70. this.lblKcode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  71. this.scbGoods = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoods();
  72. this.lblGoods = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  73. this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  74. this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
  75. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  76. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  77. this.chkCheckDate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  78. this.c_Label5 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  79. this.dtpCheckDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  80. this.dtpCheckDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  81. this.chkHandOver = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  82. this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  83. this.dtpHandOverEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  84. this.dtpHandOverStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  85. this.lblAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  86. this.dtpAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  87. this.dtpAccountDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  88. this.c_Label4 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  89. this.dropRptProcedure = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ComboBox();
  90. this.dkCheckProcedureSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
  91. this.txtKilnCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  92. this.c_Label3 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  93. this.txtDefectName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  94. this.txtGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  95. this.txtCheckUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  96. this.txtDefectCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  97. this.txtDefectUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  98. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  99. this.lblDefectName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  100. this.lblUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  101. this.lblDefectCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  102. this.lblDefectUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  103. this.dkDefectTypeNameSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkDefectTypeNameSearchBox();
  104. this.dkCompleteProcedure = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
  105. this.dkProcedureSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
  106. this.dkproductionLineSearchBox = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkproductionLineSearchBox();
  107. this.dtpCompleteDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  108. this.dtpCompleteDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  109. this.tblReportModule = new System.Windows.Forms.TabControl();
  110. this.tapReportModule = new System.Windows.Forms.TabPage();
  111. this.dgvReportModule = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  112. this.ProductionLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.ProcedureName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.DefectProcedureName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.DefectTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  116. this.DefectCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  117. this.DefectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  118. this.Usercode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  119. this.Goodstypename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.Goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.InCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.DefectProcedureID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.ProcedureID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.tapReportModuleDetail = new System.Windows.Forms.TabPage();
  125. this.dgvReportModuleDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  126. this.productionlinename1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  127. this.procedurename2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  128. this.CreateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  129. this.DefectProcedureName2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  130. this.DefectUserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.DefectTypeName2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.defectcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.alldefectcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.defectnam2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.DefectRemarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.DefectPositionCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.DefectPositionName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.DefectFineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.DefectDeductionNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.UserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.Goodstypename2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.goodscode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  143. this.barcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.LogoCodeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.Goodsleveltype = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.groutingdate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.groutingnum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  149. this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.groutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.KilnCarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.FinishedInspectionKilnLocation = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.workUsercodes = new System.Windows.Forms.DataGridViewTextBoxColumn();
  154. this.CreateUserCodes = new System.Windows.Forms.DataGridViewTextBoxColumn();
  155. this.HandOverTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  156. this.undoflag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  157. this.reworkflag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  158. this.glazingroom = new System.Windows.Forms.DataGridViewTextBoxColumn();
  159. this.Kcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  160. this.Fyear = new System.Windows.Forms.DataGridViewTextBoxColumn();
  161. this.TestMouldFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  162. this.tapDefectDetail = new System.Windows.Forms.TabPage();
  163. this.dgvDefectDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  164. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  165. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  166. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  167. this.CheckTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  168. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  169. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  170. this.DefectStaffNames3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  171. this.defectjobsname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  172. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  173. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  174. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  177. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  178. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  179. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  180. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  181. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  182. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  183. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  184. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  185. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  186. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  187. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  188. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  189. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  190. this.czGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  191. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  192. this.DefectKilnLocation = new System.Windows.Forms.DataGridViewTextBoxColumn();
  193. this.窑车位置 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  194. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  195. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  196. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  197. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  198. this.barcodeRemarks3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  199. this.bsqx = new System.Windows.Forms.DataGridViewTextBoxColumn();
  200. this.Kcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  201. this.Fyear1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  202. this.tabProDetail = new System.Windows.Forms.TabPage();
  203. this.dgvProDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  204. this.protime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  205. this.proname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  206. this.g4KILNCARCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  207. this.prousercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  208. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  209. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  210. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  211. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  212. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  213. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  214. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  215. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  216. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  217. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  218. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  219. this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  220. this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  221. this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  222. this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  223. this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  224. this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  225. this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  226. this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  227. this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  228. this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  229. this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  230. this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  231. this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  232. this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  233. this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  234. this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  235. this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  236. this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  237. this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  238. this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  239. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  240. this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  241. this.panel1 = new System.Windows.Forms.Panel();
  242. this.dkProcedureSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkProcedureSearchBox();
  243. this.tsrOperate.SuspendLayout();
  244. this.gbxCondition.SuspendLayout();
  245. this.tblReportModule.SuspendLayout();
  246. this.tapReportModule.SuspendLayout();
  247. ((System.ComponentModel.ISupportInitialize)(this.dgvReportModule)).BeginInit();
  248. this.tapReportModuleDetail.SuspendLayout();
  249. ((System.ComponentModel.ISupportInitialize)(this.dgvReportModuleDetail)).BeginInit();
  250. this.tapDefectDetail.SuspendLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.dgvDefectDetail)).BeginInit();
  252. this.tabProDetail.SuspendLayout();
  253. ((System.ComponentModel.ISupportInitialize)(this.dgvProDetail)).BeginInit();
  254. this.panel1.SuspendLayout();
  255. this.SuspendLayout();
  256. //
  257. // tsrOperate
  258. //
  259. this.tsrOperate.AutoSize = false;
  260. this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
  261. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  262. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  263. this.tsbtnAdaptive,
  264. this.tsbtnClose});
  265. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  266. this.tsrOperate.Name = "tsrOperate";
  267. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  268. this.tsrOperate.ShowItemToolTips = false;
  269. this.tsrOperate.Size = new System.Drawing.Size(1370, 35);
  270. this.tsrOperate.TabIndex = 0;
  271. this.tsrOperate.Text = "toolStrip1";
  272. //
  273. // tsbtnAdaptive
  274. //
  275. this.tsbtnAdaptive.AutoSize = false;
  276. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  277. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  278. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  279. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  280. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  281. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  282. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  283. //
  284. // tsbtnClose
  285. //
  286. this.tsbtnClose.AutoSize = false;
  287. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  288. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  289. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  290. this.tsbtnClose.Name = "tsbtnClose";
  291. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  292. this.tsbtnClose.Text = "关闭(&X)";
  293. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  294. //
  295. // gbxCondition
  296. //
  297. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  298. | System.Windows.Forms.AnchorStyles.Right)));
  299. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  300. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  301. this.gbxCondition.Controls.Add(this.CheckbatchonCheckBox);
  302. this.gbxCondition.Controls.Add(this.RecyclingflagCheckBox1);
  303. this.gbxCondition.Controls.Add(this.lblCdate);
  304. this.gbxCondition.Controls.Add(this.txtTestFormFlag);
  305. this.gbxCondition.Controls.Add(this.dropTestFormFlag);
  306. this.gbxCondition.Controls.Add(this.chkTestMouldFlag);
  307. this.gbxCondition.Controls.Add(this.txtFyear);
  308. this.gbxCondition.Controls.Add(this.lblFyear);
  309. this.gbxCondition.Controls.Add(this.txtKcode);
  310. this.gbxCondition.Controls.Add(this.lblKcode);
  311. this.gbxCondition.Controls.Add(this.scbGoods);
  312. this.gbxCondition.Controls.Add(this.lblGoods);
  313. this.gbxCondition.Controls.Add(this.lblGoodsType);
  314. this.gbxCondition.Controls.Add(this.scbGoodsType);
  315. this.gbxCondition.Controls.Add(this.btnClearCondition);
  316. this.gbxCondition.Controls.Add(this.btnSearch);
  317. this.gbxCondition.Controls.Add(this.chkCheckDate);
  318. this.gbxCondition.Controls.Add(this.c_Label5);
  319. this.gbxCondition.Controls.Add(this.dtpCheckDateEnd);
  320. this.gbxCondition.Controls.Add(this.dtpCheckDateStart);
  321. this.gbxCondition.Controls.Add(this.chkHandOver);
  322. this.gbxCondition.Controls.Add(this.c_Label2);
  323. this.gbxCondition.Controls.Add(this.dtpHandOverEnd);
  324. this.gbxCondition.Controls.Add(this.dtpHandOverStart);
  325. this.gbxCondition.Controls.Add(this.lblAccountDateEnd);
  326. this.gbxCondition.Controls.Add(this.dtpAccountDateEnd);
  327. this.gbxCondition.Controls.Add(this.dtpAccountDateStart);
  328. this.gbxCondition.Controls.Add(this.c_Label4);
  329. this.gbxCondition.Controls.Add(this.dropRptProcedure);
  330. this.gbxCondition.Controls.Add(this.dkCheckProcedureSearchBox);
  331. this.gbxCondition.Controls.Add(this.txtKilnCode);
  332. this.gbxCondition.Controls.Add(this.c_Label3);
  333. this.gbxCondition.Controls.Add(this.txtDefectName);
  334. this.gbxCondition.Controls.Add(this.txtGoodsCode);
  335. this.gbxCondition.Controls.Add(this.txtCheckUserCode);
  336. this.gbxCondition.Controls.Add(this.txtDefectCode);
  337. this.gbxCondition.Controls.Add(this.txtDefectUserCode);
  338. this.gbxCondition.Controls.Add(this.c_Label1);
  339. this.gbxCondition.Controls.Add(this.lblDefectName);
  340. this.gbxCondition.Controls.Add(this.lblUserCode);
  341. this.gbxCondition.Controls.Add(this.lblDefectCode);
  342. this.gbxCondition.Controls.Add(this.lblDefectUserCode);
  343. this.gbxCondition.Controls.Add(this.dkDefectTypeNameSearchBox1);
  344. this.gbxCondition.Controls.Add(this.dkCompleteProcedure);
  345. this.gbxCondition.Controls.Add(this.dkProcedureSearchBox);
  346. this.gbxCondition.Controls.Add(this.dkproductionLineSearchBox);
  347. this.gbxCondition.Controls.Add(this.dtpCompleteDateEnd);
  348. this.gbxCondition.Controls.Add(this.dtpCompleteDateStart);
  349. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  350. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  351. this.gbxCondition.IsMustInput = false;
  352. this.gbxCondition.Location = new System.Drawing.Point(0, 38);
  353. this.gbxCondition.Name = "gbxCondition";
  354. this.gbxCondition.OriginalHeight = -1;
  355. this.gbxCondition.Size = new System.Drawing.Size(1358, 130);
  356. this.gbxCondition.TabIndex = 1;
  357. this.gbxCondition.TabStop = false;
  358. this.gbxCondition.Text = "查询条件 ▼";
  359. this.gbxCondition.Enter += new System.EventHandler(this.gbxCondition_Enter);
  360. //
  361. // CheckbatchonCheckBox
  362. //
  363. this.CheckbatchonCheckBox.BackColor = System.Drawing.SystemColors.Control;
  364. this.CheckbatchonCheckBox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("CheckbatchonCheckBox.BackgroundImage")));
  365. this.CheckbatchonCheckBox.FalseText = "否";
  366. this.CheckbatchonCheckBox.Location = new System.Drawing.Point(318, 107);
  367. this.CheckbatchonCheckBox.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  368. this.CheckbatchonCheckBox.Name = "CheckbatchonCheckBox";
  369. this.CheckbatchonCheckBox.Size = new System.Drawing.Size(159, 16);
  370. this.CheckbatchonCheckBox.TabIndex = 66;
  371. this.CheckbatchonCheckBox.Title = "最后检验标识";
  372. this.CheckbatchonCheckBox.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
  373. this.CheckbatchonCheckBox.TrueText = "是";
  374. //
  375. // RecyclingflagCheckBox1
  376. //
  377. this.RecyclingflagCheckBox1.BackColor = System.Drawing.SystemColors.Control;
  378. this.RecyclingflagCheckBox1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RecyclingflagCheckBox1.BackgroundImage")));
  379. this.RecyclingflagCheckBox1.FalseText = "否";
  380. this.RecyclingflagCheckBox1.Location = new System.Drawing.Point(179, 106);
  381. this.RecyclingflagCheckBox1.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  382. this.RecyclingflagCheckBox1.Name = "RecyclingflagCheckBox1";
  383. this.RecyclingflagCheckBox1.Size = new System.Drawing.Size(133, 16);
  384. this.RecyclingflagCheckBox1.TabIndex = 65;
  385. this.RecyclingflagCheckBox1.Title = "回收标识";
  386. this.RecyclingflagCheckBox1.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
  387. this.RecyclingflagCheckBox1.TrueText = "是";
  388. //
  389. // lblCdate
  390. //
  391. this.lblCdate.AutoSize = true;
  392. this.lblCdate.BackColor = System.Drawing.Color.Transparent;
  393. this.lblCdate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  394. this.lblCdate.Location = new System.Drawing.Point(640, 26);
  395. this.lblCdate.Name = "lblCdate";
  396. this.lblCdate.Size = new System.Drawing.Size(53, 12);
  397. this.lblCdate.TabIndex = 64;
  398. this.lblCdate.Text = "登记时间";
  399. //
  400. // txtTestFormFlag
  401. //
  402. this.txtTestFormFlag.AutoSize = true;
  403. this.txtTestFormFlag.BackColor = System.Drawing.Color.Transparent;
  404. this.txtTestFormFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  405. this.txtTestFormFlag.Location = new System.Drawing.Point(12, 107);
  406. this.txtTestFormFlag.Name = "txtTestFormFlag";
  407. this.txtTestFormFlag.Size = new System.Drawing.Size(41, 12);
  408. this.txtTestFormFlag.TabIndex = 63;
  409. this.txtTestFormFlag.Text = "实验单";
  410. //
  411. // dropTestFormFlag
  412. //
  413. this.dropTestFormFlag.BackColor = System.Drawing.Color.Yellow;
  414. this.dropTestFormFlag.BackgroundColor = System.Drawing.SystemColors.Window;
  415. this.dropTestFormFlag.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  416. this.dropTestFormFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  417. this.dropTestFormFlag.FormattingEnabled = true;
  418. this.dropTestFormFlag.IsMustInput = true;
  419. this.dropTestFormFlag.Location = new System.Drawing.Point(71, 104);
  420. this.dropTestFormFlag.Name = "dropTestFormFlag";
  421. this.dropTestFormFlag.Size = new System.Drawing.Size(100, 20);
  422. this.dropTestFormFlag.TabIndex = 62;
  423. //
  424. // chkTestMouldFlag
  425. //
  426. this.chkTestMouldFlag.BackColor = System.Drawing.SystemColors.Control;
  427. this.chkTestMouldFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("chkTestMouldFlag.BackgroundImage")));
  428. this.chkTestMouldFlag.FalseText = "否";
  429. this.chkTestMouldFlag.Location = new System.Drawing.Point(1005, 77);
  430. this.chkTestMouldFlag.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
  431. this.chkTestMouldFlag.Name = "chkTestMouldFlag";
  432. this.chkTestMouldFlag.Size = new System.Drawing.Size(130, 16);
  433. this.chkTestMouldFlag.TabIndex = 60;
  434. this.chkTestMouldFlag.Title = "试验标识";
  435. this.chkTestMouldFlag.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
  436. this.chkTestMouldFlag.TrueText = "是";
  437. //
  438. // txtFyear
  439. //
  440. this.txtFyear.BackColor = System.Drawing.SystemColors.Window;
  441. this.txtFyear.BackgroundColor = System.Drawing.SystemColors.Window;
  442. this.txtFyear.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  443. this.txtFyear.ErrorMessage = "";
  444. this.txtFyear.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  445. this.txtFyear.ImeMode = System.Windows.Forms.ImeMode.Off;
  446. this.txtFyear.Location = new System.Drawing.Point(1040, 47);
  447. this.txtFyear.MaxLength = 20;
  448. this.txtFyear.Name = "txtFyear";
  449. this.txtFyear.Size = new System.Drawing.Size(76, 21);
  450. this.txtFyear.TabIndex = 39;
  451. this.txtFyear.TextValue = "";
  452. //
  453. // lblFyear
  454. //
  455. this.lblFyear.AutoSize = true;
  456. this.lblFyear.BackColor = System.Drawing.Color.Transparent;
  457. this.lblFyear.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  458. this.lblFyear.Location = new System.Drawing.Point(1005, 51);
  459. this.lblFyear.Name = "lblFyear";
  460. this.lblFyear.Size = new System.Drawing.Size(29, 12);
  461. this.lblFyear.TabIndex = 38;
  462. this.lblFyear.Text = "财年";
  463. //
  464. // txtKcode
  465. //
  466. this.txtKcode.BackColor = System.Drawing.SystemColors.Window;
  467. this.txtKcode.BackgroundColor = System.Drawing.SystemColors.Window;
  468. this.txtKcode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  469. this.txtKcode.ErrorMessage = "";
  470. this.txtKcode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  471. this.txtKcode.ImeMode = System.Windows.Forms.ImeMode.Off;
  472. this.txtKcode.Location = new System.Drawing.Point(1040, 20);
  473. this.txtKcode.MaxLength = 20;
  474. this.txtKcode.Name = "txtKcode";
  475. this.txtKcode.Size = new System.Drawing.Size(76, 21);
  476. this.txtKcode.TabIndex = 32;
  477. this.txtKcode.TextValue = "";
  478. //
  479. // lblKcode
  480. //
  481. this.lblKcode.AutoSize = true;
  482. this.lblKcode.BackColor = System.Drawing.Color.Transparent;
  483. this.lblKcode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  484. this.lblKcode.Location = new System.Drawing.Point(1005, 24);
  485. this.lblKcode.Name = "lblKcode";
  486. this.lblKcode.Size = new System.Drawing.Size(29, 12);
  487. this.lblKcode.TabIndex = 32;
  488. this.lblKcode.Text = "窑号";
  489. this.lblKcode.Click += new System.EventHandler(this.c_Label6_Click);
  490. //
  491. // scbGoods
  492. //
  493. this.scbGoods.CheckedData = null;
  494. this.scbGoods.Location = new System.Drawing.Point(377, 20);
  495. this.scbGoods.MultiSelect = true;
  496. this.scbGoods.Name = "scbGoods";
  497. this.scbGoods.Size = new System.Drawing.Size(100, 21);
  498. this.scbGoods.TabIndex = 37;
  499. //
  500. // lblGoods
  501. //
  502. this.lblGoods.AutoSize = true;
  503. this.lblGoods.BackColor = System.Drawing.Color.Transparent;
  504. this.lblGoods.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  505. this.lblGoods.ForeColor = System.Drawing.SystemColors.ControlText;
  506. this.lblGoods.Location = new System.Drawing.Point(318, 26);
  507. this.lblGoods.Name = "lblGoods";
  508. this.lblGoods.Size = new System.Drawing.Size(53, 12);
  509. this.lblGoods.TabIndex = 36;
  510. this.lblGoods.Text = "产品名称";
  511. //
  512. // lblGoodsType
  513. //
  514. this.lblGoodsType.AutoSize = true;
  515. this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
  516. this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  517. this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
  518. this.lblGoodsType.Location = new System.Drawing.Point(12, 26);
  519. this.lblGoodsType.Name = "lblGoodsType";
  520. this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
  521. this.lblGoodsType.TabIndex = 35;
  522. this.lblGoodsType.Text = "产品类别";
  523. //
  524. // scbGoodsType
  525. //
  526. this.scbGoodsType.CheckedData = null;
  527. this.scbGoodsType.IsOnlyDisplayEnd = false;
  528. this.scbGoodsType.Location = new System.Drawing.Point(70, 20);
  529. this.scbGoodsType.Name = "scbGoodsType";
  530. this.scbGoodsType.Size = new System.Drawing.Size(101, 21);
  531. this.scbGoodsType.TabIndex = 34;
  532. //
  533. // btnClearCondition
  534. //
  535. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  536. this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
  537. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  538. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  539. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  540. this.btnClearCondition.Location = new System.Drawing.Point(1267, 96);
  541. this.btnClearCondition.Name = "btnClearCondition";
  542. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  543. this.btnClearCondition.TabIndex = 29;
  544. this.btnClearCondition.Text = "清空条件(&C)";
  545. this.btnClearCondition.UseVisualStyleBackColor = true;
  546. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  547. //
  548. // btnSearch
  549. //
  550. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  551. this.btnSearch.BackColor = System.Drawing.Color.Transparent;
  552. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  553. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  554. this.btnSearch.ForeColor = System.Drawing.Color.White;
  555. this.btnSearch.Location = new System.Drawing.Point(1164, 96);
  556. this.btnSearch.Name = "btnSearch";
  557. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  558. this.btnSearch.TabIndex = 28;
  559. this.btnSearch.Text = "查询(&Q)";
  560. this.btnSearch.UseVisualStyleBackColor = true;
  561. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  562. //
  563. // chkCheckDate
  564. //
  565. this.chkCheckDate.AutoSize = true;
  566. this.chkCheckDate.Enabled = false;
  567. this.chkCheckDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  568. this.chkCheckDate.Location = new System.Drawing.Point(624, 76);
  569. this.chkCheckDate.Name = "chkCheckDate";
  570. this.chkCheckDate.Size = new System.Drawing.Size(72, 16);
  571. this.chkCheckDate.TabIndex = 30;
  572. this.chkCheckDate.Text = "缺陷登记";
  573. this.chkCheckDate.UseVisualStyleBackColor = true;
  574. this.chkCheckDate.CheckedChanged += new System.EventHandler(this.chkCheckDate_CheckedChanged);
  575. //
  576. // c_Label5
  577. //
  578. this.c_Label5.AutoSize = true;
  579. this.c_Label5.BackColor = System.Drawing.Color.Transparent;
  580. this.c_Label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  581. this.c_Label5.ForeColor = System.Drawing.SystemColors.ControlText;
  582. this.c_Label5.Location = new System.Drawing.Point(842, 78);
  583. this.c_Label5.Name = "c_Label5";
  584. this.c_Label5.Size = new System.Drawing.Size(17, 12);
  585. this.c_Label5.TabIndex = 32;
  586. this.c_Label5.Text = "至";
  587. //
  588. // dtpCheckDateEnd
  589. //
  590. this.dtpCheckDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
  591. this.dtpCheckDateEnd.Enabled = false;
  592. this.dtpCheckDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  593. this.dtpCheckDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  594. this.dtpCheckDateEnd.Location = new System.Drawing.Point(865, 74);
  595. this.dtpCheckDateEnd.Name = "dtpCheckDateEnd";
  596. this.dtpCheckDateEnd.Size = new System.Drawing.Size(134, 21);
  597. this.dtpCheckDateEnd.TabIndex = 33;
  598. //
  599. // dtpCheckDateStart
  600. //
  601. this.dtpCheckDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
  602. this.dtpCheckDateStart.Enabled = false;
  603. this.dtpCheckDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  604. this.dtpCheckDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  605. this.dtpCheckDateStart.Location = new System.Drawing.Point(702, 74);
  606. this.dtpCheckDateStart.Name = "dtpCheckDateStart";
  607. this.dtpCheckDateStart.Size = new System.Drawing.Size(134, 21);
  608. this.dtpCheckDateStart.TabIndex = 31;
  609. //
  610. // chkHandOver
  611. //
  612. this.chkHandOver.AutoSize = true;
  613. this.chkHandOver.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  614. this.chkHandOver.Location = new System.Drawing.Point(624, 49);
  615. this.chkHandOver.Name = "chkHandOver";
  616. this.chkHandOver.Size = new System.Drawing.Size(72, 16);
  617. this.chkHandOver.TabIndex = 17;
  618. this.chkHandOver.Text = "交接时间";
  619. this.chkHandOver.UseVisualStyleBackColor = true;
  620. this.chkHandOver.CheckedChanged += new System.EventHandler(this.chkHandOver_CheckedChanged);
  621. //
  622. // c_Label2
  623. //
  624. this.c_Label2.AutoSize = true;
  625. this.c_Label2.BackColor = System.Drawing.Color.Transparent;
  626. this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  627. this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
  628. this.c_Label2.Location = new System.Drawing.Point(842, 51);
  629. this.c_Label2.Name = "c_Label2";
  630. this.c_Label2.Size = new System.Drawing.Size(17, 12);
  631. this.c_Label2.TabIndex = 19;
  632. this.c_Label2.Text = "至";
  633. //
  634. // dtpHandOverEnd
  635. //
  636. this.dtpHandOverEnd.CustomFormat = "yyyy-MM-dd HH:mm";
  637. this.dtpHandOverEnd.Enabled = false;
  638. this.dtpHandOverEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  639. this.dtpHandOverEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  640. this.dtpHandOverEnd.Location = new System.Drawing.Point(865, 47);
  641. this.dtpHandOverEnd.Name = "dtpHandOverEnd";
  642. this.dtpHandOverEnd.Size = new System.Drawing.Size(134, 21);
  643. this.dtpHandOverEnd.TabIndex = 20;
  644. //
  645. // dtpHandOverStart
  646. //
  647. this.dtpHandOverStart.CustomFormat = "yyyy-MM-dd HH:mm";
  648. this.dtpHandOverStart.Enabled = false;
  649. this.dtpHandOverStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  650. this.dtpHandOverStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  651. this.dtpHandOverStart.Location = new System.Drawing.Point(702, 47);
  652. this.dtpHandOverStart.Name = "dtpHandOverStart";
  653. this.dtpHandOverStart.Size = new System.Drawing.Size(134, 21);
  654. this.dtpHandOverStart.TabIndex = 18;
  655. //
  656. // lblAccountDateEnd
  657. //
  658. this.lblAccountDateEnd.AutoSize = true;
  659. this.lblAccountDateEnd.BackColor = System.Drawing.Color.Transparent;
  660. this.lblAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  661. this.lblAccountDateEnd.ForeColor = System.Drawing.SystemColors.ControlText;
  662. this.lblAccountDateEnd.Location = new System.Drawing.Point(842, 24);
  663. this.lblAccountDateEnd.Name = "lblAccountDateEnd";
  664. this.lblAccountDateEnd.Size = new System.Drawing.Size(17, 12);
  665. this.lblAccountDateEnd.TabIndex = 8;
  666. this.lblAccountDateEnd.Text = "至";
  667. //
  668. // dtpAccountDateEnd
  669. //
  670. this.dtpAccountDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
  671. this.dtpAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  672. this.dtpAccountDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  673. this.dtpAccountDateEnd.Location = new System.Drawing.Point(865, 20);
  674. this.dtpAccountDateEnd.Name = "dtpAccountDateEnd";
  675. this.dtpAccountDateEnd.Size = new System.Drawing.Size(134, 21);
  676. this.dtpAccountDateEnd.TabIndex = 9;
  677. //
  678. // dtpAccountDateStart
  679. //
  680. this.dtpAccountDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
  681. this.dtpAccountDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  682. this.dtpAccountDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  683. this.dtpAccountDateStart.Location = new System.Drawing.Point(702, 20);
  684. this.dtpAccountDateStart.Name = "dtpAccountDateStart";
  685. this.dtpAccountDateStart.Size = new System.Drawing.Size(134, 21);
  686. this.dtpAccountDateStart.TabIndex = 7;
  687. //
  688. // c_Label4
  689. //
  690. this.c_Label4.AutoSize = true;
  691. this.c_Label4.BackColor = System.Drawing.Color.Transparent;
  692. this.c_Label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  693. this.c_Label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  694. this.c_Label4.IsMustInput = true;
  695. this.c_Label4.Location = new System.Drawing.Point(318, 78);
  696. this.c_Label4.Name = "c_Label4";
  697. this.c_Label4.Size = new System.Drawing.Size(53, 12);
  698. this.c_Label4.TabIndex = 24;
  699. this.c_Label4.Text = "交接工序";
  700. //
  701. // dropRptProcedure
  702. //
  703. this.dropRptProcedure.BackColor = System.Drawing.Color.Yellow;
  704. this.dropRptProcedure.BackgroundColor = System.Drawing.SystemColors.Window;
  705. this.dropRptProcedure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  706. this.dropRptProcedure.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  707. this.dropRptProcedure.FormattingEnabled = true;
  708. this.dropRptProcedure.IsMustInput = true;
  709. this.dropRptProcedure.Location = new System.Drawing.Point(377, 74);
  710. this.dropRptProcedure.Name = "dropRptProcedure";
  711. this.dropRptProcedure.Size = new System.Drawing.Size(100, 20);
  712. this.dropRptProcedure.TabIndex = 25;
  713. //
  714. // dkCheckProcedureSearchBox
  715. //
  716. this.dkCheckProcedureSearchBox.BackColor = System.Drawing.Color.Transparent;
  717. this.dkCheckProcedureSearchBox.DataSource = null;
  718. this.dkCheckProcedureSearchBox.Enabled = true;
  719. this.dkCheckProcedureSearchBox.IsEnablePurview = false;
  720. this.dkCheckProcedureSearchBox.IsMustInput = false;
  721. this.dkCheckProcedureSearchBox.Location = new System.Drawing.Point(12, 74);
  722. this.dkCheckProcedureSearchBox.ModelType = "-1";
  723. this.dkCheckProcedureSearchBox.Name = "dkCheckProcedureSearchBox";
  724. this.dkCheckProcedureSearchBox.ProcedureCode = "";
  725. this.dkCheckProcedureSearchBox.ProcedureID = null;
  726. this.dkCheckProcedureSearchBox.ProcedureIDS = null;
  727. this.dkCheckProcedureSearchBox.ProcedureName = null;
  728. this.dkCheckProcedureSearchBox.Purview = null;
  729. this.dkCheckProcedureSearchBox.PurviewType = ((byte)(0));
  730. this.dkCheckProcedureSearchBox.SelectMore = true;
  731. this.dkCheckProcedureSearchBox.Size = new System.Drawing.Size(159, 21);
  732. this.dkCheckProcedureSearchBox.TabIndex = 21;
  733. this.dkCheckProcedureSearchBox.Title = "检验工序";
  734. this.dkCheckProcedureSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  735. //
  736. // txtKilnCode
  737. //
  738. this.txtKilnCode.BackColor = System.Drawing.SystemColors.Window;
  739. this.txtKilnCode.BackgroundColor = System.Drawing.SystemColors.Window;
  740. this.txtKilnCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  741. this.txtKilnCode.ErrorMessage = "";
  742. this.txtKilnCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  743. this.txtKilnCode.Location = new System.Drawing.Point(542, 74);
  744. this.txtKilnCode.Name = "txtKilnCode";
  745. this.txtKilnCode.Size = new System.Drawing.Size(76, 21);
  746. this.txtKilnCode.TabIndex = 27;
  747. this.txtKilnCode.TextValue = "";
  748. //
  749. // c_Label3
  750. //
  751. this.c_Label3.AutoSize = true;
  752. this.c_Label3.BackColor = System.Drawing.Color.Transparent;
  753. this.c_Label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  754. this.c_Label3.Location = new System.Drawing.Point(483, 78);
  755. this.c_Label3.Name = "c_Label3";
  756. this.c_Label3.Size = new System.Drawing.Size(53, 12);
  757. this.c_Label3.TabIndex = 26;
  758. this.c_Label3.Text = "窑炉编码";
  759. //
  760. // txtDefectName
  761. //
  762. this.txtDefectName.BackColor = System.Drawing.SystemColors.Window;
  763. this.txtDefectName.BackgroundColor = System.Drawing.SystemColors.Window;
  764. this.txtDefectName.ErrorMessage = "";
  765. this.txtDefectName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  766. this.txtDefectName.Location = new System.Drawing.Point(542, 47);
  767. this.txtDefectName.Name = "txtDefectName";
  768. this.txtDefectName.Size = new System.Drawing.Size(76, 21);
  769. this.txtDefectName.TabIndex = 16;
  770. this.txtDefectName.TextValue = "";
  771. //
  772. // txtGoodsCode
  773. //
  774. this.txtGoodsCode.BackColor = System.Drawing.SystemColors.Window;
  775. this.txtGoodsCode.BackgroundColor = System.Drawing.SystemColors.Window;
  776. this.txtGoodsCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  777. this.txtGoodsCode.ErrorMessage = "";
  778. this.txtGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  779. this.txtGoodsCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  780. this.txtGoodsCode.Location = new System.Drawing.Point(236, 20);
  781. this.txtGoodsCode.MaxLength = 50;
  782. this.txtGoodsCode.Name = "txtGoodsCode";
  783. this.txtGoodsCode.Size = new System.Drawing.Size(76, 21);
  784. this.txtGoodsCode.TabIndex = 2;
  785. this.txtGoodsCode.TextValue = "";
  786. this.txtGoodsCode.TextChanged += new System.EventHandler(this.txtGoodsCode_TextChanged);
  787. //
  788. // txtCheckUserCode
  789. //
  790. this.txtCheckUserCode.BackColor = System.Drawing.SystemColors.Window;
  791. this.txtCheckUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  792. this.txtCheckUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  793. this.txtCheckUserCode.ErrorMessage = "";
  794. this.txtCheckUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  795. this.txtCheckUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  796. this.txtCheckUserCode.Location = new System.Drawing.Point(236, 74);
  797. this.txtCheckUserCode.MaxLength = 20;
  798. this.txtCheckUserCode.Name = "txtCheckUserCode";
  799. this.txtCheckUserCode.Size = new System.Drawing.Size(76, 21);
  800. this.txtCheckUserCode.TabIndex = 23;
  801. this.txtCheckUserCode.TextValue = "";
  802. //
  803. // txtDefectCode
  804. //
  805. this.txtDefectCode.BackColor = System.Drawing.SystemColors.Window;
  806. this.txtDefectCode.BackgroundColor = System.Drawing.SystemColors.Window;
  807. this.txtDefectCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  808. this.txtDefectCode.ErrorMessage = "";
  809. this.txtDefectCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  810. this.txtDefectCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  811. this.txtDefectCode.Location = new System.Drawing.Point(542, 20);
  812. this.txtDefectCode.MaxLength = 20;
  813. this.txtDefectCode.Name = "txtDefectCode";
  814. this.txtDefectCode.Size = new System.Drawing.Size(76, 21);
  815. this.txtDefectCode.TabIndex = 5;
  816. this.txtDefectCode.TextValue = "";
  817. this.txtDefectCode.TextChanged += new System.EventHandler(this.txtDefectCode_TextChanged);
  818. //
  819. // txtDefectUserCode
  820. //
  821. this.txtDefectUserCode.BackColor = System.Drawing.SystemColors.Window;
  822. this.txtDefectUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  823. this.txtDefectUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  824. this.txtDefectUserCode.ErrorMessage = "";
  825. this.txtDefectUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  826. this.txtDefectUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  827. this.txtDefectUserCode.Location = new System.Drawing.Point(236, 47);
  828. this.txtDefectUserCode.MaxLength = 20;
  829. this.txtDefectUserCode.Name = "txtDefectUserCode";
  830. this.txtDefectUserCode.Size = new System.Drawing.Size(76, 21);
  831. this.txtDefectUserCode.TabIndex = 12;
  832. this.txtDefectUserCode.TextValue = "";
  833. //
  834. // c_Label1
  835. //
  836. this.c_Label1.AutoSize = true;
  837. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  838. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  839. this.c_Label1.Location = new System.Drawing.Point(177, 24);
  840. this.c_Label1.Name = "c_Label1";
  841. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  842. this.c_Label1.TabIndex = 1;
  843. this.c_Label1.Text = "产品编码";
  844. //
  845. // lblDefectName
  846. //
  847. this.lblDefectName.AutoSize = true;
  848. this.lblDefectName.BackColor = System.Drawing.Color.Transparent;
  849. this.lblDefectName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  850. this.lblDefectName.Location = new System.Drawing.Point(483, 51);
  851. this.lblDefectName.Name = "lblDefectName";
  852. this.lblDefectName.Size = new System.Drawing.Size(53, 12);
  853. this.lblDefectName.TabIndex = 15;
  854. this.lblDefectName.Text = "缺陷名称";
  855. //
  856. // lblUserCode
  857. //
  858. this.lblUserCode.AutoSize = true;
  859. this.lblUserCode.BackColor = System.Drawing.Color.Transparent;
  860. this.lblUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  861. this.lblUserCode.Location = new System.Drawing.Point(177, 78);
  862. this.lblUserCode.Name = "lblUserCode";
  863. this.lblUserCode.Size = new System.Drawing.Size(53, 12);
  864. this.lblUserCode.TabIndex = 22;
  865. this.lblUserCode.Text = "检验工号";
  866. //
  867. // lblDefectCode
  868. //
  869. this.lblDefectCode.AutoSize = true;
  870. this.lblDefectCode.BackColor = System.Drawing.Color.Transparent;
  871. this.lblDefectCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  872. this.lblDefectCode.Location = new System.Drawing.Point(483, 24);
  873. this.lblDefectCode.Name = "lblDefectCode";
  874. this.lblDefectCode.Size = new System.Drawing.Size(53, 12);
  875. this.lblDefectCode.TabIndex = 4;
  876. this.lblDefectCode.Text = "缺陷编码";
  877. //
  878. // lblDefectUserCode
  879. //
  880. this.lblDefectUserCode.AutoSize = true;
  881. this.lblDefectUserCode.BackColor = System.Drawing.Color.Transparent;
  882. this.lblDefectUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  883. this.lblDefectUserCode.Location = new System.Drawing.Point(177, 51);
  884. this.lblDefectUserCode.Name = "lblDefectUserCode";
  885. this.lblDefectUserCode.Size = new System.Drawing.Size(53, 12);
  886. this.lblDefectUserCode.TabIndex = 11;
  887. this.lblDefectUserCode.Text = "责任工号";
  888. //
  889. // dkDefectTypeNameSearchBox1
  890. //
  891. this.dkDefectTypeNameSearchBox1.BackColor = System.Drawing.Color.Transparent;
  892. this.dkDefectTypeNameSearchBox1.DataSource = null;
  893. this.dkDefectTypeNameSearchBox1.DefectTypeID = null;
  894. this.dkDefectTypeNameSearchBox1.DefectTypeIDS = null;
  895. this.dkDefectTypeNameSearchBox1.DefectTypeName = null;
  896. this.dkDefectTypeNameSearchBox1.Enabled = true;
  897. this.dkDefectTypeNameSearchBox1.IsEnablePurview = false;
  898. this.dkDefectTypeNameSearchBox1.IsMustInput = false;
  899. this.dkDefectTypeNameSearchBox1.Location = new System.Drawing.Point(318, 47);
  900. this.dkDefectTypeNameSearchBox1.Name = "dkDefectTypeNameSearchBox1";
  901. this.dkDefectTypeNameSearchBox1.Purview = null;
  902. this.dkDefectTypeNameSearchBox1.PurviewType = ((byte)(0));
  903. this.dkDefectTypeNameSearchBox1.SelectMore = true;
  904. this.dkDefectTypeNameSearchBox1.Size = new System.Drawing.Size(159, 21);
  905. this.dkDefectTypeNameSearchBox1.TabIndex = 14;
  906. this.dkDefectTypeNameSearchBox1.Title = "缺陷类别";
  907. this.dkDefectTypeNameSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  908. //
  909. // dkCompleteProcedure
  910. //
  911. this.dkCompleteProcedure.BackColor = System.Drawing.Color.Transparent;
  912. this.dkCompleteProcedure.DataSource = null;
  913. this.dkCompleteProcedure.Enabled = true;
  914. this.dkCompleteProcedure.IsEnablePurview = false;
  915. this.dkCompleteProcedure.IsMustInput = false;
  916. this.dkCompleteProcedure.Location = new System.Drawing.Point(1005, 24);
  917. this.dkCompleteProcedure.ModelType = null;
  918. this.dkCompleteProcedure.Name = "dkCompleteProcedure";
  919. this.dkCompleteProcedure.ProcedureCode = "";
  920. this.dkCompleteProcedure.ProcedureID = null;
  921. this.dkCompleteProcedure.ProcedureIDS = null;
  922. this.dkCompleteProcedure.ProcedureName = null;
  923. this.dkCompleteProcedure.Purview = null;
  924. this.dkCompleteProcedure.PurviewType = ((byte)(0));
  925. this.dkCompleteProcedure.SelectMore = true;
  926. this.dkCompleteProcedure.Size = new System.Drawing.Size(192, 21);
  927. this.dkCompleteProcedure.TabIndex = 17;
  928. this.dkCompleteProcedure.Title = "生产工序";
  929. this.dkCompleteProcedure.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  930. this.dkCompleteProcedure.Visible = false;
  931. //
  932. // dkProcedureSearchBox
  933. //
  934. this.dkProcedureSearchBox.BackColor = System.Drawing.Color.Transparent;
  935. this.dkProcedureSearchBox.DataSource = null;
  936. this.dkProcedureSearchBox.Enabled = true;
  937. this.dkProcedureSearchBox.IsEnablePurview = false;
  938. this.dkProcedureSearchBox.IsMustInput = false;
  939. this.dkProcedureSearchBox.Location = new System.Drawing.Point(12, 47);
  940. this.dkProcedureSearchBox.ModelType = null;
  941. this.dkProcedureSearchBox.Name = "dkProcedureSearchBox";
  942. this.dkProcedureSearchBox.ProcedureCode = "";
  943. this.dkProcedureSearchBox.ProcedureID = null;
  944. this.dkProcedureSearchBox.ProcedureIDS = null;
  945. this.dkProcedureSearchBox.ProcedureName = null;
  946. this.dkProcedureSearchBox.Purview = null;
  947. this.dkProcedureSearchBox.PurviewType = ((byte)(0));
  948. this.dkProcedureSearchBox.SelectMore = true;
  949. this.dkProcedureSearchBox.Size = new System.Drawing.Size(159, 21);
  950. this.dkProcedureSearchBox.TabIndex = 10;
  951. this.dkProcedureSearchBox.Title = "责任工序";
  952. this.dkProcedureSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  953. //
  954. // dkproductionLineSearchBox
  955. //
  956. this.dkproductionLineSearchBox.BackColor = System.Drawing.Color.Transparent;
  957. this.dkproductionLineSearchBox.DataSource = null;
  958. this.dkproductionLineSearchBox.Enabled = true;
  959. this.dkproductionLineSearchBox.IsEnablePurview = false;
  960. this.dkproductionLineSearchBox.IsMustInput = false;
  961. this.dkproductionLineSearchBox.Location = new System.Drawing.Point(1023, 20);
  962. this.dkproductionLineSearchBox.Name = "dkproductionLineSearchBox";
  963. this.dkproductionLineSearchBox.ProductionLineCode = "";
  964. this.dkproductionLineSearchBox.ProductionLineID = null;
  965. this.dkproductionLineSearchBox.ProductionLineIDS = null;
  966. this.dkproductionLineSearchBox.ProductionLineName = null;
  967. this.dkproductionLineSearchBox.Purview = null;
  968. this.dkproductionLineSearchBox.PurviewType = ((byte)(0));
  969. this.dkproductionLineSearchBox.SelectMore = true;
  970. this.dkproductionLineSearchBox.Size = new System.Drawing.Size(193, 21);
  971. this.dkproductionLineSearchBox.TabIndex = 1;
  972. this.dkproductionLineSearchBox.Title = " 生产线";
  973. this.dkproductionLineSearchBox.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  974. this.dkproductionLineSearchBox.Visible = false;
  975. //
  976. // dtpCompleteDateEnd
  977. //
  978. this.dtpCompleteDateEnd.CustomFormat = "yyyy-MM-dd HH:mm";
  979. this.dtpCompleteDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  980. this.dtpCompleteDateEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  981. this.dtpCompleteDateEnd.Location = new System.Drawing.Point(1040, 42);
  982. this.dtpCompleteDateEnd.Name = "dtpCompleteDateEnd";
  983. this.dtpCompleteDateEnd.Size = new System.Drawing.Size(134, 21);
  984. this.dtpCompleteDateEnd.TabIndex = 21;
  985. this.dtpCompleteDateEnd.Visible = false;
  986. //
  987. // dtpCompleteDateStart
  988. //
  989. this.dtpCompleteDateStart.CustomFormat = "yyyy-MM-dd HH:mm";
  990. this.dtpCompleteDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  991. this.dtpCompleteDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  992. this.dtpCompleteDateStart.Location = new System.Drawing.Point(1040, 24);
  993. this.dtpCompleteDateStart.Name = "dtpCompleteDateStart";
  994. this.dtpCompleteDateStart.Size = new System.Drawing.Size(134, 21);
  995. this.dtpCompleteDateStart.TabIndex = 19;
  996. this.dtpCompleteDateStart.Visible = false;
  997. //
  998. // tblReportModule
  999. //
  1000. this.tblReportModule.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1001. | System.Windows.Forms.AnchorStyles.Left)
  1002. | System.Windows.Forms.AnchorStyles.Right)));
  1003. this.tblReportModule.Controls.Add(this.tapReportModule);
  1004. this.tblReportModule.Controls.Add(this.tapReportModuleDetail);
  1005. this.tblReportModule.Controls.Add(this.tapDefectDetail);
  1006. this.tblReportModule.Controls.Add(this.tabProDetail);
  1007. this.tblReportModule.Location = new System.Drawing.Point(0, 171);
  1008. this.tblReportModule.Margin = new System.Windows.Forms.Padding(0);
  1009. this.tblReportModule.Name = "tblReportModule";
  1010. this.tblReportModule.Padding = new System.Drawing.Point(0, 0);
  1011. this.tblReportModule.SelectedIndex = 0;
  1012. this.tblReportModule.ShowToolTips = true;
  1013. this.tblReportModule.Size = new System.Drawing.Size(1358, 494);
  1014. this.tblReportModule.TabIndex = 2;
  1015. this.tblReportModule.SelectedIndexChanged += new System.EventHandler(this.tblReportModule_SelectedIndexChanged);
  1016. //
  1017. // tapReportModule
  1018. //
  1019. this.tapReportModule.Controls.Add(this.dgvReportModule);
  1020. this.tapReportModule.Location = new System.Drawing.Point(4, 22);
  1021. this.tapReportModule.Margin = new System.Windows.Forms.Padding(0);
  1022. this.tapReportModule.Name = "tapReportModule";
  1023. this.tapReportModule.Size = new System.Drawing.Size(1350, 468);
  1024. this.tapReportModule.TabIndex = 0;
  1025. this.tapReportModule.Text = "成检缺陷汇总";
  1026. this.tapReportModule.UseVisualStyleBackColor = true;
  1027. //
  1028. // dgvReportModule
  1029. //
  1030. this.dgvReportModule.AllowUserToAddRows = false;
  1031. this.dgvReportModule.AllowUserToDeleteRows = false;
  1032. this.dgvReportModule.AllowUserToModifyRows = true;
  1033. this.dgvReportModule.AllowUserToOrderColumns = true;
  1034. this.dgvReportModule.AllowUserToSortRows = false;
  1035. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1036. this.dgvReportModule.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1037. this.dgvReportModule.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1038. this.dgvReportModule.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1039. this.dgvReportModule.CellHeight = 23;
  1040. this.dgvReportModule.ChildNodeColumnName = null;
  1041. this.dgvReportModule.ChildNodeColumnText = null;
  1042. this.dgvReportModule.ColumnDeep = 1;
  1043. this.dgvReportModule.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1044. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1045. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1046. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1047. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1048. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1049. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1050. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1051. this.dgvReportModule.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1052. this.dgvReportModule.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1053. this.dgvReportModule.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1054. this.ProductionLineName,
  1055. this.ProcedureName,
  1056. this.DefectProcedureName,
  1057. this.DefectTypeName,
  1058. this.DefectCode,
  1059. this.DefectName,
  1060. this.Usercode1,
  1061. this.Goodstypename,
  1062. this.Goodscode,
  1063. this.InCount,
  1064. this.DefectProcedureID,
  1065. this.ProcedureID});
  1066. this.dgvReportModule.ColumnTreeView = null;
  1067. this.dgvReportModule.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)));
  1068. this.dgvReportModule.Dock = System.Windows.Forms.DockStyle.Fill;
  1069. this.dgvReportModule.DynamicColumnName = "";
  1070. this.dgvReportModule.EnableHeadersVisualStyles = false;
  1071. this.dgvReportModule.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1072. this.dgvReportModule.FormatQuantityColumns = null;
  1073. this.dgvReportModule.HasNode = false;
  1074. this.dgvReportModule.HorizontalMergeColumn = null;
  1075. this.dgvReportModule.IsAutoCountSum = true;
  1076. this.dgvReportModule.IsAutoResizeColumns = false;
  1077. this.dgvReportModule.IsClickF12 = false;
  1078. this.dgvReportModule.IsOpenMergeCellFlag = false;
  1079. this.dgvReportModule.IsSubTotalFlag = false;
  1080. this.dgvReportModule.IsTopDeep = false;
  1081. this.dgvReportModule.Location = new System.Drawing.Point(0, 0);
  1082. this.dgvReportModule.Margin = new System.Windows.Forms.Padding(0);
  1083. this.dgvReportModule.MergeColumnNames = null;
  1084. this.dgvReportModule.MergeDetailColumnNames = null;
  1085. this.dgvReportModule.MergeDetailOnlyColumn = null;
  1086. this.dgvReportModule.MergeOnlyColumn = null;
  1087. this.dgvReportModule.MultiSelect = false;
  1088. this.dgvReportModule.Name = "dgvReportModule";
  1089. this.dgvReportModule.ReadOnly = true;
  1090. this.dgvReportModule.RefreshAtHscroll = false;
  1091. this.dgvReportModule.RowHeadersWidth = 50;
  1092. this.dgvReportModule.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1093. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1094. this.dgvReportModule.RowsDefaultCellStyle = dataGridViewCellStyle4;
  1095. this.dgvReportModule.RowTemplate.Height = 21;
  1096. this.dgvReportModule.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1097. this.dgvReportModule.Size = new System.Drawing.Size(1350, 468);
  1098. this.dgvReportModule.SortOrderColumnName = null;
  1099. this.dgvReportModule.TabIndex = 0;
  1100. this.dgvReportModule.Tag = true;
  1101. this.dgvReportModule.TotalSumColumns = null;
  1102. this.dgvReportModule.ViewRowFilter = "";
  1103. this.dgvReportModule.VirtualNodes = false;
  1104. this.dgvReportModule.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReportModule_CellContentClick);
  1105. this.dgvReportModule.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvReportModule_CellDoubleClick);
  1106. //
  1107. // ProductionLineName
  1108. //
  1109. this.ProductionLineName.DataPropertyName = "ProductionLineName";
  1110. this.ProductionLineName.HeaderText = "生产线";
  1111. this.ProductionLineName.Name = "ProductionLineName";
  1112. this.ProductionLineName.ReadOnly = true;
  1113. //
  1114. // ProcedureName
  1115. //
  1116. this.ProcedureName.DataPropertyName = "ProcedureName";
  1117. this.ProcedureName.HeaderText = "检验工序";
  1118. this.ProcedureName.Name = "ProcedureName";
  1119. this.ProcedureName.ReadOnly = true;
  1120. //
  1121. // DefectProcedureName
  1122. //
  1123. this.DefectProcedureName.DataPropertyName = "DefectProcedureName";
  1124. this.DefectProcedureName.HeaderText = "责任工序";
  1125. this.DefectProcedureName.Name = "DefectProcedureName";
  1126. this.DefectProcedureName.ReadOnly = true;
  1127. //
  1128. // DefectTypeName
  1129. //
  1130. this.DefectTypeName.DataPropertyName = "DefectTypeName";
  1131. this.DefectTypeName.HeaderText = "缺陷类别";
  1132. this.DefectTypeName.Name = "DefectTypeName";
  1133. this.DefectTypeName.ReadOnly = true;
  1134. //
  1135. // DefectCode
  1136. //
  1137. this.DefectCode.DataPropertyName = "DefectCode";
  1138. this.DefectCode.HeaderText = "缺陷编码";
  1139. this.DefectCode.Name = "DefectCode";
  1140. this.DefectCode.ReadOnly = true;
  1141. //
  1142. // DefectName
  1143. //
  1144. this.DefectName.DataPropertyName = "DefectName";
  1145. this.DefectName.HeaderText = "缺陷名称";
  1146. this.DefectName.Name = "DefectName";
  1147. this.DefectName.ReadOnly = true;
  1148. //
  1149. // Usercode1
  1150. //
  1151. this.Usercode1.DataPropertyName = "Usercode";
  1152. this.Usercode1.HeaderText = "检验工号";
  1153. this.Usercode1.Name = "Usercode1";
  1154. this.Usercode1.ReadOnly = true;
  1155. //
  1156. // Goodstypename
  1157. //
  1158. this.Goodstypename.DataPropertyName = "Goodstypename";
  1159. this.Goodstypename.HeaderText = "产品类别";
  1160. this.Goodstypename.Name = "Goodstypename";
  1161. this.Goodstypename.ReadOnly = true;
  1162. //
  1163. // Goodscode
  1164. //
  1165. this.Goodscode.DataPropertyName = "Goodscode";
  1166. this.Goodscode.HeaderText = "产品编码";
  1167. this.Goodscode.Name = "Goodscode";
  1168. this.Goodscode.ReadOnly = true;
  1169. //
  1170. // InCount
  1171. //
  1172. this.InCount.DataPropertyName = "InCount";
  1173. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1174. this.InCount.DefaultCellStyle = dataGridViewCellStyle3;
  1175. this.InCount.HeaderText = "数量";
  1176. this.InCount.Name = "InCount";
  1177. this.InCount.ReadOnly = true;
  1178. //
  1179. // DefectProcedureID
  1180. //
  1181. this.DefectProcedureID.DataPropertyName = "DefectProcedureID";
  1182. this.DefectProcedureID.HeaderText = "责任工序ID";
  1183. this.DefectProcedureID.Name = "DefectProcedureID";
  1184. this.DefectProcedureID.ReadOnly = true;
  1185. this.DefectProcedureID.Visible = false;
  1186. //
  1187. // ProcedureID
  1188. //
  1189. this.ProcedureID.DataPropertyName = "ProcedureID";
  1190. this.ProcedureID.HeaderText = "检验工序ID";
  1191. this.ProcedureID.Name = "ProcedureID";
  1192. this.ProcedureID.ReadOnly = true;
  1193. this.ProcedureID.Visible = false;
  1194. //
  1195. // tapReportModuleDetail
  1196. //
  1197. this.tapReportModuleDetail.Controls.Add(this.dgvReportModuleDetail);
  1198. this.tapReportModuleDetail.Location = new System.Drawing.Point(4, 22);
  1199. this.tapReportModuleDetail.Margin = new System.Windows.Forms.Padding(0);
  1200. this.tapReportModuleDetail.Name = "tapReportModuleDetail";
  1201. this.tapReportModuleDetail.Size = new System.Drawing.Size(1350, 468);
  1202. this.tapReportModuleDetail.TabIndex = 1;
  1203. this.tapReportModuleDetail.Text = "成检缺陷明细";
  1204. this.tapReportModuleDetail.UseVisualStyleBackColor = true;
  1205. //
  1206. // dgvReportModuleDetail
  1207. //
  1208. this.dgvReportModuleDetail.AllowUserToAddRows = false;
  1209. this.dgvReportModuleDetail.AllowUserToDeleteRows = false;
  1210. this.dgvReportModuleDetail.AllowUserToModifyRows = true;
  1211. this.dgvReportModuleDetail.AllowUserToOrderColumns = true;
  1212. this.dgvReportModuleDetail.AllowUserToSortRows = false;
  1213. dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1214. this.dgvReportModuleDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5;
  1215. this.dgvReportModuleDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1216. this.dgvReportModuleDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1217. this.dgvReportModuleDetail.CellHeight = 23;
  1218. this.dgvReportModuleDetail.ChildNodeColumnName = null;
  1219. this.dgvReportModuleDetail.ChildNodeColumnText = null;
  1220. this.dgvReportModuleDetail.ColumnDeep = 1;
  1221. this.dgvReportModuleDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1222. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1223. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1224. dataGridViewCellStyle6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1225. dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White;
  1226. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1227. dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1228. dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1229. this.dgvReportModuleDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
  1230. this.dgvReportModuleDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1231. this.dgvReportModuleDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1232. this.productionlinename1,
  1233. this.procedurename2,
  1234. this.CreateTime,
  1235. this.DefectProcedureName2,
  1236. this.DefectUserCode2,
  1237. this.DefectTypeName2,
  1238. this.defectcode2,
  1239. this.alldefectcode,
  1240. this.defectnam2,
  1241. this.DefectRemarks,
  1242. this.DefectPositionCode,
  1243. this.DefectPositionName,
  1244. this.DefectFineCode,
  1245. this.DefectDeductionNum,
  1246. this.UserCode2,
  1247. this.Goodstypename2,
  1248. this.goodscode2,
  1249. this.barcode,
  1250. this.LogoCodeName,
  1251. this.Goodsleveltype,
  1252. this.GroutingUserCode,
  1253. this.groutingdate,
  1254. this.groutingnum,
  1255. this.GroutingLineCode,
  1256. this.groutingMouldCode,
  1257. this.KilnCarCode,
  1258. this.FinishedInspectionKilnLocation,
  1259. this.workUsercodes,
  1260. this.CreateUserCodes,
  1261. this.HandOverTime,
  1262. this.undoflag,
  1263. this.reworkflag,
  1264. this.glazingroom,
  1265. this.Kcode,
  1266. this.Fyear,
  1267. this.TestMouldFlag});
  1268. this.dgvReportModuleDetail.ColumnTreeView = null;
  1269. this.dgvReportModuleDetail.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)));
  1270. this.dgvReportModuleDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1271. this.dgvReportModuleDetail.DynamicColumnName = "";
  1272. this.dgvReportModuleDetail.EnableHeadersVisualStyles = false;
  1273. this.dgvReportModuleDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1274. this.dgvReportModuleDetail.FormatQuantityColumns = null;
  1275. this.dgvReportModuleDetail.HasNode = false;
  1276. this.dgvReportModuleDetail.HorizontalMergeColumn = null;
  1277. this.dgvReportModuleDetail.IsAutoCountSum = true;
  1278. this.dgvReportModuleDetail.IsAutoResizeColumns = false;
  1279. this.dgvReportModuleDetail.IsClickF12 = false;
  1280. this.dgvReportModuleDetail.IsOpenMergeCellFlag = false;
  1281. this.dgvReportModuleDetail.IsSubTotalFlag = false;
  1282. this.dgvReportModuleDetail.IsTopDeep = false;
  1283. this.dgvReportModuleDetail.Location = new System.Drawing.Point(0, 0);
  1284. this.dgvReportModuleDetail.Margin = new System.Windows.Forms.Padding(0);
  1285. this.dgvReportModuleDetail.MergeColumnNames = null;
  1286. this.dgvReportModuleDetail.MergeDetailColumnNames = null;
  1287. this.dgvReportModuleDetail.MergeDetailOnlyColumn = null;
  1288. this.dgvReportModuleDetail.MergeOnlyColumn = null;
  1289. this.dgvReportModuleDetail.MultiSelect = false;
  1290. this.dgvReportModuleDetail.Name = "dgvReportModuleDetail";
  1291. this.dgvReportModuleDetail.ReadOnly = true;
  1292. this.dgvReportModuleDetail.RefreshAtHscroll = false;
  1293. this.dgvReportModuleDetail.RowHeadersWidth = 50;
  1294. this.dgvReportModuleDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1295. dataGridViewCellStyle11.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1296. this.dgvReportModuleDetail.RowsDefaultCellStyle = dataGridViewCellStyle11;
  1297. this.dgvReportModuleDetail.RowTemplate.Height = 21;
  1298. this.dgvReportModuleDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1299. this.dgvReportModuleDetail.Size = new System.Drawing.Size(1350, 468);
  1300. this.dgvReportModuleDetail.SortOrderColumnName = null;
  1301. this.dgvReportModuleDetail.TabIndex = 30;
  1302. this.dgvReportModuleDetail.Tag = true;
  1303. this.dgvReportModuleDetail.TotalSumColumns = null;
  1304. this.dgvReportModuleDetail.ViewRowFilter = "";
  1305. this.dgvReportModuleDetail.VirtualNodes = false;
  1306. //
  1307. // productionlinename1
  1308. //
  1309. this.productionlinename1.DataPropertyName = "productionlinename";
  1310. this.productionlinename1.HeaderText = "生产线";
  1311. this.productionlinename1.Name = "productionlinename1";
  1312. this.productionlinename1.ReadOnly = true;
  1313. //
  1314. // procedurename2
  1315. //
  1316. this.procedurename2.DataPropertyName = "procedurename";
  1317. this.procedurename2.HeaderText = "检验工序";
  1318. this.procedurename2.Name = "procedurename2";
  1319. this.procedurename2.ReadOnly = true;
  1320. //
  1321. // CreateTime
  1322. //
  1323. this.CreateTime.DataPropertyName = "CreateTime";
  1324. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1325. dataGridViewCellStyle7.Format = "yyyy-MM-dd HH:mm:ss";
  1326. this.CreateTime.DefaultCellStyle = dataGridViewCellStyle7;
  1327. this.CreateTime.HeaderText = "登记时间";
  1328. this.CreateTime.Name = "CreateTime";
  1329. this.CreateTime.ReadOnly = true;
  1330. //
  1331. // DefectProcedureName2
  1332. //
  1333. this.DefectProcedureName2.DataPropertyName = "DefectProcedureName";
  1334. this.DefectProcedureName2.HeaderText = "责任工序";
  1335. this.DefectProcedureName2.Name = "DefectProcedureName2";
  1336. this.DefectProcedureName2.ReadOnly = true;
  1337. //
  1338. // DefectUserCode2
  1339. //
  1340. this.DefectUserCode2.DataPropertyName = "DefectUserCode";
  1341. this.DefectUserCode2.HeaderText = "责任工号";
  1342. this.DefectUserCode2.Name = "DefectUserCode2";
  1343. this.DefectUserCode2.ReadOnly = true;
  1344. //
  1345. // DefectTypeName2
  1346. //
  1347. this.DefectTypeName2.DataPropertyName = "DefectTypeName";
  1348. this.DefectTypeName2.HeaderText = "缺陷类别";
  1349. this.DefectTypeName2.Name = "DefectTypeName2";
  1350. this.DefectTypeName2.ReadOnly = true;
  1351. //
  1352. // defectcode2
  1353. //
  1354. this.defectcode2.DataPropertyName = "defectcode";
  1355. this.defectcode2.HeaderText = "缺陷编码";
  1356. this.defectcode2.Name = "defectcode2";
  1357. this.defectcode2.ReadOnly = true;
  1358. //
  1359. // alldefectcode
  1360. //
  1361. this.alldefectcode.DataPropertyName = "alldefectcode";
  1362. this.alldefectcode.HeaderText = "缺陷编码(全)";
  1363. this.alldefectcode.Name = "alldefectcode";
  1364. this.alldefectcode.ReadOnly = true;
  1365. //
  1366. // defectnam2
  1367. //
  1368. this.defectnam2.DataPropertyName = "defectname";
  1369. this.defectnam2.HeaderText = "缺陷名称";
  1370. this.defectnam2.Name = "defectnam2";
  1371. this.defectnam2.ReadOnly = true;
  1372. //
  1373. // DefectRemarks
  1374. //
  1375. this.DefectRemarks.DataPropertyName = "DefectRemarks";
  1376. this.DefectRemarks.HeaderText = "缺陷备注";
  1377. this.DefectRemarks.Name = "DefectRemarks";
  1378. this.DefectRemarks.ReadOnly = true;
  1379. //
  1380. // DefectPositionCode
  1381. //
  1382. this.DefectPositionCode.DataPropertyName = "DefectPositionCode";
  1383. this.DefectPositionCode.HeaderText = "缺陷位置编码";
  1384. this.DefectPositionCode.Name = "DefectPositionCode";
  1385. this.DefectPositionCode.ReadOnly = true;
  1386. //
  1387. // DefectPositionName
  1388. //
  1389. this.DefectPositionName.DataPropertyName = "DefectPositionName";
  1390. this.DefectPositionName.HeaderText = "缺陷位置名称";
  1391. this.DefectPositionName.Name = "DefectPositionName";
  1392. this.DefectPositionName.ReadOnly = true;
  1393. //
  1394. // DefectFineCode
  1395. //
  1396. this.DefectFineCode.DataPropertyName = "DefectFineCode";
  1397. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1398. this.DefectFineCode.DefaultCellStyle = dataGridViewCellStyle8;
  1399. this.DefectFineCode.HeaderText = "缺陷扣罚";
  1400. this.DefectFineCode.Name = "DefectFineCode";
  1401. this.DefectFineCode.ReadOnly = true;
  1402. //
  1403. // DefectDeductionNum
  1404. //
  1405. this.DefectDeductionNum.DataPropertyName = "DefectDeductionNum";
  1406. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1407. this.DefectDeductionNum.DefaultCellStyle = dataGridViewCellStyle9;
  1408. this.DefectDeductionNum.HeaderText = "缺陷扣除数";
  1409. this.DefectDeductionNum.Name = "DefectDeductionNum";
  1410. this.DefectDeductionNum.ReadOnly = true;
  1411. //
  1412. // UserCode2
  1413. //
  1414. this.UserCode2.DataPropertyName = "UserCode";
  1415. this.UserCode2.HeaderText = "检验工号";
  1416. this.UserCode2.Name = "UserCode2";
  1417. this.UserCode2.ReadOnly = true;
  1418. //
  1419. // Goodstypename2
  1420. //
  1421. this.Goodstypename2.DataPropertyName = "Goodstypename";
  1422. this.Goodstypename2.HeaderText = "产品类别";
  1423. this.Goodstypename2.Name = "Goodstypename2";
  1424. this.Goodstypename2.ReadOnly = true;
  1425. //
  1426. // goodscode2
  1427. //
  1428. this.goodscode2.DataPropertyName = "goodscode";
  1429. this.goodscode2.HeaderText = "产品编码";
  1430. this.goodscode2.Name = "goodscode2";
  1431. this.goodscode2.ReadOnly = true;
  1432. //
  1433. // barcode
  1434. //
  1435. this.barcode.DataPropertyName = "barcode";
  1436. this.barcode.HeaderText = "产品条码";
  1437. this.barcode.Name = "barcode";
  1438. this.barcode.ReadOnly = true;
  1439. //
  1440. // LogoCodeName
  1441. //
  1442. this.LogoCodeName.DataPropertyName = "LogoCodeName";
  1443. this.LogoCodeName.HeaderText = "商标";
  1444. this.LogoCodeName.Name = "LogoCodeName";
  1445. this.LogoCodeName.ReadOnly = true;
  1446. //
  1447. // Goodsleveltype
  1448. //
  1449. this.Goodsleveltype.DataPropertyName = "Goodsleveltype";
  1450. this.Goodsleveltype.HeaderText = "产品分级";
  1451. this.Goodsleveltype.Name = "Goodsleveltype";
  1452. this.Goodsleveltype.ReadOnly = true;
  1453. //
  1454. // GroutingUserCode
  1455. //
  1456. this.GroutingUserCode.DataPropertyName = "GroutingUserCode";
  1457. this.GroutingUserCode.HeaderText = "成型工号";
  1458. this.GroutingUserCode.Name = "GroutingUserCode";
  1459. this.GroutingUserCode.ReadOnly = true;
  1460. //
  1461. // groutingdate
  1462. //
  1463. this.groutingdate.DataPropertyName = "groutingdate";
  1464. this.groutingdate.HeaderText = "注浆日期";
  1465. this.groutingdate.Name = "groutingdate";
  1466. this.groutingdate.ReadOnly = true;
  1467. //
  1468. // groutingnum
  1469. //
  1470. this.groutingnum.DataPropertyName = "groutingnum";
  1471. this.groutingnum.HeaderText = "注浆次数";
  1472. this.groutingnum.Name = "groutingnum";
  1473. this.groutingnum.ReadOnly = true;
  1474. //
  1475. // GroutingLineCode
  1476. //
  1477. this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
  1478. this.GroutingLineCode.HeaderText = "成型线编码";
  1479. this.GroutingLineCode.Name = "GroutingLineCode";
  1480. this.GroutingLineCode.ReadOnly = true;
  1481. //
  1482. // groutingMouldCode
  1483. //
  1484. this.groutingMouldCode.DataPropertyName = "groutingMouldCode";
  1485. this.groutingMouldCode.HeaderText = "模具编号";
  1486. this.groutingMouldCode.Name = "groutingMouldCode";
  1487. this.groutingMouldCode.ReadOnly = true;
  1488. //
  1489. // KilnCarCode
  1490. //
  1491. this.KilnCarCode.DataPropertyName = "KilnCarCode";
  1492. this.KilnCarCode.HeaderText = "窑车编号";
  1493. this.KilnCarCode.Name = "KilnCarCode";
  1494. this.KilnCarCode.ReadOnly = true;
  1495. //
  1496. // FinishedInspectionKilnLocation
  1497. //
  1498. this.FinishedInspectionKilnLocation.DataPropertyName = "KilnLocation";
  1499. this.FinishedInspectionKilnLocation.HeaderText = "窑车位置";
  1500. this.FinishedInspectionKilnLocation.Name = "FinishedInspectionKilnLocation";
  1501. this.FinishedInspectionKilnLocation.ReadOnly = true;
  1502. //
  1503. // workUsercodes
  1504. //
  1505. this.workUsercodes.DataPropertyName = "workUsercodes";
  1506. this.workUsercodes.HeaderText = "生产工号";
  1507. this.workUsercodes.Name = "workUsercodes";
  1508. this.workUsercodes.ReadOnly = true;
  1509. //
  1510. // CreateUserCodes
  1511. //
  1512. this.CreateUserCodes.DataPropertyName = "CreateUserCodes";
  1513. this.CreateUserCodes.HeaderText = "操作工号";
  1514. this.CreateUserCodes.Name = "CreateUserCodes";
  1515. this.CreateUserCodes.ReadOnly = true;
  1516. //
  1517. // HandOverTime
  1518. //
  1519. this.HandOverTime.DataPropertyName = "HandOverTime";
  1520. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1521. dataGridViewCellStyle10.Format = "yyyy-MM-dd HH:mm:ss";
  1522. this.HandOverTime.DefaultCellStyle = dataGridViewCellStyle10;
  1523. this.HandOverTime.HeaderText = "交接时间";
  1524. this.HandOverTime.Name = "HandOverTime";
  1525. this.HandOverTime.ReadOnly = true;
  1526. //
  1527. // undoflag
  1528. //
  1529. this.undoflag.DataPropertyName = "undoflag";
  1530. this.undoflag.FalseValue = "0";
  1531. this.undoflag.HeaderText = "改判标识";
  1532. this.undoflag.IndeterminateValue = "";
  1533. this.undoflag.Name = "undoflag";
  1534. this.undoflag.ReadOnly = true;
  1535. this.undoflag.TrueValue = "1";
  1536. //
  1537. // reworkflag
  1538. //
  1539. this.reworkflag.DataPropertyName = "reworkflag";
  1540. this.reworkflag.FalseValue = "0";
  1541. this.reworkflag.HeaderText = "返工标识";
  1542. this.reworkflag.Name = "reworkflag";
  1543. this.reworkflag.ReadOnly = true;
  1544. this.reworkflag.TrueValue = "1";
  1545. //
  1546. // glazingroom
  1547. //
  1548. this.glazingroom.DataPropertyName = "glazingroom";
  1549. this.glazingroom.HeaderText = "喷釉房号";
  1550. this.glazingroom.Name = "glazingroom";
  1551. this.glazingroom.ReadOnly = true;
  1552. //
  1553. // Kcode
  1554. //
  1555. this.Kcode.DataPropertyName = "Kcode";
  1556. this.Kcode.HeaderText = "窑号";
  1557. this.Kcode.Name = "Kcode";
  1558. this.Kcode.ReadOnly = true;
  1559. //
  1560. // Fyear
  1561. //
  1562. this.Fyear.DataPropertyName = "Fyear";
  1563. this.Fyear.HeaderText = "财年";
  1564. this.Fyear.Name = "Fyear";
  1565. this.Fyear.ReadOnly = true;
  1566. //
  1567. // TestMouldFlag
  1568. //
  1569. this.TestMouldFlag.DataPropertyName = "TestMouldFlag";
  1570. this.TestMouldFlag.FalseValue = "0";
  1571. this.TestMouldFlag.HeaderText = "试验标识";
  1572. this.TestMouldFlag.IndeterminateValue = "0";
  1573. this.TestMouldFlag.Name = "TestMouldFlag";
  1574. this.TestMouldFlag.ReadOnly = true;
  1575. this.TestMouldFlag.TrueValue = "1";
  1576. //
  1577. // tapDefectDetail
  1578. //
  1579. this.tapDefectDetail.Controls.Add(this.dgvDefectDetail);
  1580. this.tapDefectDetail.Location = new System.Drawing.Point(4, 22);
  1581. this.tapDefectDetail.Name = "tapDefectDetail";
  1582. this.tapDefectDetail.Size = new System.Drawing.Size(1350, 468);
  1583. this.tapDefectDetail.TabIndex = 2;
  1584. this.tapDefectDetail.Text = "缺陷登记明细";
  1585. this.tapDefectDetail.UseVisualStyleBackColor = true;
  1586. //
  1587. // dgvDefectDetail
  1588. //
  1589. this.dgvDefectDetail.AllowUserToAddRows = false;
  1590. this.dgvDefectDetail.AllowUserToDeleteRows = false;
  1591. this.dgvDefectDetail.AllowUserToModifyRows = true;
  1592. this.dgvDefectDetail.AllowUserToOrderColumns = true;
  1593. this.dgvDefectDetail.AllowUserToSortRows = false;
  1594. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1595. this.dgvDefectDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle12;
  1596. this.dgvDefectDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1597. this.dgvDefectDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1598. this.dgvDefectDetail.CellHeight = 23;
  1599. this.dgvDefectDetail.ChildNodeColumnName = null;
  1600. this.dgvDefectDetail.ChildNodeColumnText = null;
  1601. this.dgvDefectDetail.ColumnDeep = 1;
  1602. this.dgvDefectDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1603. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1604. dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1605. dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1606. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.White;
  1607. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1608. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1609. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1610. this.dgvDefectDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
  1611. this.dgvDefectDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1612. this.dgvDefectDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1613. this.dataGridViewTextBoxColumn1,
  1614. this.dataGridViewTextBoxColumn2,
  1615. this.dataGridViewTextBoxColumn3,
  1616. this.CheckTime,
  1617. this.dataGridViewTextBoxColumn4,
  1618. this.dataGridViewTextBoxColumn5,
  1619. this.DefectStaffNames3,
  1620. this.defectjobsname,
  1621. this.dataGridViewTextBoxColumn6,
  1622. this.dataGridViewTextBoxColumn7,
  1623. this.dataGridViewTextBoxColumn8,
  1624. this.dataGridViewTextBoxColumn9,
  1625. this.dataGridViewTextBoxColumn10,
  1626. this.dataGridViewTextBoxColumn11,
  1627. this.dataGridViewTextBoxColumn12,
  1628. this.dataGridViewTextBoxColumn13,
  1629. this.dataGridViewTextBoxColumn14,
  1630. this.dataGridViewTextBoxColumn15,
  1631. this.dataGridViewTextBoxColumn16,
  1632. this.dataGridViewTextBoxColumn17,
  1633. this.dataGridViewTextBoxColumn18,
  1634. this.dataGridViewTextBoxColumn19,
  1635. this.dataGridViewTextBoxColumn20,
  1636. this.dataGridViewTextBoxColumn21,
  1637. this.dataGridViewTextBoxColumn22,
  1638. this.dataGridViewTextBoxColumn23,
  1639. this.czGroutingLineCode,
  1640. this.dataGridViewTextBoxColumn24,
  1641. this.DefectKilnLocation,
  1642. this.窑车位置,
  1643. this.dataGridViewTextBoxColumn26,
  1644. this.dataGridViewTextBoxColumn27,
  1645. this.dataGridViewTextBoxColumn28,
  1646. this.dataGridViewCheckBoxColumn1,
  1647. this.barcodeRemarks3,
  1648. this.bsqx,
  1649. this.Kcode1,
  1650. this.Fyear1});
  1651. this.dgvDefectDetail.ColumnTreeView = null;
  1652. this.dgvDefectDetail.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)));
  1653. this.dgvDefectDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1654. this.dgvDefectDetail.DynamicColumnName = "";
  1655. this.dgvDefectDetail.EnableHeadersVisualStyles = false;
  1656. this.dgvDefectDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1657. this.dgvDefectDetail.FormatQuantityColumns = null;
  1658. this.dgvDefectDetail.HasNode = false;
  1659. this.dgvDefectDetail.HorizontalMergeColumn = null;
  1660. this.dgvDefectDetail.IsAutoCountSum = true;
  1661. this.dgvDefectDetail.IsAutoResizeColumns = false;
  1662. this.dgvDefectDetail.IsClickF12 = false;
  1663. this.dgvDefectDetail.IsOpenMergeCellFlag = false;
  1664. this.dgvDefectDetail.IsSubTotalFlag = false;
  1665. this.dgvDefectDetail.IsTopDeep = false;
  1666. this.dgvDefectDetail.Location = new System.Drawing.Point(0, 0);
  1667. this.dgvDefectDetail.Margin = new System.Windows.Forms.Padding(0);
  1668. this.dgvDefectDetail.MergeColumnNames = null;
  1669. this.dgvDefectDetail.MergeDetailColumnNames = null;
  1670. this.dgvDefectDetail.MergeDetailOnlyColumn = null;
  1671. this.dgvDefectDetail.MergeOnlyColumn = null;
  1672. this.dgvDefectDetail.MultiSelect = false;
  1673. this.dgvDefectDetail.Name = "dgvDefectDetail";
  1674. this.dgvDefectDetail.ReadOnly = true;
  1675. this.dgvDefectDetail.RefreshAtHscroll = false;
  1676. this.dgvDefectDetail.RowHeadersWidth = 50;
  1677. this.dgvDefectDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1678. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1679. this.dgvDefectDetail.RowsDefaultCellStyle = dataGridViewCellStyle19;
  1680. this.dgvDefectDetail.RowTemplate.Height = 21;
  1681. this.dgvDefectDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1682. this.dgvDefectDetail.Size = new System.Drawing.Size(1350, 468);
  1683. this.dgvDefectDetail.SortOrderColumnName = null;
  1684. this.dgvDefectDetail.TabIndex = 31;
  1685. this.dgvDefectDetail.Tag = true;
  1686. this.dgvDefectDetail.TotalSumColumns = null;
  1687. this.dgvDefectDetail.ViewRowFilter = "";
  1688. this.dgvDefectDetail.VirtualNodes = false;
  1689. //
  1690. // dataGridViewTextBoxColumn1
  1691. //
  1692. this.dataGridViewTextBoxColumn1.DataPropertyName = "productionlinename";
  1693. this.dataGridViewTextBoxColumn1.HeaderText = "生产线";
  1694. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1695. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  1696. //
  1697. // dataGridViewTextBoxColumn2
  1698. //
  1699. this.dataGridViewTextBoxColumn2.DataPropertyName = "procedurename";
  1700. this.dataGridViewTextBoxColumn2.HeaderText = "检验工序";
  1701. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1702. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  1703. //
  1704. // dataGridViewTextBoxColumn3
  1705. //
  1706. this.dataGridViewTextBoxColumn3.DataPropertyName = "pdchecktime";
  1707. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1708. dataGridViewCellStyle14.Format = "yyyy-MM-dd HH:mm:ss";
  1709. this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle14;
  1710. this.dataGridViewTextBoxColumn3.HeaderText = "成检登记时间";
  1711. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1712. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  1713. //
  1714. // CheckTime
  1715. //
  1716. this.CheckTime.DataPropertyName = "CheckTime";
  1717. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1718. dataGridViewCellStyle15.Format = "yyyy-MM-dd HH:mm:ss";
  1719. this.CheckTime.DefaultCellStyle = dataGridViewCellStyle15;
  1720. this.CheckTime.HeaderText = "缺陷登记时间";
  1721. this.CheckTime.Name = "CheckTime";
  1722. this.CheckTime.ReadOnly = true;
  1723. //
  1724. // dataGridViewTextBoxColumn4
  1725. //
  1726. this.dataGridViewTextBoxColumn4.DataPropertyName = "DefectProcedureName";
  1727. this.dataGridViewTextBoxColumn4.HeaderText = "责任工序";
  1728. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  1729. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  1730. //
  1731. // dataGridViewTextBoxColumn5
  1732. //
  1733. this.dataGridViewTextBoxColumn5.DataPropertyName = "DefectUserCode";
  1734. this.dataGridViewTextBoxColumn5.HeaderText = "责任工号";
  1735. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  1736. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  1737. //
  1738. // DefectStaffNames3
  1739. //
  1740. this.DefectStaffNames3.DataPropertyName = "DefectStaffNames";
  1741. this.DefectStaffNames3.HeaderText = "责任员工";
  1742. this.DefectStaffNames3.Name = "DefectStaffNames3";
  1743. this.DefectStaffNames3.ReadOnly = true;
  1744. //
  1745. // defectjobsname
  1746. //
  1747. this.defectjobsname.DataPropertyName = "defectjobsname";
  1748. this.defectjobsname.HeaderText = "责任工种";
  1749. this.defectjobsname.Name = "defectjobsname";
  1750. this.defectjobsname.ReadOnly = true;
  1751. //
  1752. // dataGridViewTextBoxColumn6
  1753. //
  1754. this.dataGridViewTextBoxColumn6.DataPropertyName = "DefectTypeName";
  1755. this.dataGridViewTextBoxColumn6.HeaderText = "缺陷类别";
  1756. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  1757. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  1758. //
  1759. // dataGridViewTextBoxColumn7
  1760. //
  1761. this.dataGridViewTextBoxColumn7.DataPropertyName = "defectcode";
  1762. this.dataGridViewTextBoxColumn7.HeaderText = "缺陷编码";
  1763. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1764. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  1765. //
  1766. // dataGridViewTextBoxColumn8
  1767. //
  1768. this.dataGridViewTextBoxColumn8.DataPropertyName = "alldefectcode";
  1769. this.dataGridViewTextBoxColumn8.HeaderText = "缺陷编码(全)";
  1770. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1771. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  1772. //
  1773. // dataGridViewTextBoxColumn9
  1774. //
  1775. this.dataGridViewTextBoxColumn9.DataPropertyName = "defectname";
  1776. this.dataGridViewTextBoxColumn9.HeaderText = "缺陷名称";
  1777. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1778. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  1779. //
  1780. // dataGridViewTextBoxColumn10
  1781. //
  1782. this.dataGridViewTextBoxColumn10.DataPropertyName = "DefectRemarks";
  1783. this.dataGridViewTextBoxColumn10.HeaderText = "缺陷备注";
  1784. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1785. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  1786. //
  1787. // dataGridViewTextBoxColumn11
  1788. //
  1789. this.dataGridViewTextBoxColumn11.DataPropertyName = "DefectPositionCode";
  1790. this.dataGridViewTextBoxColumn11.HeaderText = "缺陷位置编码";
  1791. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1792. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  1793. //
  1794. // dataGridViewTextBoxColumn12
  1795. //
  1796. this.dataGridViewTextBoxColumn12.DataPropertyName = "DefectPositionName";
  1797. this.dataGridViewTextBoxColumn12.HeaderText = "缺陷位置名称";
  1798. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1799. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  1800. //
  1801. // dataGridViewTextBoxColumn13
  1802. //
  1803. this.dataGridViewTextBoxColumn13.DataPropertyName = "DefectFineCode";
  1804. dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1805. this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle16;
  1806. this.dataGridViewTextBoxColumn13.HeaderText = "缺陷扣罚";
  1807. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1808. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  1809. //
  1810. // dataGridViewTextBoxColumn14
  1811. //
  1812. this.dataGridViewTextBoxColumn14.DataPropertyName = "DefectDeductionNum";
  1813. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1814. this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle17;
  1815. this.dataGridViewTextBoxColumn14.HeaderText = "缺陷扣除数";
  1816. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1817. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  1818. //
  1819. // dataGridViewTextBoxColumn15
  1820. //
  1821. this.dataGridViewTextBoxColumn15.DataPropertyName = "UserCode";
  1822. this.dataGridViewTextBoxColumn15.HeaderText = "检验工号";
  1823. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1824. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  1825. //
  1826. // dataGridViewTextBoxColumn16
  1827. //
  1828. this.dataGridViewTextBoxColumn16.DataPropertyName = "Goodstypename";
  1829. this.dataGridViewTextBoxColumn16.HeaderText = "产品类别";
  1830. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1831. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  1832. //
  1833. // dataGridViewTextBoxColumn17
  1834. //
  1835. this.dataGridViewTextBoxColumn17.DataPropertyName = "goodscode";
  1836. this.dataGridViewTextBoxColumn17.HeaderText = "产品编码";
  1837. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1838. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  1839. //
  1840. // dataGridViewTextBoxColumn18
  1841. //
  1842. this.dataGridViewTextBoxColumn18.DataPropertyName = "barcode";
  1843. this.dataGridViewTextBoxColumn18.HeaderText = "产品条码";
  1844. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1845. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  1846. //
  1847. // dataGridViewTextBoxColumn19
  1848. //
  1849. this.dataGridViewTextBoxColumn19.DataPropertyName = "LogoCodeName";
  1850. this.dataGridViewTextBoxColumn19.HeaderText = "商标";
  1851. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1852. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  1853. //
  1854. // dataGridViewTextBoxColumn20
  1855. //
  1856. this.dataGridViewTextBoxColumn20.DataPropertyName = "Goodsleveltype";
  1857. this.dataGridViewTextBoxColumn20.HeaderText = "产品分级";
  1858. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1859. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  1860. //
  1861. // dataGridViewTextBoxColumn21
  1862. //
  1863. this.dataGridViewTextBoxColumn21.DataPropertyName = "GroutingUserCode";
  1864. this.dataGridViewTextBoxColumn21.HeaderText = "成型工号";
  1865. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1866. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  1867. //
  1868. // dataGridViewTextBoxColumn22
  1869. //
  1870. this.dataGridViewTextBoxColumn22.DataPropertyName = "groutingdate";
  1871. this.dataGridViewTextBoxColumn22.HeaderText = "注浆日期";
  1872. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1873. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1874. //
  1875. // dataGridViewTextBoxColumn23
  1876. //
  1877. this.dataGridViewTextBoxColumn23.DataPropertyName = "groutingnum";
  1878. this.dataGridViewTextBoxColumn23.HeaderText = "注浆次数";
  1879. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1880. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1881. //
  1882. // czGroutingLineCode
  1883. //
  1884. this.czGroutingLineCode.DataPropertyName = "GroutingLineCode";
  1885. this.czGroutingLineCode.HeaderText = "成型线编码";
  1886. this.czGroutingLineCode.Name = "czGroutingLineCode";
  1887. this.czGroutingLineCode.ReadOnly = true;
  1888. //
  1889. // dataGridViewTextBoxColumn24
  1890. //
  1891. this.dataGridViewTextBoxColumn24.DataPropertyName = "groutingMouldCode";
  1892. this.dataGridViewTextBoxColumn24.HeaderText = "模具编号";
  1893. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1894. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  1895. //
  1896. // DefectKilnLocation
  1897. //
  1898. this.DefectKilnLocation.DataPropertyName = "KilnCarCode";
  1899. this.DefectKilnLocation.HeaderText = "窑车编号";
  1900. this.DefectKilnLocation.Name = "DefectKilnLocation";
  1901. this.DefectKilnLocation.ReadOnly = true;
  1902. //
  1903. // 窑车位置
  1904. //
  1905. this.窑车位置.DataPropertyName = "KilnLocation";
  1906. this.窑车位置.HeaderText = "窑车位置";
  1907. this.窑车位置.Name = "窑车位置";
  1908. this.窑车位置.ReadOnly = true;
  1909. //
  1910. // dataGridViewTextBoxColumn26
  1911. //
  1912. this.dataGridViewTextBoxColumn26.DataPropertyName = "workUsercodes";
  1913. this.dataGridViewTextBoxColumn26.HeaderText = "生产工号";
  1914. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1915. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  1916. //
  1917. // dataGridViewTextBoxColumn27
  1918. //
  1919. this.dataGridViewTextBoxColumn27.DataPropertyName = "CreateUserCodes";
  1920. this.dataGridViewTextBoxColumn27.HeaderText = "操作工号";
  1921. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1922. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  1923. //
  1924. // dataGridViewTextBoxColumn28
  1925. //
  1926. this.dataGridViewTextBoxColumn28.DataPropertyName = "HandOverTime";
  1927. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1928. dataGridViewCellStyle18.Format = "yyyy-MM-dd HH:mm:ss";
  1929. this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle18;
  1930. this.dataGridViewTextBoxColumn28.HeaderText = "交接时间";
  1931. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1932. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  1933. //
  1934. // dataGridViewCheckBoxColumn1
  1935. //
  1936. this.dataGridViewCheckBoxColumn1.DataPropertyName = "undoflag";
  1937. this.dataGridViewCheckBoxColumn1.FalseValue = "0";
  1938. this.dataGridViewCheckBoxColumn1.HeaderText = "改判标识";
  1939. this.dataGridViewCheckBoxColumn1.IndeterminateValue = "";
  1940. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  1941. this.dataGridViewCheckBoxColumn1.ReadOnly = true;
  1942. this.dataGridViewCheckBoxColumn1.TrueValue = "1";
  1943. //
  1944. // barcodeRemarks3
  1945. //
  1946. this.barcodeRemarks3.DataPropertyName = "barcodeRemarks";
  1947. this.barcodeRemarks3.HeaderText = "产品备注";
  1948. this.barcodeRemarks3.Name = "barcodeRemarks3";
  1949. this.barcodeRemarks3.ReadOnly = true;
  1950. //
  1951. // bsqx
  1952. //
  1953. this.bsqx.DataPropertyName = "bsqx";
  1954. this.bsqx.HeaderText = "本烧缺陷";
  1955. this.bsqx.Name = "bsqx";
  1956. this.bsqx.ReadOnly = true;
  1957. //
  1958. // Kcode1
  1959. //
  1960. this.Kcode1.DataPropertyName = "Kcode1";
  1961. this.Kcode1.HeaderText = "窑号";
  1962. this.Kcode1.Name = "Kcode1";
  1963. this.Kcode1.ReadOnly = true;
  1964. //
  1965. // Fyear1
  1966. //
  1967. this.Fyear1.DataPropertyName = "Fyear1";
  1968. this.Fyear1.HeaderText = "财年";
  1969. this.Fyear1.Name = "Fyear1";
  1970. this.Fyear1.ReadOnly = true;
  1971. //
  1972. // tabProDetail
  1973. //
  1974. this.tabProDetail.Controls.Add(this.dgvProDetail);
  1975. this.tabProDetail.Controls.Add(this.panel1);
  1976. this.tabProDetail.Location = new System.Drawing.Point(4, 22);
  1977. this.tabProDetail.Name = "tabProDetail";
  1978. this.tabProDetail.Size = new System.Drawing.Size(1350, 468);
  1979. this.tabProDetail.TabIndex = 3;
  1980. this.tabProDetail.Text = "生产工序信息";
  1981. this.tabProDetail.UseVisualStyleBackColor = true;
  1982. //
  1983. // dgvProDetail
  1984. //
  1985. this.dgvProDetail.AllowUserToAddRows = false;
  1986. this.dgvProDetail.AllowUserToDeleteRows = false;
  1987. this.dgvProDetail.AllowUserToModifyRows = true;
  1988. this.dgvProDetail.AllowUserToOrderColumns = true;
  1989. this.dgvProDetail.AllowUserToSortRows = false;
  1990. dataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1991. this.dgvProDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle20;
  1992. this.dgvProDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1993. this.dgvProDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1994. this.dgvProDetail.CellHeight = 23;
  1995. this.dgvProDetail.ChildNodeColumnName = null;
  1996. this.dgvProDetail.ChildNodeColumnText = null;
  1997. this.dgvProDetail.ColumnDeep = 1;
  1998. this.dgvProDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1999. dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2000. dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  2001. dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2002. dataGridViewCellStyle21.ForeColor = System.Drawing.Color.White;
  2003. dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2004. dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2005. dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2006. this.dgvProDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle21;
  2007. this.dgvProDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  2008. this.dgvProDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  2009. this.protime,
  2010. this.proname,
  2011. this.g4KILNCARCODE,
  2012. this.prousercode,
  2013. this.dataGridViewTextBoxColumn29,
  2014. this.dataGridViewTextBoxColumn30,
  2015. this.dataGridViewTextBoxColumn31,
  2016. this.dataGridViewTextBoxColumn32,
  2017. this.dataGridViewTextBoxColumn33,
  2018. this.dataGridViewTextBoxColumn34,
  2019. this.dataGridViewTextBoxColumn35,
  2020. this.dataGridViewTextBoxColumn36,
  2021. this.dataGridViewTextBoxColumn37,
  2022. this.dataGridViewTextBoxColumn38,
  2023. this.dataGridViewTextBoxColumn39,
  2024. this.dataGridViewTextBoxColumn40,
  2025. this.dataGridViewTextBoxColumn41,
  2026. this.dataGridViewTextBoxColumn42,
  2027. this.dataGridViewTextBoxColumn43,
  2028. this.dataGridViewTextBoxColumn44,
  2029. this.dataGridViewTextBoxColumn45,
  2030. this.dataGridViewTextBoxColumn46,
  2031. this.dataGridViewTextBoxColumn48,
  2032. this.dataGridViewTextBoxColumn47,
  2033. this.dataGridViewTextBoxColumn49,
  2034. this.dataGridViewTextBoxColumn50,
  2035. this.dataGridViewTextBoxColumn51,
  2036. this.dataGridViewTextBoxColumn52,
  2037. this.dataGridViewTextBoxColumn53,
  2038. this.dataGridViewTextBoxColumn54,
  2039. this.dataGridViewTextBoxColumn55,
  2040. this.dataGridViewTextBoxColumn56,
  2041. this.dataGridViewTextBoxColumn57,
  2042. this.dataGridViewTextBoxColumn58,
  2043. this.dataGridViewTextBoxColumn59,
  2044. this.dataGridViewCheckBoxColumn2,
  2045. this.dataGridViewTextBoxColumn60});
  2046. this.dgvProDetail.ColumnTreeView = null;
  2047. this.dgvProDetail.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)));
  2048. this.dgvProDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  2049. this.dgvProDetail.DynamicColumnName = "";
  2050. this.dgvProDetail.EnableHeadersVisualStyles = false;
  2051. this.dgvProDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2052. this.dgvProDetail.FormatQuantityColumns = null;
  2053. this.dgvProDetail.HasNode = false;
  2054. this.dgvProDetail.HorizontalMergeColumn = null;
  2055. this.dgvProDetail.IsAutoCountSum = true;
  2056. this.dgvProDetail.IsAutoResizeColumns = false;
  2057. this.dgvProDetail.IsClickF12 = false;
  2058. this.dgvProDetail.IsOpenMergeCellFlag = false;
  2059. this.dgvProDetail.IsSubTotalFlag = false;
  2060. this.dgvProDetail.IsTopDeep = false;
  2061. this.dgvProDetail.Location = new System.Drawing.Point(0, 28);
  2062. this.dgvProDetail.Margin = new System.Windows.Forms.Padding(0);
  2063. this.dgvProDetail.MergeColumnNames = null;
  2064. this.dgvProDetail.MergeDetailColumnNames = null;
  2065. this.dgvProDetail.MergeDetailOnlyColumn = null;
  2066. this.dgvProDetail.MergeOnlyColumn = null;
  2067. this.dgvProDetail.MultiSelect = false;
  2068. this.dgvProDetail.Name = "dgvProDetail";
  2069. this.dgvProDetail.ReadOnly = true;
  2070. this.dgvProDetail.RefreshAtHscroll = false;
  2071. this.dgvProDetail.RowHeadersWidth = 50;
  2072. this.dgvProDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  2073. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  2074. this.dgvProDetail.RowsDefaultCellStyle = dataGridViewCellStyle28;
  2075. this.dgvProDetail.RowTemplate.Height = 21;
  2076. this.dgvProDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  2077. this.dgvProDetail.Size = new System.Drawing.Size(1350, 440);
  2078. this.dgvProDetail.SortOrderColumnName = null;
  2079. this.dgvProDetail.TabIndex = 32;
  2080. this.dgvProDetail.Tag = true;
  2081. this.dgvProDetail.TotalSumColumns = null;
  2082. this.dgvProDetail.ViewRowFilter = "";
  2083. this.dgvProDetail.VirtualNodes = false;
  2084. //
  2085. // protime
  2086. //
  2087. this.protime.DataPropertyName = "protime";
  2088. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2089. dataGridViewCellStyle22.Format = "yyyy-MM-dd HH:mm:ss";
  2090. this.protime.DefaultCellStyle = dataGridViewCellStyle22;
  2091. this.protime.HeaderText = "生产时间";
  2092. this.protime.Name = "protime";
  2093. this.protime.ReadOnly = true;
  2094. //
  2095. // proname
  2096. //
  2097. this.proname.DataPropertyName = "proname";
  2098. this.proname.HeaderText = "生产工序";
  2099. this.proname.Name = "proname";
  2100. this.proname.ReadOnly = true;
  2101. //
  2102. // g4KILNCARCODE
  2103. //
  2104. this.g4KILNCARCODE.DataPropertyName = "KILNCARCODE";
  2105. this.g4KILNCARCODE.HeaderText = "窑车编码";
  2106. this.g4KILNCARCODE.Name = "g4KILNCARCODE";
  2107. this.g4KILNCARCODE.ReadOnly = true;
  2108. //
  2109. // prousercode
  2110. //
  2111. this.prousercode.DataPropertyName = "prousercode";
  2112. this.prousercode.HeaderText = "生产工号";
  2113. this.prousercode.Name = "prousercode";
  2114. this.prousercode.ReadOnly = true;
  2115. //
  2116. // dataGridViewTextBoxColumn29
  2117. //
  2118. this.dataGridViewTextBoxColumn29.DataPropertyName = "productionlinename";
  2119. this.dataGridViewTextBoxColumn29.HeaderText = "生产线";
  2120. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  2121. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  2122. this.dataGridViewTextBoxColumn29.Visible = false;
  2123. //
  2124. // dataGridViewTextBoxColumn30
  2125. //
  2126. this.dataGridViewTextBoxColumn30.DataPropertyName = "procedurename";
  2127. this.dataGridViewTextBoxColumn30.HeaderText = "检验工序";
  2128. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  2129. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  2130. this.dataGridViewTextBoxColumn30.Visible = false;
  2131. //
  2132. // dataGridViewTextBoxColumn31
  2133. //
  2134. this.dataGridViewTextBoxColumn31.DataPropertyName = "pdchecktime";
  2135. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2136. dataGridViewCellStyle23.Format = "yyyy-MM-dd HH:mm:ss";
  2137. this.dataGridViewTextBoxColumn31.DefaultCellStyle = dataGridViewCellStyle23;
  2138. this.dataGridViewTextBoxColumn31.HeaderText = "成检登记时间";
  2139. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  2140. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  2141. //
  2142. // dataGridViewTextBoxColumn32
  2143. //
  2144. this.dataGridViewTextBoxColumn32.DataPropertyName = "CheckTime";
  2145. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2146. dataGridViewCellStyle24.Format = "yyyy-MM-dd HH:mm:ss";
  2147. this.dataGridViewTextBoxColumn32.DefaultCellStyle = dataGridViewCellStyle24;
  2148. this.dataGridViewTextBoxColumn32.HeaderText = "缺陷登记时间";
  2149. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  2150. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  2151. //
  2152. // dataGridViewTextBoxColumn33
  2153. //
  2154. this.dataGridViewTextBoxColumn33.DataPropertyName = "DefectProcedureName";
  2155. this.dataGridViewTextBoxColumn33.HeaderText = "责任工序";
  2156. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  2157. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  2158. this.dataGridViewTextBoxColumn33.Visible = false;
  2159. //
  2160. // dataGridViewTextBoxColumn34
  2161. //
  2162. this.dataGridViewTextBoxColumn34.DataPropertyName = "DefectUserCode";
  2163. this.dataGridViewTextBoxColumn34.HeaderText = "责任工号";
  2164. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  2165. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  2166. this.dataGridViewTextBoxColumn34.Visible = false;
  2167. //
  2168. // dataGridViewTextBoxColumn35
  2169. //
  2170. this.dataGridViewTextBoxColumn35.DataPropertyName = "defectjobsname";
  2171. this.dataGridViewTextBoxColumn35.HeaderText = "责任工种";
  2172. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  2173. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  2174. this.dataGridViewTextBoxColumn35.Visible = false;
  2175. //
  2176. // dataGridViewTextBoxColumn36
  2177. //
  2178. this.dataGridViewTextBoxColumn36.DataPropertyName = "DefectTypeName";
  2179. this.dataGridViewTextBoxColumn36.HeaderText = "缺陷类别";
  2180. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  2181. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  2182. this.dataGridViewTextBoxColumn36.Visible = false;
  2183. //
  2184. // dataGridViewTextBoxColumn37
  2185. //
  2186. this.dataGridViewTextBoxColumn37.DataPropertyName = "defectcode";
  2187. this.dataGridViewTextBoxColumn37.HeaderText = "缺陷编码";
  2188. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  2189. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  2190. //
  2191. // dataGridViewTextBoxColumn38
  2192. //
  2193. this.dataGridViewTextBoxColumn38.DataPropertyName = "alldefectcode";
  2194. this.dataGridViewTextBoxColumn38.HeaderText = "缺陷编码(全)";
  2195. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  2196. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  2197. this.dataGridViewTextBoxColumn38.Visible = false;
  2198. //
  2199. // dataGridViewTextBoxColumn39
  2200. //
  2201. this.dataGridViewTextBoxColumn39.DataPropertyName = "defectname";
  2202. this.dataGridViewTextBoxColumn39.HeaderText = "缺陷名称";
  2203. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  2204. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  2205. //
  2206. // dataGridViewTextBoxColumn40
  2207. //
  2208. this.dataGridViewTextBoxColumn40.DataPropertyName = "DefectRemarks";
  2209. this.dataGridViewTextBoxColumn40.HeaderText = "缺陷备注";
  2210. this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
  2211. this.dataGridViewTextBoxColumn40.ReadOnly = true;
  2212. this.dataGridViewTextBoxColumn40.Visible = false;
  2213. //
  2214. // dataGridViewTextBoxColumn41
  2215. //
  2216. this.dataGridViewTextBoxColumn41.DataPropertyName = "DefectPositionCode";
  2217. this.dataGridViewTextBoxColumn41.HeaderText = "缺陷位置编码";
  2218. this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
  2219. this.dataGridViewTextBoxColumn41.ReadOnly = true;
  2220. //
  2221. // dataGridViewTextBoxColumn42
  2222. //
  2223. this.dataGridViewTextBoxColumn42.DataPropertyName = "DefectPositionName";
  2224. this.dataGridViewTextBoxColumn42.HeaderText = "缺陷位置名称";
  2225. this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
  2226. this.dataGridViewTextBoxColumn42.ReadOnly = true;
  2227. //
  2228. // dataGridViewTextBoxColumn43
  2229. //
  2230. this.dataGridViewTextBoxColumn43.DataPropertyName = "DefectFineCode";
  2231. dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2232. this.dataGridViewTextBoxColumn43.DefaultCellStyle = dataGridViewCellStyle25;
  2233. this.dataGridViewTextBoxColumn43.HeaderText = "缺陷扣罚";
  2234. this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
  2235. this.dataGridViewTextBoxColumn43.ReadOnly = true;
  2236. this.dataGridViewTextBoxColumn43.Visible = false;
  2237. //
  2238. // dataGridViewTextBoxColumn44
  2239. //
  2240. this.dataGridViewTextBoxColumn44.DataPropertyName = "DefectDeductionNum";
  2241. dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2242. this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle26;
  2243. this.dataGridViewTextBoxColumn44.HeaderText = "缺陷扣除数";
  2244. this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
  2245. this.dataGridViewTextBoxColumn44.ReadOnly = true;
  2246. this.dataGridViewTextBoxColumn44.Visible = false;
  2247. //
  2248. // dataGridViewTextBoxColumn45
  2249. //
  2250. this.dataGridViewTextBoxColumn45.DataPropertyName = "UserCode";
  2251. this.dataGridViewTextBoxColumn45.HeaderText = "检验工号";
  2252. this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
  2253. this.dataGridViewTextBoxColumn45.ReadOnly = true;
  2254. this.dataGridViewTextBoxColumn45.Visible = false;
  2255. //
  2256. // dataGridViewTextBoxColumn46
  2257. //
  2258. this.dataGridViewTextBoxColumn46.DataPropertyName = "Goodstypename";
  2259. this.dataGridViewTextBoxColumn46.HeaderText = "产品类别";
  2260. this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
  2261. this.dataGridViewTextBoxColumn46.ReadOnly = true;
  2262. this.dataGridViewTextBoxColumn46.Visible = false;
  2263. //
  2264. // dataGridViewTextBoxColumn48
  2265. //
  2266. this.dataGridViewTextBoxColumn48.DataPropertyName = "barcode";
  2267. this.dataGridViewTextBoxColumn48.HeaderText = "产品条码";
  2268. this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
  2269. this.dataGridViewTextBoxColumn48.ReadOnly = true;
  2270. //
  2271. // dataGridViewTextBoxColumn47
  2272. //
  2273. this.dataGridViewTextBoxColumn47.DataPropertyName = "goodscode";
  2274. this.dataGridViewTextBoxColumn47.HeaderText = "产品编码";
  2275. this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
  2276. this.dataGridViewTextBoxColumn47.ReadOnly = true;
  2277. //
  2278. // dataGridViewTextBoxColumn49
  2279. //
  2280. this.dataGridViewTextBoxColumn49.DataPropertyName = "LogoCodeName";
  2281. this.dataGridViewTextBoxColumn49.HeaderText = "商标";
  2282. this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
  2283. this.dataGridViewTextBoxColumn49.ReadOnly = true;
  2284. //
  2285. // dataGridViewTextBoxColumn50
  2286. //
  2287. this.dataGridViewTextBoxColumn50.DataPropertyName = "Goodsleveltype";
  2288. this.dataGridViewTextBoxColumn50.HeaderText = "产品分级";
  2289. this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
  2290. this.dataGridViewTextBoxColumn50.ReadOnly = true;
  2291. //
  2292. // dataGridViewTextBoxColumn51
  2293. //
  2294. this.dataGridViewTextBoxColumn51.DataPropertyName = "GroutingUserCode";
  2295. this.dataGridViewTextBoxColumn51.HeaderText = "成型工号";
  2296. this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
  2297. this.dataGridViewTextBoxColumn51.ReadOnly = true;
  2298. this.dataGridViewTextBoxColumn51.Visible = false;
  2299. //
  2300. // dataGridViewTextBoxColumn52
  2301. //
  2302. this.dataGridViewTextBoxColumn52.DataPropertyName = "groutingdate";
  2303. this.dataGridViewTextBoxColumn52.HeaderText = "注浆日期";
  2304. this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
  2305. this.dataGridViewTextBoxColumn52.ReadOnly = true;
  2306. this.dataGridViewTextBoxColumn52.Visible = false;
  2307. //
  2308. // dataGridViewTextBoxColumn53
  2309. //
  2310. this.dataGridViewTextBoxColumn53.DataPropertyName = "groutingnum";
  2311. this.dataGridViewTextBoxColumn53.HeaderText = "注浆次数";
  2312. this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
  2313. this.dataGridViewTextBoxColumn53.ReadOnly = true;
  2314. this.dataGridViewTextBoxColumn53.Visible = false;
  2315. //
  2316. // dataGridViewTextBoxColumn54
  2317. //
  2318. this.dataGridViewTextBoxColumn54.DataPropertyName = "GroutingLineCode";
  2319. this.dataGridViewTextBoxColumn54.HeaderText = "成型线编码";
  2320. this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
  2321. this.dataGridViewTextBoxColumn54.ReadOnly = true;
  2322. this.dataGridViewTextBoxColumn54.Visible = false;
  2323. //
  2324. // dataGridViewTextBoxColumn55
  2325. //
  2326. this.dataGridViewTextBoxColumn55.DataPropertyName = "groutingMouldCode";
  2327. this.dataGridViewTextBoxColumn55.HeaderText = "模具编号";
  2328. this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
  2329. this.dataGridViewTextBoxColumn55.ReadOnly = true;
  2330. this.dataGridViewTextBoxColumn55.Visible = false;
  2331. //
  2332. // dataGridViewTextBoxColumn56
  2333. //
  2334. this.dataGridViewTextBoxColumn56.DataPropertyName = "KilnCarCode";
  2335. this.dataGridViewTextBoxColumn56.HeaderText = "窑车编号";
  2336. this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
  2337. this.dataGridViewTextBoxColumn56.ReadOnly = true;
  2338. this.dataGridViewTextBoxColumn56.Visible = false;
  2339. //
  2340. // dataGridViewTextBoxColumn57
  2341. //
  2342. this.dataGridViewTextBoxColumn57.DataPropertyName = "workUsercodes";
  2343. this.dataGridViewTextBoxColumn57.HeaderText = "生产工号";
  2344. this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
  2345. this.dataGridViewTextBoxColumn57.ReadOnly = true;
  2346. this.dataGridViewTextBoxColumn57.Visible = false;
  2347. //
  2348. // dataGridViewTextBoxColumn58
  2349. //
  2350. this.dataGridViewTextBoxColumn58.DataPropertyName = "CreateUserCodes";
  2351. this.dataGridViewTextBoxColumn58.HeaderText = "操作工号";
  2352. this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
  2353. this.dataGridViewTextBoxColumn58.ReadOnly = true;
  2354. this.dataGridViewTextBoxColumn58.Visible = false;
  2355. //
  2356. // dataGridViewTextBoxColumn59
  2357. //
  2358. this.dataGridViewTextBoxColumn59.DataPropertyName = "HandOverTime";
  2359. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2360. dataGridViewCellStyle27.Format = "yyyy-MM-dd HH:mm:ss";
  2361. this.dataGridViewTextBoxColumn59.DefaultCellStyle = dataGridViewCellStyle27;
  2362. this.dataGridViewTextBoxColumn59.HeaderText = "交接时间";
  2363. this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
  2364. this.dataGridViewTextBoxColumn59.ReadOnly = true;
  2365. this.dataGridViewTextBoxColumn59.Visible = false;
  2366. //
  2367. // dataGridViewCheckBoxColumn2
  2368. //
  2369. this.dataGridViewCheckBoxColumn2.DataPropertyName = "undoflag";
  2370. this.dataGridViewCheckBoxColumn2.FalseValue = "0";
  2371. this.dataGridViewCheckBoxColumn2.HeaderText = "改判标识";
  2372. this.dataGridViewCheckBoxColumn2.IndeterminateValue = "";
  2373. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  2374. this.dataGridViewCheckBoxColumn2.ReadOnly = true;
  2375. this.dataGridViewCheckBoxColumn2.TrueValue = "1";
  2376. this.dataGridViewCheckBoxColumn2.Visible = false;
  2377. //
  2378. // dataGridViewTextBoxColumn60
  2379. //
  2380. this.dataGridViewTextBoxColumn60.DataPropertyName = "barcodeRemarks";
  2381. this.dataGridViewTextBoxColumn60.HeaderText = "产品备注";
  2382. this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
  2383. this.dataGridViewTextBoxColumn60.ReadOnly = true;
  2384. this.dataGridViewTextBoxColumn60.Visible = false;
  2385. //
  2386. // panel1
  2387. //
  2388. this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
  2389. this.panel1.Controls.Add(this.dkProcedureSearchBox1);
  2390. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  2391. this.panel1.Location = new System.Drawing.Point(0, 0);
  2392. this.panel1.Name = "panel1";
  2393. this.panel1.Size = new System.Drawing.Size(1350, 28);
  2394. this.panel1.TabIndex = 33;
  2395. //
  2396. // dkProcedureSearchBox1
  2397. //
  2398. this.dkProcedureSearchBox1.BackColor = System.Drawing.Color.Transparent;
  2399. this.dkProcedureSearchBox1.DataSource = null;
  2400. this.dkProcedureSearchBox1.Enabled = true;
  2401. this.dkProcedureSearchBox1.IsEnablePurview = false;
  2402. this.dkProcedureSearchBox1.IsMustInput = true;
  2403. this.dkProcedureSearchBox1.Location = new System.Drawing.Point(3, 3);
  2404. this.dkProcedureSearchBox1.ModelType = null;
  2405. this.dkProcedureSearchBox1.Name = "dkProcedureSearchBox1";
  2406. this.dkProcedureSearchBox1.ProcedureCode = "";
  2407. this.dkProcedureSearchBox1.ProcedureID = null;
  2408. this.dkProcedureSearchBox1.ProcedureIDS = null;
  2409. this.dkProcedureSearchBox1.ProcedureName = null;
  2410. this.dkProcedureSearchBox1.Purview = null;
  2411. this.dkProcedureSearchBox1.PurviewType = ((byte)(0));
  2412. this.dkProcedureSearchBox1.SelectMore = true;
  2413. this.dkProcedureSearchBox1.Size = new System.Drawing.Size(245, 21);
  2414. this.dkProcedureSearchBox1.TabIndex = 17;
  2415. this.dkProcedureSearchBox1.Title = "生产工序";
  2416. this.dkProcedureSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
  2417. //
  2418. // F_RPT_030106
  2419. //
  2420. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2421. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2422. this.ClientSize = new System.Drawing.Size(1370, 661);
  2423. this.Controls.Add(this.tblReportModule);
  2424. this.Controls.Add(this.gbxCondition);
  2425. this.Controls.Add(this.tsrOperate);
  2426. this.Name = "F_RPT_030106";
  2427. this.Text = "成检缺陷汇总表";
  2428. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030106_FormClosed);
  2429. this.Load += new System.EventHandler(this.F_RPT_030106_Load);
  2430. this.tsrOperate.ResumeLayout(false);
  2431. this.tsrOperate.PerformLayout();
  2432. this.gbxCondition.ResumeLayout(false);
  2433. this.gbxCondition.PerformLayout();
  2434. this.tblReportModule.ResumeLayout(false);
  2435. this.tapReportModule.ResumeLayout(false);
  2436. ((System.ComponentModel.ISupportInitialize)(this.dgvReportModule)).EndInit();
  2437. this.tapReportModuleDetail.ResumeLayout(false);
  2438. ((System.ComponentModel.ISupportInitialize)(this.dgvReportModuleDetail)).EndInit();
  2439. this.tapDefectDetail.ResumeLayout(false);
  2440. ((System.ComponentModel.ISupportInitialize)(this.dgvDefectDetail)).EndInit();
  2441. this.tabProDetail.ResumeLayout(false);
  2442. ((System.ComponentModel.ISupportInitialize)(this.dgvProDetail)).EndInit();
  2443. this.panel1.ResumeLayout(false);
  2444. this.ResumeLayout(false);
  2445. }
  2446. #endregion
  2447. private Basics.BaseControls.C_ToolStrip tsrOperate;
  2448. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  2449. private System.Windows.Forms.ToolStripButton tsbtnClose;
  2450. private Basics.BaseControls.C_GroupBox gbxCondition;
  2451. private Basics.BaseControls.C_Label lblAccountDateEnd;
  2452. private Basics.BaseControls.C_DateTimePicker dtpAccountDateEnd;
  2453. private Basics.BaseControls.C_DateTimePicker dtpAccountDateStart;
  2454. private System.Windows.Forms.TabControl tblReportModule;
  2455. private System.Windows.Forms.TabPage tapReportModule;
  2456. private System.Windows.Forms.TabPage tapReportModuleDetail;
  2457. private Basics.BaseControls.C_DataGridView dgvReportModule;
  2458. private Controls.SearchTextBox.dkproductionLineSearchBox dkproductionLineSearchBox;
  2459. private Controls.SearchTextBox.dkProcedureSearchBox dkProcedureSearchBox;
  2460. private Basics.BaseControls.C_DataGridView dgvReportModuleDetail;
  2461. private Basics.BaseControls.C_Button btnClearCondition;
  2462. private Basics.BaseControls.C_Button btnSearch;
  2463. private Controls.SearchTextBox.dkDefectTypeNameSearchBox dkDefectTypeNameSearchBox1;
  2464. private Basics.BaseControls.C_Label lblDefectUserCode;
  2465. private Basics.BaseControls.C_TextBox txtDefectUserCode;
  2466. private Basics.BaseControls.C_Label lblUserCode;
  2467. private Basics.BaseControls.C_TextBox txtCheckUserCode;
  2468. private Basics.BaseControls.C_TextBox txtDefectCode;
  2469. private Basics.BaseControls.C_Label lblDefectCode;
  2470. private Basics.BaseControls.C_Label lblDefectName;
  2471. private Basics.BaseControls.C_Label c_Label1;
  2472. private Basics.BaseControls.C_TextBox txtGoodsCode;
  2473. private Controls.SearchTextBox.dkProcedureSearchBox dkCompleteProcedure;
  2474. private Basics.BaseControls.C_DateTimePicker dtpCompleteDateEnd;
  2475. private Basics.BaseControls.C_DateTimePicker dtpCompleteDateStart;
  2476. private Basics.BaseControls.C_TextBox txtDefectName;
  2477. private System.Windows.Forms.DataGridViewTextBoxColumn ProductionLineName;
  2478. private System.Windows.Forms.DataGridViewTextBoxColumn ProcedureName;
  2479. private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureName;
  2480. private System.Windows.Forms.DataGridViewTextBoxColumn DefectTypeName;
  2481. private System.Windows.Forms.DataGridViewTextBoxColumn DefectCode;
  2482. private System.Windows.Forms.DataGridViewTextBoxColumn DefectName;
  2483. private System.Windows.Forms.DataGridViewTextBoxColumn Usercode1;
  2484. private System.Windows.Forms.DataGridViewTextBoxColumn Goodstypename;
  2485. private System.Windows.Forms.DataGridViewTextBoxColumn Goodscode;
  2486. private System.Windows.Forms.DataGridViewTextBoxColumn InCount;
  2487. private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureID;
  2488. private System.Windows.Forms.DataGridViewTextBoxColumn ProcedureID;
  2489. private Basics.BaseControls.C_TextBox txtKilnCode;
  2490. private Basics.BaseControls.C_Label c_Label3;
  2491. private Controls.SearchTextBox.dkProcedureSearchBox dkCheckProcedureSearchBox;
  2492. private Basics.BaseControls.C_ComboBox dropRptProcedure;
  2493. private Basics.BaseControls.C_Label c_Label4;
  2494. private Basics.BaseControls.C_CheckBox chkHandOver;
  2495. private Basics.BaseControls.C_Label c_Label2;
  2496. private Basics.BaseControls.C_DateTimePicker dtpHandOverEnd;
  2497. private Basics.BaseControls.C_DateTimePicker dtpHandOverStart;
  2498. private System.Windows.Forms.TabPage tapDefectDetail;
  2499. private Basics.BaseControls.C_DataGridView dgvDefectDetail;
  2500. private Basics.BaseControls.C_CheckBox chkCheckDate;
  2501. private Basics.BaseControls.C_Label c_Label5;
  2502. private Basics.BaseControls.C_DateTimePicker dtpCheckDateEnd;
  2503. private Basics.BaseControls.C_DateTimePicker dtpCheckDateStart;
  2504. private System.Windows.Forms.TabPage tabProDetail;
  2505. private Basics.BaseControls.C_DataGridView dgvProDetail;
  2506. private System.Windows.Forms.Panel panel1;
  2507. private Controls.SearchTextBox.dkProcedureSearchBox dkProcedureSearchBox1;
  2508. private Basics.BaseControls.C_Label lblGoodsType;
  2509. private Controls.SearchBox.ScbGoodsType scbGoodsType;
  2510. private Controls.SearchBox.ScbGoods scbGoods;
  2511. private Basics.BaseControls.C_Label lblGoods;
  2512. private System.Windows.Forms.DataGridViewTextBoxColumn protime;
  2513. private System.Windows.Forms.DataGridViewTextBoxColumn proname;
  2514. private System.Windows.Forms.DataGridViewTextBoxColumn g4KILNCARCODE;
  2515. private System.Windows.Forms.DataGridViewTextBoxColumn prousercode;
  2516. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2517. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2518. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2519. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2520. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2521. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2522. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2523. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2524. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2525. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2526. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2527. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
  2528. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
  2529. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
  2530. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
  2531. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
  2532. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
  2533. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
  2534. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn48;
  2535. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn47;
  2536. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn49;
  2537. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn50;
  2538. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn51;
  2539. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn52;
  2540. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn53;
  2541. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn54;
  2542. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn55;
  2543. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn56;
  2544. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn57;
  2545. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn58;
  2546. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn59;
  2547. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  2548. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn60;
  2549. private Basics.BaseControls.C_TextBox txtKcode;
  2550. private Basics.BaseControls.C_Label lblKcode;
  2551. private Basics.BaseControls.C_TextBox txtFyear;
  2552. private Basics.BaseControls.C_Label lblFyear;
  2553. private Basics.BaseControls.C_StatusCheckBox chkTestMouldFlag;
  2554. private System.Windows.Forms.DataGridViewTextBoxColumn productionlinename1;
  2555. private System.Windows.Forms.DataGridViewTextBoxColumn procedurename2;
  2556. private System.Windows.Forms.DataGridViewTextBoxColumn CreateTime;
  2557. private System.Windows.Forms.DataGridViewTextBoxColumn DefectProcedureName2;
  2558. private System.Windows.Forms.DataGridViewTextBoxColumn DefectUserCode2;
  2559. private System.Windows.Forms.DataGridViewTextBoxColumn DefectTypeName2;
  2560. private System.Windows.Forms.DataGridViewTextBoxColumn defectcode2;
  2561. private System.Windows.Forms.DataGridViewTextBoxColumn alldefectcode;
  2562. private System.Windows.Forms.DataGridViewTextBoxColumn defectnam2;
  2563. private System.Windows.Forms.DataGridViewTextBoxColumn DefectRemarks;
  2564. private System.Windows.Forms.DataGridViewTextBoxColumn DefectPositionCode;
  2565. private System.Windows.Forms.DataGridViewTextBoxColumn DefectPositionName;
  2566. private System.Windows.Forms.DataGridViewTextBoxColumn DefectFineCode;
  2567. private System.Windows.Forms.DataGridViewTextBoxColumn DefectDeductionNum;
  2568. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode2;
  2569. private System.Windows.Forms.DataGridViewTextBoxColumn Goodstypename2;
  2570. private System.Windows.Forms.DataGridViewTextBoxColumn goodscode2;
  2571. private System.Windows.Forms.DataGridViewTextBoxColumn barcode;
  2572. private System.Windows.Forms.DataGridViewTextBoxColumn LogoCodeName;
  2573. private System.Windows.Forms.DataGridViewTextBoxColumn Goodsleveltype;
  2574. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
  2575. private System.Windows.Forms.DataGridViewTextBoxColumn groutingdate;
  2576. private System.Windows.Forms.DataGridViewTextBoxColumn groutingnum;
  2577. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
  2578. private System.Windows.Forms.DataGridViewTextBoxColumn groutingMouldCode;
  2579. private System.Windows.Forms.DataGridViewTextBoxColumn KilnCarCode;
  2580. private System.Windows.Forms.DataGridViewTextBoxColumn FinishedInspectionKilnLocation;
  2581. private System.Windows.Forms.DataGridViewTextBoxColumn workUsercodes;
  2582. private System.Windows.Forms.DataGridViewTextBoxColumn CreateUserCodes;
  2583. private System.Windows.Forms.DataGridViewTextBoxColumn HandOverTime;
  2584. private System.Windows.Forms.DataGridViewCheckBoxColumn undoflag;
  2585. private System.Windows.Forms.DataGridViewCheckBoxColumn reworkflag;
  2586. private System.Windows.Forms.DataGridViewTextBoxColumn glazingroom;
  2587. private System.Windows.Forms.DataGridViewTextBoxColumn Kcode;
  2588. private System.Windows.Forms.DataGridViewTextBoxColumn Fyear;
  2589. private System.Windows.Forms.DataGridViewCheckBoxColumn TestMouldFlag;
  2590. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2591. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2592. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2593. private System.Windows.Forms.DataGridViewTextBoxColumn CheckTime;
  2594. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2595. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2596. private System.Windows.Forms.DataGridViewTextBoxColumn DefectStaffNames3;
  2597. private System.Windows.Forms.DataGridViewTextBoxColumn defectjobsname;
  2598. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2599. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2600. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2601. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2602. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2603. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2604. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2605. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2606. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2607. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2608. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2609. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2610. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2611. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2612. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2613. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2614. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2615. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2616. private System.Windows.Forms.DataGridViewTextBoxColumn czGroutingLineCode;
  2617. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2618. private System.Windows.Forms.DataGridViewTextBoxColumn DefectKilnLocation;
  2619. private System.Windows.Forms.DataGridViewTextBoxColumn 窑车位置;
  2620. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2621. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2622. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2623. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  2624. private System.Windows.Forms.DataGridViewTextBoxColumn barcodeRemarks3;
  2625. private System.Windows.Forms.DataGridViewTextBoxColumn bsqx;
  2626. private System.Windows.Forms.DataGridViewTextBoxColumn Kcode1;
  2627. private System.Windows.Forms.DataGridViewTextBoxColumn Fyear1;
  2628. private Basics.BaseControls.C_Label txtTestFormFlag;
  2629. private Basics.BaseControls.C_ComboBox dropTestFormFlag;
  2630. private Basics.BaseControls.C_Label lblCdate;
  2631. private Basics.BaseControls.C_StatusCheckBox RecyclingflagCheckBox1;
  2632. private Basics.BaseControls.C_StatusCheckBox CheckbatchonCheckBox;
  2633. }
  2634. }