F_RPT_030106.Designer.cs 146 KB

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