F_RPT_040108.Designer.cs 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. namespace Dongke.IBOSS.PRD.Client.ReportModule
  2. {
  3. partial class F_RPT_040108
  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.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("楼号");
  29. System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("楼层");
  30. System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("工段");
  31. System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("成型线编码");
  32. System.Windows.Forms.TreeNode treeNode5 = new System.Windows.Forms.TreeNode("成型工号");
  33. System.Windows.Forms.TreeNode treeNode6 = new System.Windows.Forms.TreeNode("产品编码");
  34. System.Windows.Forms.TreeNode treeNode7 = new System.Windows.Forms.TreeNode("产品名称");
  35. System.Windows.Forms.TreeNode treeNode8 = new System.Windows.Forms.TreeNode("产品规格");
  36. System.Windows.Forms.TreeNode treeNode9 = new System.Windows.Forms.TreeNode("产品类别");
  37. System.Windows.Forms.TreeNode treeNode10 = new System.Windows.Forms.TreeNode("模具数");
  38. System.Windows.Forms.TreeNode treeNode11 = new System.Windows.Forms.TreeNode("成坯数");
  39. System.Windows.Forms.TreeNode treeNode12 = new System.Windows.Forms.TreeNode("交坯数");
  40. System.Windows.Forms.TreeNode treeNode13 = new System.Windows.Forms.TreeNode("1日", new System.Windows.Forms.TreeNode[] {
  41. treeNode11,
  42. treeNode12});
  43. System.Windows.Forms.TreeNode treeNode14 = new System.Windows.Forms.TreeNode("成坯数");
  44. System.Windows.Forms.TreeNode treeNode15 = new System.Windows.Forms.TreeNode("交坯数");
  45. System.Windows.Forms.TreeNode treeNode16 = new System.Windows.Forms.TreeNode("2日", new System.Windows.Forms.TreeNode[] {
  46. treeNode14,
  47. treeNode15});
  48. System.Windows.Forms.TreeNode treeNode17 = new System.Windows.Forms.TreeNode("成坯数");
  49. System.Windows.Forms.TreeNode treeNode18 = new System.Windows.Forms.TreeNode("交坯数");
  50. System.Windows.Forms.TreeNode treeNode19 = new System.Windows.Forms.TreeNode("3日", new System.Windows.Forms.TreeNode[] {
  51. treeNode17,
  52. treeNode18});
  53. System.Windows.Forms.TreeNode treeNode20 = new System.Windows.Forms.TreeNode("成坯数");
  54. System.Windows.Forms.TreeNode treeNode21 = new System.Windows.Forms.TreeNode("交坯数");
  55. System.Windows.Forms.TreeNode treeNode22 = new System.Windows.Forms.TreeNode("4日", new System.Windows.Forms.TreeNode[] {
  56. treeNode20,
  57. treeNode21});
  58. System.Windows.Forms.TreeNode treeNode23 = new System.Windows.Forms.TreeNode("成坯数");
  59. System.Windows.Forms.TreeNode treeNode24 = new System.Windows.Forms.TreeNode("交坯数");
  60. System.Windows.Forms.TreeNode treeNode25 = new System.Windows.Forms.TreeNode("5日", new System.Windows.Forms.TreeNode[] {
  61. treeNode23,
  62. treeNode24});
  63. System.Windows.Forms.TreeNode treeNode26 = new System.Windows.Forms.TreeNode("成坯数");
  64. System.Windows.Forms.TreeNode treeNode27 = new System.Windows.Forms.TreeNode("交坯数");
  65. System.Windows.Forms.TreeNode treeNode28 = new System.Windows.Forms.TreeNode("6日", new System.Windows.Forms.TreeNode[] {
  66. treeNode26,
  67. treeNode27});
  68. System.Windows.Forms.TreeNode treeNode29 = new System.Windows.Forms.TreeNode("成坯数");
  69. System.Windows.Forms.TreeNode treeNode30 = new System.Windows.Forms.TreeNode("交坯数");
  70. System.Windows.Forms.TreeNode treeNode31 = new System.Windows.Forms.TreeNode("7日", new System.Windows.Forms.TreeNode[] {
  71. treeNode29,
  72. treeNode30});
  73. System.Windows.Forms.TreeNode treeNode32 = new System.Windows.Forms.TreeNode("成坯数");
  74. System.Windows.Forms.TreeNode treeNode33 = new System.Windows.Forms.TreeNode("交坯数");
  75. System.Windows.Forms.TreeNode treeNode34 = new System.Windows.Forms.TreeNode("8日", new System.Windows.Forms.TreeNode[] {
  76. treeNode32,
  77. treeNode33});
  78. System.Windows.Forms.TreeNode treeNode35 = new System.Windows.Forms.TreeNode("成坯数");
  79. System.Windows.Forms.TreeNode treeNode36 = new System.Windows.Forms.TreeNode("交坯数");
  80. System.Windows.Forms.TreeNode treeNode37 = new System.Windows.Forms.TreeNode("9日", new System.Windows.Forms.TreeNode[] {
  81. treeNode35,
  82. treeNode36});
  83. System.Windows.Forms.TreeNode treeNode38 = new System.Windows.Forms.TreeNode("成坯数");
  84. System.Windows.Forms.TreeNode treeNode39 = new System.Windows.Forms.TreeNode("交坯数");
  85. System.Windows.Forms.TreeNode treeNode40 = new System.Windows.Forms.TreeNode("10日", new System.Windows.Forms.TreeNode[] {
  86. treeNode38,
  87. treeNode39});
  88. System.Windows.Forms.TreeNode treeNode41 = new System.Windows.Forms.TreeNode("成坯数");
  89. System.Windows.Forms.TreeNode treeNode42 = new System.Windows.Forms.TreeNode("交坯数");
  90. System.Windows.Forms.TreeNode treeNode43 = new System.Windows.Forms.TreeNode("11日", new System.Windows.Forms.TreeNode[] {
  91. treeNode41,
  92. treeNode42});
  93. System.Windows.Forms.TreeNode treeNode44 = new System.Windows.Forms.TreeNode("成坯数");
  94. System.Windows.Forms.TreeNode treeNode45 = new System.Windows.Forms.TreeNode("交坯数");
  95. System.Windows.Forms.TreeNode treeNode46 = new System.Windows.Forms.TreeNode("12日", new System.Windows.Forms.TreeNode[] {
  96. treeNode44,
  97. treeNode45});
  98. System.Windows.Forms.TreeNode treeNode47 = new System.Windows.Forms.TreeNode("成坯数");
  99. System.Windows.Forms.TreeNode treeNode48 = new System.Windows.Forms.TreeNode("交坯数");
  100. System.Windows.Forms.TreeNode treeNode49 = new System.Windows.Forms.TreeNode("13日", new System.Windows.Forms.TreeNode[] {
  101. treeNode47,
  102. treeNode48});
  103. System.Windows.Forms.TreeNode treeNode50 = new System.Windows.Forms.TreeNode("成坯数");
  104. System.Windows.Forms.TreeNode treeNode51 = new System.Windows.Forms.TreeNode("交坯数");
  105. System.Windows.Forms.TreeNode treeNode52 = new System.Windows.Forms.TreeNode("14日", new System.Windows.Forms.TreeNode[] {
  106. treeNode50,
  107. treeNode51});
  108. System.Windows.Forms.TreeNode treeNode53 = new System.Windows.Forms.TreeNode("成坯数");
  109. System.Windows.Forms.TreeNode treeNode54 = new System.Windows.Forms.TreeNode("交坯数");
  110. System.Windows.Forms.TreeNode treeNode55 = new System.Windows.Forms.TreeNode("15日", new System.Windows.Forms.TreeNode[] {
  111. treeNode53,
  112. treeNode54});
  113. System.Windows.Forms.TreeNode treeNode56 = new System.Windows.Forms.TreeNode("成坯数");
  114. System.Windows.Forms.TreeNode treeNode57 = new System.Windows.Forms.TreeNode("交坯数");
  115. System.Windows.Forms.TreeNode treeNode58 = new System.Windows.Forms.TreeNode("16日", new System.Windows.Forms.TreeNode[] {
  116. treeNode56,
  117. treeNode57});
  118. System.Windows.Forms.TreeNode treeNode59 = new System.Windows.Forms.TreeNode("成坯数");
  119. System.Windows.Forms.TreeNode treeNode60 = new System.Windows.Forms.TreeNode("交坯数");
  120. System.Windows.Forms.TreeNode treeNode61 = new System.Windows.Forms.TreeNode("17日", new System.Windows.Forms.TreeNode[] {
  121. treeNode59,
  122. treeNode60});
  123. System.Windows.Forms.TreeNode treeNode62 = new System.Windows.Forms.TreeNode("成坯数");
  124. System.Windows.Forms.TreeNode treeNode63 = new System.Windows.Forms.TreeNode("交坯数");
  125. System.Windows.Forms.TreeNode treeNode64 = new System.Windows.Forms.TreeNode("18日", new System.Windows.Forms.TreeNode[] {
  126. treeNode62,
  127. treeNode63});
  128. System.Windows.Forms.TreeNode treeNode65 = new System.Windows.Forms.TreeNode("成坯数");
  129. System.Windows.Forms.TreeNode treeNode66 = new System.Windows.Forms.TreeNode("交坯数");
  130. System.Windows.Forms.TreeNode treeNode67 = new System.Windows.Forms.TreeNode("19日", new System.Windows.Forms.TreeNode[] {
  131. treeNode65,
  132. treeNode66});
  133. System.Windows.Forms.TreeNode treeNode68 = new System.Windows.Forms.TreeNode("成坯数");
  134. System.Windows.Forms.TreeNode treeNode69 = new System.Windows.Forms.TreeNode("交坯数");
  135. System.Windows.Forms.TreeNode treeNode70 = new System.Windows.Forms.TreeNode("20日", new System.Windows.Forms.TreeNode[] {
  136. treeNode68,
  137. treeNode69});
  138. System.Windows.Forms.TreeNode treeNode71 = new System.Windows.Forms.TreeNode("成坯数");
  139. System.Windows.Forms.TreeNode treeNode72 = new System.Windows.Forms.TreeNode("交坯数");
  140. System.Windows.Forms.TreeNode treeNode73 = new System.Windows.Forms.TreeNode("21日", new System.Windows.Forms.TreeNode[] {
  141. treeNode71,
  142. treeNode72});
  143. System.Windows.Forms.TreeNode treeNode74 = new System.Windows.Forms.TreeNode("成坯数");
  144. System.Windows.Forms.TreeNode treeNode75 = new System.Windows.Forms.TreeNode("交坯数");
  145. System.Windows.Forms.TreeNode treeNode76 = new System.Windows.Forms.TreeNode("22日", new System.Windows.Forms.TreeNode[] {
  146. treeNode74,
  147. treeNode75});
  148. System.Windows.Forms.TreeNode treeNode77 = new System.Windows.Forms.TreeNode("成坯数");
  149. System.Windows.Forms.TreeNode treeNode78 = new System.Windows.Forms.TreeNode("交坯数");
  150. System.Windows.Forms.TreeNode treeNode79 = new System.Windows.Forms.TreeNode("23日", new System.Windows.Forms.TreeNode[] {
  151. treeNode77,
  152. treeNode78});
  153. System.Windows.Forms.TreeNode treeNode80 = new System.Windows.Forms.TreeNode("成坯数");
  154. System.Windows.Forms.TreeNode treeNode81 = new System.Windows.Forms.TreeNode("交坯数");
  155. System.Windows.Forms.TreeNode treeNode82 = new System.Windows.Forms.TreeNode("24日", new System.Windows.Forms.TreeNode[] {
  156. treeNode80,
  157. treeNode81});
  158. System.Windows.Forms.TreeNode treeNode83 = new System.Windows.Forms.TreeNode("成坯数");
  159. System.Windows.Forms.TreeNode treeNode84 = new System.Windows.Forms.TreeNode("交坯数");
  160. System.Windows.Forms.TreeNode treeNode85 = new System.Windows.Forms.TreeNode("25日", new System.Windows.Forms.TreeNode[] {
  161. treeNode83,
  162. treeNode84});
  163. System.Windows.Forms.TreeNode treeNode86 = new System.Windows.Forms.TreeNode("成坯数");
  164. System.Windows.Forms.TreeNode treeNode87 = new System.Windows.Forms.TreeNode("交坯数");
  165. System.Windows.Forms.TreeNode treeNode88 = new System.Windows.Forms.TreeNode("26日", new System.Windows.Forms.TreeNode[] {
  166. treeNode86,
  167. treeNode87});
  168. System.Windows.Forms.TreeNode treeNode89 = new System.Windows.Forms.TreeNode("成坯数");
  169. System.Windows.Forms.TreeNode treeNode90 = new System.Windows.Forms.TreeNode("交坯数");
  170. System.Windows.Forms.TreeNode treeNode91 = new System.Windows.Forms.TreeNode("27日", new System.Windows.Forms.TreeNode[] {
  171. treeNode89,
  172. treeNode90});
  173. System.Windows.Forms.TreeNode treeNode92 = new System.Windows.Forms.TreeNode("成坯数");
  174. System.Windows.Forms.TreeNode treeNode93 = new System.Windows.Forms.TreeNode("交坯数");
  175. System.Windows.Forms.TreeNode treeNode94 = new System.Windows.Forms.TreeNode("28日", new System.Windows.Forms.TreeNode[] {
  176. treeNode92,
  177. treeNode93});
  178. System.Windows.Forms.TreeNode treeNode95 = new System.Windows.Forms.TreeNode("成坯数");
  179. System.Windows.Forms.TreeNode treeNode96 = new System.Windows.Forms.TreeNode("交坯数");
  180. System.Windows.Forms.TreeNode treeNode97 = new System.Windows.Forms.TreeNode("29日", new System.Windows.Forms.TreeNode[] {
  181. treeNode95,
  182. treeNode96});
  183. System.Windows.Forms.TreeNode treeNode98 = new System.Windows.Forms.TreeNode("成坯数");
  184. System.Windows.Forms.TreeNode treeNode99 = new System.Windows.Forms.TreeNode("交坯数");
  185. System.Windows.Forms.TreeNode treeNode100 = new System.Windows.Forms.TreeNode("30日", new System.Windows.Forms.TreeNode[] {
  186. treeNode98,
  187. treeNode99});
  188. System.Windows.Forms.TreeNode treeNode101 = new System.Windows.Forms.TreeNode("成坯数");
  189. System.Windows.Forms.TreeNode treeNode102 = new System.Windows.Forms.TreeNode("交坯数");
  190. System.Windows.Forms.TreeNode treeNode103 = new System.Windows.Forms.TreeNode("31日", new System.Windows.Forms.TreeNode[] {
  191. treeNode101,
  192. treeNode102});
  193. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_040108));
  194. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  195. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  196. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
  197. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
  198. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
  199. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle101 = new System.Windows.Forms.DataGridViewCellStyle();
  200. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
  201. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
  202. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
  203. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
  204. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
  205. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
  206. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
  207. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
  208. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
  209. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
  210. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
  211. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
  212. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
  213. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
  214. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
  215. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
  216. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle85 = new System.Windows.Forms.DataGridViewCellStyle();
  217. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
  218. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
  219. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
  220. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
  221. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
  222. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle91 = new System.Windows.Forms.DataGridViewCellStyle();
  223. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle92 = new System.Windows.Forms.DataGridViewCellStyle();
  224. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle93 = new System.Windows.Forms.DataGridViewCellStyle();
  225. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle94 = new System.Windows.Forms.DataGridViewCellStyle();
  226. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle95 = new System.Windows.Forms.DataGridViewCellStyle();
  227. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle96 = new System.Windows.Forms.DataGridViewCellStyle();
  228. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle97 = new System.Windows.Forms.DataGridViewCellStyle();
  229. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle98 = new System.Windows.Forms.DataGridViewCellStyle();
  230. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle99 = new System.Windows.Forms.DataGridViewCellStyle();
  231. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle100 = new System.Windows.Forms.DataGridViewCellStyle();
  232. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle102 = new System.Windows.Forms.DataGridViewCellStyle();
  233. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle103 = new System.Windows.Forms.DataGridViewCellStyle();
  234. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle136 = new System.Windows.Forms.DataGridViewCellStyle();
  235. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle104 = new System.Windows.Forms.DataGridViewCellStyle();
  236. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle105 = new System.Windows.Forms.DataGridViewCellStyle();
  237. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
  238. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
  239. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
  240. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
  241. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
  242. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
  243. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
  244. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
  245. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
  246. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
  247. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
  248. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
  249. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
  250. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
  251. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
  252. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
  253. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
  254. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
  255. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
  256. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
  257. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
  258. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
  259. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
  260. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
  261. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
  262. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
  263. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
  264. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
  265. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
  266. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
  267. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  268. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  269. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  270. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  271. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  272. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  273. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  274. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  275. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  276. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  277. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  278. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  279. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  280. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  281. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  282. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  283. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  284. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  285. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  286. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  287. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  288. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  289. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  290. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  291. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  292. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  293. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  294. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  295. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  296. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  297. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  298. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  299. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  300. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  301. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  302. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  303. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  304. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  305. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  306. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  307. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  308. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  309. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  310. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
  311. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
  312. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
  313. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
  314. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
  315. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
  316. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
  317. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
  318. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
  319. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
  320. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
  321. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
  322. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
  323. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
  324. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
  325. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
  326. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
  327. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
  328. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
  329. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
  330. this.treeView1 = new System.Windows.Forms.TreeView();
  331. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  332. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  333. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  334. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  335. this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  336. this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
  337. this.txtGroutingUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  338. this.c_Label3 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  339. this.txtGroutingLineCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  340. this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  341. this.txtGoodCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
  342. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  343. this.c_Label4 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  344. this.dtpGDateStart = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  345. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  346. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  347. this.dgvRptProcedure = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  348. this.tabControl1 = new System.Windows.Forms.TabControl();
  349. this.tabPage1 = new System.Windows.Forms.TabPage();
  350. this.tabPage2 = new System.Windows.Forms.TabPage();
  351. this.dgvGC = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  352. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  353. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  354. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  355. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  356. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  357. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  358. this.goodstwo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  359. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  360. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  361. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  362. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  363. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  364. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  365. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  366. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  367. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  368. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  369. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  370. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  371. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  372. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  373. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  374. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  375. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  376. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  377. this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  378. this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  379. this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  380. this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  381. this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  382. this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  383. this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  384. this.dataGridViewTextBoxColumn54 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  385. this.dataGridViewTextBoxColumn56 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  386. this.dataGridViewTextBoxColumn58 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  387. this.dataGridViewTextBoxColumn60 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  388. this.dataGridViewTextBoxColumn62 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  389. this.dataGridViewTextBoxColumn64 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  390. this.dataGridViewTextBoxColumn66 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  391. this.dataGridViewTextBoxColumn68 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  392. this.dataGridViewTextBoxColumn70 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  393. this.tabPage3 = new System.Windows.Forms.TabPage();
  394. this.dgvGD = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  395. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  396. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  397. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  398. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  399. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  400. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  401. this.goodsnamework = new System.Windows.Forms.DataGridViewTextBoxColumn();
  402. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  403. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  404. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  405. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  406. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  407. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  408. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  409. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  410. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  411. this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  412. this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  413. this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  414. this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  415. this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  416. this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  417. this.dataGridViewTextBoxColumn53 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  418. this.dataGridViewTextBoxColumn55 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  419. this.dataGridViewTextBoxColumn57 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  420. this.dataGridViewTextBoxColumn59 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  421. this.dataGridViewTextBoxColumn61 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  422. this.dataGridViewTextBoxColumn63 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  423. this.dataGridViewTextBoxColumn65 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  424. this.dataGridViewTextBoxColumn67 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  425. this.dataGridViewTextBoxColumn69 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  426. this.dataGridViewTextBoxColumn71 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  427. this.dataGridViewTextBoxColumn72 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  428. this.dataGridViewTextBoxColumn73 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  429. this.dataGridViewTextBoxColumn74 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  430. this.dataGridViewTextBoxColumn75 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  431. this.dataGridViewTextBoxColumn76 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  432. this.dataGridViewTextBoxColumn77 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  433. this.dataGridViewTextBoxColumn78 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  434. this.dataGridViewTextBoxColumn79 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  435. this.dataGridViewTextBoxColumn80 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  436. this.BuildingNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  437. this.FloorNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  438. this.GroutingLineNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  439. this.groutinglinecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  440. this.usercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  441. this.goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  442. this.goodsname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  443. this.GOODSSPECIFICATION = new System.Windows.Forms.DataGridViewTextBoxColumn();
  444. this.goodstypename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  445. this.MouldQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  446. this.c01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  447. this.d01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  448. this.c02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  449. this.d02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  450. this.c03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  451. this.d03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  452. this.c04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  453. this.d04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  454. this.c05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  455. this.d05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  456. this.c06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  457. this.d06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  458. this.c07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  459. this.d07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  460. this.c08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  461. this.d08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  462. this.c09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  463. this.d09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  464. this.c10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  465. this.d10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  466. this.c11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  467. this.d11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  468. this.c12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  469. this.d12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  470. this.c13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  471. this.d13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  472. this.c14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  473. this.d14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  474. this.c15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  475. this.d15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  476. this.c16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  477. this.d16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  478. this.c17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  479. this.d17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  480. this.c18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  481. this.d18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  482. this.c19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  483. this.d19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  484. this.c20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  485. this.d20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  486. this.c21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  487. this.d21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  488. this.c22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  489. this.d22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  490. this.c23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  491. this.d23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  492. this.c24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  493. this.d24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  494. this.c25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  495. this.d25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  496. this.c26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  497. this.d26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  498. this.c27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  499. this.d27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  500. this.c28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  501. this.d28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  502. this.c29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  503. this.d29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  504. this.c30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  505. this.d30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  506. this.c31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  507. this.d31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  508. this.tsrOperate.SuspendLayout();
  509. this.gbxCondition.SuspendLayout();
  510. ((System.ComponentModel.ISupportInitialize)(this.dgvRptProcedure)).BeginInit();
  511. this.tabControl1.SuspendLayout();
  512. this.tabPage1.SuspendLayout();
  513. this.tabPage2.SuspendLayout();
  514. ((System.ComponentModel.ISupportInitialize)(this.dgvGC)).BeginInit();
  515. this.tabPage3.SuspendLayout();
  516. ((System.ComponentModel.ISupportInitialize)(this.dgvGD)).BeginInit();
  517. this.SuspendLayout();
  518. //
  519. // treeView1
  520. //
  521. this.treeView1.LineColor = System.Drawing.Color.Empty;
  522. this.treeView1.Location = new System.Drawing.Point(0, 0);
  523. this.treeView1.Name = "treeView1";
  524. treeNode1.Name = "节点1";
  525. treeNode1.Text = "楼号";
  526. treeNode2.Name = "节点4";
  527. treeNode2.Text = "楼层";
  528. treeNode3.Name = "节点3";
  529. treeNode3.Text = "工段";
  530. treeNode4.Name = "groutinglinecode";
  531. treeNode4.Text = "成型线编码";
  532. treeNode5.Name = "usercode";
  533. treeNode5.Text = "成型工号";
  534. treeNode6.Name = "goodscode";
  535. treeNode6.Text = "产品编码";
  536. treeNode7.Name = "goodsname";
  537. treeNode7.Text = "产品名称";
  538. treeNode8.Name = "GOODSSPECIFICATION";
  539. treeNode8.Text = "产品规格";
  540. treeNode9.Name = "goodstypename";
  541. treeNode9.Text = "产品类别";
  542. treeNode10.Name = "MouldQuantity";
  543. treeNode10.Text = "模具数";
  544. treeNode11.Name = "c01";
  545. treeNode11.Text = "成坯数";
  546. treeNode12.Name = "d01";
  547. treeNode12.Text = "交坯数";
  548. treeNode13.Name = "节点cd01";
  549. treeNode13.Text = "1日";
  550. treeNode14.Name = "c02";
  551. treeNode14.Text = "成坯数";
  552. treeNode15.Name = "d02";
  553. treeNode15.Text = "交坯数";
  554. treeNode16.Name = "节点cd02";
  555. treeNode16.Text = "2日";
  556. treeNode17.Name = "c03";
  557. treeNode17.Text = "成坯数";
  558. treeNode18.Name = "d03";
  559. treeNode18.Text = "交坯数";
  560. treeNode19.Name = "节点cd03";
  561. treeNode19.Text = "3日";
  562. treeNode20.Name = "c04";
  563. treeNode20.Text = "成坯数";
  564. treeNode21.Name = "d04";
  565. treeNode21.Text = "交坯数";
  566. treeNode22.Name = "节点cd04";
  567. treeNode22.Text = "4日";
  568. treeNode23.Name = "c05";
  569. treeNode23.Text = "成坯数";
  570. treeNode24.Name = "d05";
  571. treeNode24.Text = "交坯数";
  572. treeNode25.Name = "节点cd05";
  573. treeNode25.Text = "5日";
  574. treeNode26.Name = "c06";
  575. treeNode26.Text = "成坯数";
  576. treeNode27.Name = "d06";
  577. treeNode27.Text = "交坯数";
  578. treeNode28.Name = "节点cd06";
  579. treeNode28.Text = "6日";
  580. treeNode29.Name = "c07";
  581. treeNode29.Text = "成坯数";
  582. treeNode30.Name = "d07";
  583. treeNode30.Text = "交坯数";
  584. treeNode31.Name = "节点cd07";
  585. treeNode31.Text = "7日";
  586. treeNode32.Name = "c08";
  587. treeNode32.Text = "成坯数";
  588. treeNode33.Name = "d08";
  589. treeNode33.Text = "交坯数";
  590. treeNode34.Name = "节点cd08";
  591. treeNode34.Text = "8日";
  592. treeNode35.Name = "c09";
  593. treeNode35.Text = "成坯数";
  594. treeNode36.Name = "d09";
  595. treeNode36.Text = "交坯数";
  596. treeNode37.Name = "节点cd09";
  597. treeNode37.Text = "9日";
  598. treeNode38.Name = "c10";
  599. treeNode38.Text = "成坯数";
  600. treeNode39.Name = "d10";
  601. treeNode39.Text = "交坯数";
  602. treeNode40.Name = "节点cd10";
  603. treeNode40.Text = "10日";
  604. treeNode41.Name = "c11";
  605. treeNode41.Text = "成坯数";
  606. treeNode42.Name = "d11";
  607. treeNode42.Text = "交坯数";
  608. treeNode43.Name = "节点cd11";
  609. treeNode43.Text = "11日";
  610. treeNode44.Name = "c12";
  611. treeNode44.Text = "成坯数";
  612. treeNode45.Name = "d12";
  613. treeNode45.Text = "交坯数";
  614. treeNode46.Name = "节点cd12";
  615. treeNode46.Text = "12日";
  616. treeNode47.Name = "c13";
  617. treeNode47.Text = "成坯数";
  618. treeNode48.Name = "d13";
  619. treeNode48.Text = "交坯数";
  620. treeNode49.Name = "节点cd13";
  621. treeNode49.Text = "13日";
  622. treeNode50.Name = "c14";
  623. treeNode50.Text = "成坯数";
  624. treeNode51.Name = "d14";
  625. treeNode51.Text = "交坯数";
  626. treeNode52.Name = "节点cd14";
  627. treeNode52.Text = "14日";
  628. treeNode53.Name = "c15";
  629. treeNode53.Text = "成坯数";
  630. treeNode54.Name = "d15";
  631. treeNode54.Text = "交坯数";
  632. treeNode55.Name = "节点cd15";
  633. treeNode55.Text = "15日";
  634. treeNode56.Name = "c16";
  635. treeNode56.Text = "成坯数";
  636. treeNode57.Name = "d16";
  637. treeNode57.Text = "交坯数";
  638. treeNode58.Name = "节点cd16";
  639. treeNode58.Text = "16日";
  640. treeNode59.Name = "c17";
  641. treeNode59.Text = "成坯数";
  642. treeNode60.Name = "d17";
  643. treeNode60.Text = "交坯数";
  644. treeNode61.Name = "节点cd17";
  645. treeNode61.Text = "17日";
  646. treeNode62.Name = "c18";
  647. treeNode62.Text = "成坯数";
  648. treeNode63.Name = "d18";
  649. treeNode63.Text = "交坯数";
  650. treeNode64.Name = "节点cd18";
  651. treeNode64.Text = "18日";
  652. treeNode65.Name = "c19";
  653. treeNode65.Text = "成坯数";
  654. treeNode66.Name = "d19";
  655. treeNode66.Text = "交坯数";
  656. treeNode67.Name = "节点cd19";
  657. treeNode67.Text = "19日";
  658. treeNode68.Name = "c20";
  659. treeNode68.Text = "成坯数";
  660. treeNode69.Name = "d20";
  661. treeNode69.Text = "交坯数";
  662. treeNode70.Name = "节点cd20";
  663. treeNode70.Text = "20日";
  664. treeNode71.Name = "c21";
  665. treeNode71.Text = "成坯数";
  666. treeNode72.Name = "d21";
  667. treeNode72.Text = "交坯数";
  668. treeNode73.Name = "节点cd21";
  669. treeNode73.Text = "21日";
  670. treeNode74.Name = "c22";
  671. treeNode74.Text = "成坯数";
  672. treeNode75.Name = "d22";
  673. treeNode75.Text = "交坯数";
  674. treeNode76.Name = "节点cd22";
  675. treeNode76.Text = "22日";
  676. treeNode77.Name = "c23";
  677. treeNode77.Text = "成坯数";
  678. treeNode78.Name = "d23";
  679. treeNode78.Text = "交坯数";
  680. treeNode79.Name = "节点cd23";
  681. treeNode79.Text = "23日";
  682. treeNode80.Name = "c24";
  683. treeNode80.Text = "成坯数";
  684. treeNode81.Name = "d24";
  685. treeNode81.Text = "交坯数";
  686. treeNode82.Name = "节点cd24";
  687. treeNode82.Text = "24日";
  688. treeNode83.Name = "c25";
  689. treeNode83.Text = "成坯数";
  690. treeNode84.Name = "d25";
  691. treeNode84.Text = "交坯数";
  692. treeNode85.Name = "节点cd25";
  693. treeNode85.Text = "25日";
  694. treeNode86.Name = "c26";
  695. treeNode86.Text = "成坯数";
  696. treeNode87.Name = "d26";
  697. treeNode87.Text = "交坯数";
  698. treeNode88.Name = "节点cd26";
  699. treeNode88.Text = "26日";
  700. treeNode89.Name = "c27";
  701. treeNode89.Text = "成坯数";
  702. treeNode90.Name = "d27";
  703. treeNode90.Text = "交坯数";
  704. treeNode91.Name = "节点cd27";
  705. treeNode91.Text = "27日";
  706. treeNode92.Name = "c28";
  707. treeNode92.Text = "成坯数";
  708. treeNode93.Name = "d28";
  709. treeNode93.Text = "交坯数";
  710. treeNode94.Name = "节点cd28";
  711. treeNode94.Text = "28日";
  712. treeNode95.Name = "c29";
  713. treeNode95.Text = "成坯数";
  714. treeNode96.Name = "d29";
  715. treeNode96.Text = "交坯数";
  716. treeNode97.Name = "节点cd29";
  717. treeNode97.Text = "29日";
  718. treeNode98.Name = "c30";
  719. treeNode98.Text = "成坯数";
  720. treeNode99.Name = "d30";
  721. treeNode99.Text = "交坯数";
  722. treeNode100.Name = "节点cd30";
  723. treeNode100.Text = "30日";
  724. treeNode101.Name = "c31";
  725. treeNode101.Text = "成坯数";
  726. treeNode102.Name = "d31";
  727. treeNode102.Text = "交坯数";
  728. treeNode103.Name = "节点cd31";
  729. treeNode103.Text = "31日";
  730. this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
  731. treeNode1,
  732. treeNode2,
  733. treeNode3,
  734. treeNode4,
  735. treeNode5,
  736. treeNode6,
  737. treeNode7,
  738. treeNode8,
  739. treeNode9,
  740. treeNode10,
  741. treeNode13,
  742. treeNode16,
  743. treeNode19,
  744. treeNode22,
  745. treeNode25,
  746. treeNode28,
  747. treeNode31,
  748. treeNode34,
  749. treeNode37,
  750. treeNode40,
  751. treeNode43,
  752. treeNode46,
  753. treeNode49,
  754. treeNode52,
  755. treeNode55,
  756. treeNode58,
  757. treeNode61,
  758. treeNode64,
  759. treeNode67,
  760. treeNode70,
  761. treeNode73,
  762. treeNode76,
  763. treeNode79,
  764. treeNode82,
  765. treeNode85,
  766. treeNode88,
  767. treeNode91,
  768. treeNode94,
  769. treeNode97,
  770. treeNode100,
  771. treeNode103});
  772. this.treeView1.Size = new System.Drawing.Size(121, 97);
  773. this.treeView1.TabIndex = 0;
  774. //
  775. // tsrOperate
  776. //
  777. this.tsrOperate.AutoSize = false;
  778. this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
  779. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  780. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  781. this.tsbtnAdaptive,
  782. this.tsbtnClose});
  783. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  784. this.tsrOperate.Name = "tsrOperate";
  785. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  786. this.tsrOperate.ShowItemToolTips = false;
  787. this.tsrOperate.Size = new System.Drawing.Size(1298, 35);
  788. this.tsrOperate.TabIndex = 33;
  789. this.tsrOperate.Text = "toolStrip1";
  790. //
  791. // tsbtnAdaptive
  792. //
  793. this.tsbtnAdaptive.AutoSize = false;
  794. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  795. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  796. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  797. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  798. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  799. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  800. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  801. //
  802. // tsbtnClose
  803. //
  804. this.tsbtnClose.AutoSize = false;
  805. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  806. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  807. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  808. this.tsbtnClose.Name = "tsbtnClose";
  809. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  810. this.tsbtnClose.Text = "关闭(&X)";
  811. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  812. //
  813. // gbxCondition
  814. //
  815. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  816. | System.Windows.Forms.AnchorStyles.Right)));
  817. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  818. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  819. this.gbxCondition.Controls.Add(this.lblGoodsType);
  820. this.gbxCondition.Controls.Add(this.scbGoodsType);
  821. this.gbxCondition.Controls.Add(this.txtGroutingUserCode);
  822. this.gbxCondition.Controls.Add(this.c_Label3);
  823. this.gbxCondition.Controls.Add(this.txtGroutingLineCode);
  824. this.gbxCondition.Controls.Add(this.c_Label2);
  825. this.gbxCondition.Controls.Add(this.txtGoodCode);
  826. this.gbxCondition.Controls.Add(this.c_Label1);
  827. this.gbxCondition.Controls.Add(this.c_Label4);
  828. this.gbxCondition.Controls.Add(this.dtpGDateStart);
  829. this.gbxCondition.Controls.Add(this.btnClearCondition);
  830. this.gbxCondition.Controls.Add(this.btnSearch);
  831. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  832. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  833. this.gbxCondition.IsMustInput = false;
  834. this.gbxCondition.Location = new System.Drawing.Point(0, 38);
  835. this.gbxCondition.Name = "gbxCondition";
  836. this.gbxCondition.OriginalHeight = -1;
  837. this.gbxCondition.Size = new System.Drawing.Size(1286, 75);
  838. this.gbxCondition.TabIndex = 0;
  839. this.gbxCondition.TabStop = false;
  840. this.gbxCondition.Text = "查询条件 ▼";
  841. //
  842. // lblGoodsType
  843. //
  844. this.lblGoodsType.AutoSize = true;
  845. this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
  846. this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  847. this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
  848. this.lblGoodsType.Location = new System.Drawing.Point(360, 51);
  849. this.lblGoodsType.Name = "lblGoodsType";
  850. this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
  851. this.lblGoodsType.TabIndex = 23;
  852. this.lblGoodsType.Text = "产品类别";
  853. //
  854. // scbGoodsType
  855. //
  856. this.scbGoodsType.CheckedData = null;
  857. this.scbGoodsType.IsOnlyDisplayEnd = false;
  858. this.scbGoodsType.Location = new System.Drawing.Point(419, 47);
  859. this.scbGoodsType.Name = "scbGoodsType";
  860. this.scbGoodsType.Size = new System.Drawing.Size(120, 21);
  861. this.scbGoodsType.TabIndex = 22;
  862. //
  863. // txtGroutingUserCode
  864. //
  865. this.txtGroutingUserCode.BackColor = System.Drawing.SystemColors.Window;
  866. this.txtGroutingUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
  867. this.txtGroutingUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  868. this.txtGroutingUserCode.ErrorMessage = "";
  869. this.txtGroutingUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  870. this.txtGroutingUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  871. this.txtGroutingUserCode.Location = new System.Drawing.Point(419, 20);
  872. this.txtGroutingUserCode.Name = "txtGroutingUserCode";
  873. this.txtGroutingUserCode.Size = new System.Drawing.Size(120, 21);
  874. this.txtGroutingUserCode.TabIndex = 5;
  875. this.txtGroutingUserCode.TextValue = "";
  876. //
  877. // c_Label3
  878. //
  879. this.c_Label3.AutoSize = true;
  880. this.c_Label3.BackColor = System.Drawing.Color.Transparent;
  881. this.c_Label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  882. this.c_Label3.ForeColor = System.Drawing.SystemColors.ControlText;
  883. this.c_Label3.Location = new System.Drawing.Point(360, 24);
  884. this.c_Label3.Name = "c_Label3";
  885. this.c_Label3.Size = new System.Drawing.Size(53, 12);
  886. this.c_Label3.TabIndex = 4;
  887. this.c_Label3.Text = "成型工号";
  888. //
  889. // txtGroutingLineCode
  890. //
  891. this.txtGroutingLineCode.BackColor = System.Drawing.SystemColors.Window;
  892. this.txtGroutingLineCode.BackgroundColor = System.Drawing.SystemColors.Window;
  893. this.txtGroutingLineCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  894. this.txtGroutingLineCode.ErrorMessage = "";
  895. this.txtGroutingLineCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  896. this.txtGroutingLineCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  897. this.txtGroutingLineCode.Location = new System.Drawing.Point(234, 20);
  898. this.txtGroutingLineCode.Name = "txtGroutingLineCode";
  899. this.txtGroutingLineCode.Size = new System.Drawing.Size(120, 21);
  900. this.txtGroutingLineCode.TabIndex = 3;
  901. this.txtGroutingLineCode.TextValue = "";
  902. //
  903. // c_Label2
  904. //
  905. this.c_Label2.AutoSize = true;
  906. this.c_Label2.BackColor = System.Drawing.Color.Transparent;
  907. this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  908. this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
  909. this.c_Label2.Location = new System.Drawing.Point(163, 24);
  910. this.c_Label2.Name = "c_Label2";
  911. this.c_Label2.Size = new System.Drawing.Size(65, 12);
  912. this.c_Label2.TabIndex = 2;
  913. this.c_Label2.Text = "成型线编码";
  914. //
  915. // txtGoodCode
  916. //
  917. this.txtGoodCode.BackColor = System.Drawing.SystemColors.Window;
  918. this.txtGoodCode.BackgroundColor = System.Drawing.SystemColors.Window;
  919. this.txtGoodCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  920. this.txtGoodCode.ErrorMessage = "";
  921. this.txtGoodCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  922. this.txtGoodCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  923. this.txtGoodCode.Location = new System.Drawing.Point(234, 47);
  924. this.txtGoodCode.Name = "txtGoodCode";
  925. this.txtGoodCode.Size = new System.Drawing.Size(120, 21);
  926. this.txtGoodCode.TabIndex = 7;
  927. this.txtGoodCode.TextValue = "";
  928. //
  929. // c_Label1
  930. //
  931. this.c_Label1.AutoSize = true;
  932. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  933. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  934. this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  935. this.c_Label1.Location = new System.Drawing.Point(12, 24);
  936. this.c_Label1.Name = "c_Label1";
  937. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  938. this.c_Label1.TabIndex = 0;
  939. this.c_Label1.Text = "分析月份";
  940. //
  941. // c_Label4
  942. //
  943. this.c_Label4.AutoSize = true;
  944. this.c_Label4.BackColor = System.Drawing.Color.Transparent;
  945. this.c_Label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  946. this.c_Label4.ForeColor = System.Drawing.SystemColors.ControlText;
  947. this.c_Label4.Location = new System.Drawing.Point(174, 51);
  948. this.c_Label4.Name = "c_Label4";
  949. this.c_Label4.Size = new System.Drawing.Size(53, 12);
  950. this.c_Label4.TabIndex = 6;
  951. this.c_Label4.Text = "产品编码";
  952. //
  953. // dtpGDateStart
  954. //
  955. this.dtpGDateStart.CustomFormat = "yyyy-MM";
  956. this.dtpGDateStart.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  957. this.dtpGDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  958. this.dtpGDateStart.Location = new System.Drawing.Point(71, 20);
  959. this.dtpGDateStart.Name = "dtpGDateStart";
  960. this.dtpGDateStart.ShowUpDown = true;
  961. this.dtpGDateStart.Size = new System.Drawing.Size(86, 21);
  962. this.dtpGDateStart.TabIndex = 1;
  963. //
  964. // btnClearCondition
  965. //
  966. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  967. this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
  968. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  969. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  970. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  971. this.btnClearCondition.Location = new System.Drawing.Point(1195, 38);
  972. this.btnClearCondition.Name = "btnClearCondition";
  973. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  974. this.btnClearCondition.TabIndex = 10;
  975. this.btnClearCondition.Text = "清空条件(&C)";
  976. this.btnClearCondition.UseVisualStyleBackColor = true;
  977. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  978. //
  979. // btnSearch
  980. //
  981. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  982. this.btnSearch.BackColor = System.Drawing.Color.Transparent;
  983. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  984. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  985. this.btnSearch.ForeColor = System.Drawing.Color.White;
  986. this.btnSearch.Location = new System.Drawing.Point(1104, 38);
  987. this.btnSearch.Name = "btnSearch";
  988. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  989. this.btnSearch.TabIndex = 9;
  990. this.btnSearch.Text = "查询(&Q)";
  991. this.btnSearch.UseVisualStyleBackColor = true;
  992. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  993. //
  994. // dgvRptProcedure
  995. //
  996. this.dgvRptProcedure.AllowUserToAddRows = false;
  997. this.dgvRptProcedure.AllowUserToModifyRows = true;
  998. this.dgvRptProcedure.AllowUserToOrderColumns = true;
  999. this.dgvRptProcedure.AllowUserToSortRows = false;
  1000. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1001. this.dgvRptProcedure.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1002. this.dgvRptProcedure.BorderStyle = System.Windows.Forms.BorderStyle.None;
  1003. this.dgvRptProcedure.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1004. this.dgvRptProcedure.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1005. this.dgvRptProcedure.CellHeight = 23;
  1006. this.dgvRptProcedure.ChildNodeColumnName = null;
  1007. this.dgvRptProcedure.ChildNodeColumnText = null;
  1008. this.dgvRptProcedure.ColumnDeep = 2;
  1009. this.dgvRptProcedure.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1010. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1011. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1012. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1013. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1014. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1015. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1016. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1017. this.dgvRptProcedure.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1018. this.dgvRptProcedure.ColumnHeadersHeight = 46;
  1019. this.dgvRptProcedure.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1020. this.dgvRptProcedure.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1021. this.BuildingNo,
  1022. this.FloorNo,
  1023. this.GroutingLineNo,
  1024. this.groutinglinecode,
  1025. this.usercode,
  1026. this.goodscode,
  1027. this.goodsname,
  1028. this.GOODSSPECIFICATION,
  1029. this.goodstypename,
  1030. this.MouldQuantity,
  1031. this.c01,
  1032. this.d01,
  1033. this.c02,
  1034. this.d02,
  1035. this.c03,
  1036. this.d03,
  1037. this.c04,
  1038. this.d04,
  1039. this.c05,
  1040. this.d05,
  1041. this.c06,
  1042. this.d06,
  1043. this.c07,
  1044. this.d07,
  1045. this.c08,
  1046. this.d08,
  1047. this.c09,
  1048. this.d09,
  1049. this.c10,
  1050. this.d10,
  1051. this.c11,
  1052. this.d11,
  1053. this.c12,
  1054. this.d12,
  1055. this.c13,
  1056. this.d13,
  1057. this.c14,
  1058. this.d14,
  1059. this.c15,
  1060. this.d15,
  1061. this.c16,
  1062. this.d16,
  1063. this.c17,
  1064. this.d17,
  1065. this.c18,
  1066. this.d18,
  1067. this.c19,
  1068. this.d19,
  1069. this.c20,
  1070. this.d20,
  1071. this.c21,
  1072. this.d21,
  1073. this.c22,
  1074. this.d22,
  1075. this.c23,
  1076. this.d23,
  1077. this.c24,
  1078. this.d24,
  1079. this.c25,
  1080. this.d25,
  1081. this.c26,
  1082. this.d26,
  1083. this.c27,
  1084. this.d27,
  1085. this.c28,
  1086. this.d28,
  1087. this.c29,
  1088. this.d29,
  1089. this.c30,
  1090. this.d30,
  1091. this.c31,
  1092. this.d31});
  1093. this.dgvRptProcedure.ColumnTreeView = new System.Windows.Forms.TreeView[] {
  1094. this.treeView1};
  1095. this.dgvRptProcedure.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)));
  1096. this.dgvRptProcedure.Dock = System.Windows.Forms.DockStyle.Fill;
  1097. this.dgvRptProcedure.DynamicColumnName = "";
  1098. this.dgvRptProcedure.EnableHeadersVisualStyles = false;
  1099. this.dgvRptProcedure.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1100. this.dgvRptProcedure.FormatQuantityColumns = null;
  1101. this.dgvRptProcedure.HorizontalMergeColumn = null;
  1102. this.dgvRptProcedure.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  1103. this.dgvRptProcedure.IsAutoCountSum = false;
  1104. this.dgvRptProcedure.IsAutoResizeColumns = false;
  1105. this.dgvRptProcedure.IsClickF12 = false;
  1106. this.dgvRptProcedure.IsOpenMergeCellFlag = false;
  1107. this.dgvRptProcedure.IsSubTotalFlag = false;
  1108. this.dgvRptProcedure.IsTopDeep = false;
  1109. this.dgvRptProcedure.Location = new System.Drawing.Point(0, 0);
  1110. this.dgvRptProcedure.Margin = new System.Windows.Forms.Padding(0);
  1111. this.dgvRptProcedure.MergeColumnNames = null;
  1112. this.dgvRptProcedure.MergeDetailColumnNames = null;
  1113. this.dgvRptProcedure.MergeDetailOnlyColumn = null;
  1114. this.dgvRptProcedure.MergeOnlyColumn = null;
  1115. this.dgvRptProcedure.MultiSelect = false;
  1116. this.dgvRptProcedure.Name = "dgvRptProcedure";
  1117. this.dgvRptProcedure.ReadOnly = true;
  1118. this.dgvRptProcedure.RefreshAtHscroll = false;
  1119. this.dgvRptProcedure.RowHeadersWidth = 50;
  1120. this.dgvRptProcedure.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1121. dataGridViewCellStyle66.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1122. this.dgvRptProcedure.RowsDefaultCellStyle = dataGridViewCellStyle66;
  1123. this.dgvRptProcedure.RowTemplate.Height = 21;
  1124. this.dgvRptProcedure.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1125. this.dgvRptProcedure.Size = new System.Drawing.Size(1278, 501);
  1126. this.dgvRptProcedure.SortOrderColumnName = null;
  1127. this.dgvRptProcedure.TabIndex = 1;
  1128. this.dgvRptProcedure.Tag = true;
  1129. this.dgvRptProcedure.TotalSumColumns = null;
  1130. this.dgvRptProcedure.ViewRowFilter = "";
  1131. this.dgvRptProcedure.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvRptProcedure_CellContentClick);
  1132. //
  1133. // tabControl1
  1134. //
  1135. this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1136. | System.Windows.Forms.AnchorStyles.Left)
  1137. | System.Windows.Forms.AnchorStyles.Right)));
  1138. this.tabControl1.Controls.Add(this.tabPage1);
  1139. this.tabControl1.Controls.Add(this.tabPage2);
  1140. this.tabControl1.Controls.Add(this.tabPage3);
  1141. this.tabControl1.Location = new System.Drawing.Point(0, 119);
  1142. this.tabControl1.Name = "tabControl1";
  1143. this.tabControl1.SelectedIndex = 0;
  1144. this.tabControl1.Size = new System.Drawing.Size(1286, 527);
  1145. this.tabControl1.TabIndex = 34;
  1146. //
  1147. // tabPage1
  1148. //
  1149. this.tabPage1.Controls.Add(this.dgvRptProcedure);
  1150. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  1151. this.tabPage1.Name = "tabPage1";
  1152. this.tabPage1.Size = new System.Drawing.Size(1278, 501);
  1153. this.tabPage1.TabIndex = 0;
  1154. this.tabPage1.Text = "成型工注浆成交数";
  1155. this.tabPage1.UseVisualStyleBackColor = true;
  1156. //
  1157. // tabPage2
  1158. //
  1159. this.tabPage2.Controls.Add(this.dgvGC);
  1160. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  1161. this.tabPage2.Name = "tabPage2";
  1162. this.tabPage2.Size = new System.Drawing.Size(1278, 501);
  1163. this.tabPage2.TabIndex = 1;
  1164. this.tabPage2.Text = "成型工注浆成坯数";
  1165. this.tabPage2.UseVisualStyleBackColor = true;
  1166. //
  1167. // dgvGC
  1168. //
  1169. this.dgvGC.AllowUserToAddRows = false;
  1170. this.dgvGC.AllowUserToDeleteRows = false;
  1171. this.dgvGC.AllowUserToModifyRows = true;
  1172. this.dgvGC.AllowUserToSortRows = false;
  1173. dataGridViewCellStyle67.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1174. this.dgvGC.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle67;
  1175. this.dgvGC.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1176. this.dgvGC.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1177. this.dgvGC.CellHeight = 23;
  1178. this.dgvGC.ChildNodeColumnName = null;
  1179. this.dgvGC.ChildNodeColumnText = null;
  1180. this.dgvGC.ColumnDeep = 1;
  1181. this.dgvGC.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1182. dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1183. dataGridViewCellStyle68.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1184. dataGridViewCellStyle68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1185. dataGridViewCellStyle68.ForeColor = System.Drawing.Color.White;
  1186. dataGridViewCellStyle68.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1187. dataGridViewCellStyle68.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1188. dataGridViewCellStyle68.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1189. this.dgvGC.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle68;
  1190. this.dgvGC.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1191. this.dgvGC.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1192. this.dataGridViewTextBoxColumn1,
  1193. this.dataGridViewTextBoxColumn2,
  1194. this.dataGridViewTextBoxColumn3,
  1195. this.dataGridViewTextBoxColumn4,
  1196. this.dataGridViewTextBoxColumn5,
  1197. this.dataGridViewTextBoxColumn6,
  1198. this.goodstwo,
  1199. this.dataGridViewTextBoxColumn7,
  1200. this.dataGridViewTextBoxColumn8,
  1201. this.dataGridViewTextBoxColumn9,
  1202. this.dataGridViewTextBoxColumn10,
  1203. this.dataGridViewTextBoxColumn12,
  1204. this.dataGridViewTextBoxColumn14,
  1205. this.dataGridViewTextBoxColumn16,
  1206. this.dataGridViewTextBoxColumn18,
  1207. this.dataGridViewTextBoxColumn20,
  1208. this.dataGridViewTextBoxColumn22,
  1209. this.dataGridViewTextBoxColumn24,
  1210. this.dataGridViewTextBoxColumn26,
  1211. this.dataGridViewTextBoxColumn28,
  1212. this.dataGridViewTextBoxColumn30,
  1213. this.dataGridViewTextBoxColumn32,
  1214. this.dataGridViewTextBoxColumn34,
  1215. this.dataGridViewTextBoxColumn36,
  1216. this.dataGridViewTextBoxColumn38,
  1217. this.dataGridViewTextBoxColumn40,
  1218. this.dataGridViewTextBoxColumn42,
  1219. this.dataGridViewTextBoxColumn44,
  1220. this.dataGridViewTextBoxColumn46,
  1221. this.dataGridViewTextBoxColumn48,
  1222. this.dataGridViewTextBoxColumn50,
  1223. this.dataGridViewTextBoxColumn52,
  1224. this.dataGridViewTextBoxColumn54,
  1225. this.dataGridViewTextBoxColumn56,
  1226. this.dataGridViewTextBoxColumn58,
  1227. this.dataGridViewTextBoxColumn60,
  1228. this.dataGridViewTextBoxColumn62,
  1229. this.dataGridViewTextBoxColumn64,
  1230. this.dataGridViewTextBoxColumn66,
  1231. this.dataGridViewTextBoxColumn68,
  1232. this.dataGridViewTextBoxColumn70});
  1233. this.dgvGC.ColumnTreeView = null;
  1234. this.dgvGC.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)));
  1235. this.dgvGC.Dock = System.Windows.Forms.DockStyle.Fill;
  1236. this.dgvGC.DynamicColumnName = "";
  1237. this.dgvGC.EnableHeadersVisualStyles = false;
  1238. this.dgvGC.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1239. this.dgvGC.FormatQuantityColumns = null;
  1240. this.dgvGC.HorizontalMergeColumn = null;
  1241. this.dgvGC.IsAutoCountSum = false;
  1242. this.dgvGC.IsAutoResizeColumns = false;
  1243. this.dgvGC.IsClickF12 = false;
  1244. this.dgvGC.IsOpenMergeCellFlag = false;
  1245. this.dgvGC.IsSubTotalFlag = false;
  1246. this.dgvGC.IsTopDeep = false;
  1247. this.dgvGC.Location = new System.Drawing.Point(0, 0);
  1248. this.dgvGC.Margin = new System.Windows.Forms.Padding(0);
  1249. this.dgvGC.MergeColumnNames = null;
  1250. this.dgvGC.MergeDetailColumnNames = null;
  1251. this.dgvGC.MergeDetailOnlyColumn = null;
  1252. this.dgvGC.MergeOnlyColumn = null;
  1253. this.dgvGC.MultiSelect = false;
  1254. this.dgvGC.Name = "dgvGC";
  1255. this.dgvGC.ReadOnly = true;
  1256. this.dgvGC.RefreshAtHscroll = false;
  1257. this.dgvGC.RowHeadersWidth = 50;
  1258. this.dgvGC.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1259. dataGridViewCellStyle101.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1260. this.dgvGC.RowsDefaultCellStyle = dataGridViewCellStyle101;
  1261. this.dgvGC.RowTemplate.Height = 21;
  1262. this.dgvGC.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1263. this.dgvGC.Size = new System.Drawing.Size(1278, 501);
  1264. this.dgvGC.SortOrderColumnName = null;
  1265. this.dgvGC.TabIndex = 2;
  1266. this.dgvGC.Tag = true;
  1267. this.dgvGC.TotalSumColumns = null;
  1268. this.dgvGC.ViewRowFilter = "";
  1269. //
  1270. // dataGridViewTextBoxColumn1
  1271. //
  1272. this.dataGridViewTextBoxColumn1.DataPropertyName = "BuildingNo";
  1273. this.dataGridViewTextBoxColumn1.HeaderText = "楼号";
  1274. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1275. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  1276. //
  1277. // dataGridViewTextBoxColumn2
  1278. //
  1279. this.dataGridViewTextBoxColumn2.DataPropertyName = "FloorNo";
  1280. this.dataGridViewTextBoxColumn2.HeaderText = "楼层";
  1281. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1282. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  1283. //
  1284. // dataGridViewTextBoxColumn3
  1285. //
  1286. this.dataGridViewTextBoxColumn3.DataPropertyName = "GroutingLineNo";
  1287. this.dataGridViewTextBoxColumn3.HeaderText = "工段";
  1288. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1289. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  1290. //
  1291. // dataGridViewTextBoxColumn4
  1292. //
  1293. this.dataGridViewTextBoxColumn4.DataPropertyName = "groutinglinecode";
  1294. this.dataGridViewTextBoxColumn4.HeaderText = "成型线编码";
  1295. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  1296. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  1297. //
  1298. // dataGridViewTextBoxColumn5
  1299. //
  1300. this.dataGridViewTextBoxColumn5.DataPropertyName = "usercode";
  1301. this.dataGridViewTextBoxColumn5.HeaderText = "成型工号";
  1302. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  1303. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  1304. //
  1305. // dataGridViewTextBoxColumn6
  1306. //
  1307. this.dataGridViewTextBoxColumn6.DataPropertyName = "goodscode";
  1308. this.dataGridViewTextBoxColumn6.HeaderText = "产品编码";
  1309. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  1310. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  1311. //
  1312. // goodstwo
  1313. //
  1314. this.goodstwo.DataPropertyName = "goodsname";
  1315. this.goodstwo.HeaderText = "产品名称";
  1316. this.goodstwo.Name = "goodstwo";
  1317. this.goodstwo.ReadOnly = true;
  1318. //
  1319. // dataGridViewTextBoxColumn7
  1320. //
  1321. this.dataGridViewTextBoxColumn7.DataPropertyName = "GOODSSPECIFICATION";
  1322. this.dataGridViewTextBoxColumn7.HeaderText = "产品规格";
  1323. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1324. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  1325. //
  1326. // dataGridViewTextBoxColumn8
  1327. //
  1328. this.dataGridViewTextBoxColumn8.DataPropertyName = "goodstypename";
  1329. this.dataGridViewTextBoxColumn8.HeaderText = "产品类别";
  1330. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1331. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  1332. //
  1333. // dataGridViewTextBoxColumn9
  1334. //
  1335. this.dataGridViewTextBoxColumn9.DataPropertyName = "MouldQuantity";
  1336. dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1337. this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle69;
  1338. this.dataGridViewTextBoxColumn9.HeaderText = "模具数";
  1339. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1340. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  1341. //
  1342. // dataGridViewTextBoxColumn10
  1343. //
  1344. this.dataGridViewTextBoxColumn10.DataPropertyName = "c01";
  1345. dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1346. this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle70;
  1347. this.dataGridViewTextBoxColumn10.HeaderText = "1日";
  1348. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1349. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  1350. //
  1351. // dataGridViewTextBoxColumn12
  1352. //
  1353. this.dataGridViewTextBoxColumn12.DataPropertyName = "c02";
  1354. dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1355. this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle71;
  1356. this.dataGridViewTextBoxColumn12.HeaderText = "2日";
  1357. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1358. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  1359. //
  1360. // dataGridViewTextBoxColumn14
  1361. //
  1362. this.dataGridViewTextBoxColumn14.DataPropertyName = "c03";
  1363. dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1364. this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle72;
  1365. this.dataGridViewTextBoxColumn14.HeaderText = "3日";
  1366. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1367. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  1368. //
  1369. // dataGridViewTextBoxColumn16
  1370. //
  1371. this.dataGridViewTextBoxColumn16.DataPropertyName = "c04";
  1372. dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1373. this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle73;
  1374. this.dataGridViewTextBoxColumn16.HeaderText = "4日";
  1375. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1376. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  1377. //
  1378. // dataGridViewTextBoxColumn18
  1379. //
  1380. this.dataGridViewTextBoxColumn18.DataPropertyName = "c05";
  1381. dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1382. this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle74;
  1383. this.dataGridViewTextBoxColumn18.HeaderText = "5日";
  1384. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1385. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  1386. //
  1387. // dataGridViewTextBoxColumn20
  1388. //
  1389. this.dataGridViewTextBoxColumn20.DataPropertyName = "c06";
  1390. dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1391. this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle75;
  1392. this.dataGridViewTextBoxColumn20.HeaderText = "6日";
  1393. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1394. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  1395. //
  1396. // dataGridViewTextBoxColumn22
  1397. //
  1398. this.dataGridViewTextBoxColumn22.DataPropertyName = "c07";
  1399. dataGridViewCellStyle76.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1400. this.dataGridViewTextBoxColumn22.DefaultCellStyle = dataGridViewCellStyle76;
  1401. this.dataGridViewTextBoxColumn22.HeaderText = "7日";
  1402. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1403. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1404. //
  1405. // dataGridViewTextBoxColumn24
  1406. //
  1407. this.dataGridViewTextBoxColumn24.DataPropertyName = "c08";
  1408. dataGridViewCellStyle77.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1409. this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle77;
  1410. this.dataGridViewTextBoxColumn24.HeaderText = "8日";
  1411. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1412. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  1413. //
  1414. // dataGridViewTextBoxColumn26
  1415. //
  1416. this.dataGridViewTextBoxColumn26.DataPropertyName = "c09";
  1417. dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1418. this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle78;
  1419. this.dataGridViewTextBoxColumn26.HeaderText = "9日";
  1420. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1421. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  1422. //
  1423. // dataGridViewTextBoxColumn28
  1424. //
  1425. this.dataGridViewTextBoxColumn28.DataPropertyName = "c10";
  1426. dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1427. this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle79;
  1428. this.dataGridViewTextBoxColumn28.HeaderText = "10日";
  1429. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1430. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  1431. //
  1432. // dataGridViewTextBoxColumn30
  1433. //
  1434. this.dataGridViewTextBoxColumn30.DataPropertyName = "c11";
  1435. dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1436. this.dataGridViewTextBoxColumn30.DefaultCellStyle = dataGridViewCellStyle80;
  1437. this.dataGridViewTextBoxColumn30.HeaderText = "11日";
  1438. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  1439. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  1440. //
  1441. // dataGridViewTextBoxColumn32
  1442. //
  1443. this.dataGridViewTextBoxColumn32.DataPropertyName = "c12";
  1444. dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1445. this.dataGridViewTextBoxColumn32.DefaultCellStyle = dataGridViewCellStyle81;
  1446. this.dataGridViewTextBoxColumn32.HeaderText = "12日";
  1447. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  1448. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  1449. //
  1450. // dataGridViewTextBoxColumn34
  1451. //
  1452. this.dataGridViewTextBoxColumn34.DataPropertyName = "c13";
  1453. dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1454. this.dataGridViewTextBoxColumn34.DefaultCellStyle = dataGridViewCellStyle82;
  1455. this.dataGridViewTextBoxColumn34.HeaderText = "13日";
  1456. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  1457. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  1458. //
  1459. // dataGridViewTextBoxColumn36
  1460. //
  1461. this.dataGridViewTextBoxColumn36.DataPropertyName = "c14";
  1462. dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1463. this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle83;
  1464. this.dataGridViewTextBoxColumn36.HeaderText = "14日";
  1465. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1466. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1467. //
  1468. // dataGridViewTextBoxColumn38
  1469. //
  1470. this.dataGridViewTextBoxColumn38.DataPropertyName = "c15";
  1471. dataGridViewCellStyle84.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1472. this.dataGridViewTextBoxColumn38.DefaultCellStyle = dataGridViewCellStyle84;
  1473. this.dataGridViewTextBoxColumn38.HeaderText = "15日";
  1474. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1475. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  1476. //
  1477. // dataGridViewTextBoxColumn40
  1478. //
  1479. this.dataGridViewTextBoxColumn40.DataPropertyName = "c16";
  1480. dataGridViewCellStyle85.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1481. this.dataGridViewTextBoxColumn40.DefaultCellStyle = dataGridViewCellStyle85;
  1482. this.dataGridViewTextBoxColumn40.HeaderText = "16日";
  1483. this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
  1484. this.dataGridViewTextBoxColumn40.ReadOnly = true;
  1485. //
  1486. // dataGridViewTextBoxColumn42
  1487. //
  1488. this.dataGridViewTextBoxColumn42.DataPropertyName = "c17";
  1489. dataGridViewCellStyle86.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1490. this.dataGridViewTextBoxColumn42.DefaultCellStyle = dataGridViewCellStyle86;
  1491. this.dataGridViewTextBoxColumn42.HeaderText = "17日";
  1492. this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
  1493. this.dataGridViewTextBoxColumn42.ReadOnly = true;
  1494. //
  1495. // dataGridViewTextBoxColumn44
  1496. //
  1497. this.dataGridViewTextBoxColumn44.DataPropertyName = "c18";
  1498. dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1499. this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle87;
  1500. this.dataGridViewTextBoxColumn44.HeaderText = "18日";
  1501. this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
  1502. this.dataGridViewTextBoxColumn44.ReadOnly = true;
  1503. //
  1504. // dataGridViewTextBoxColumn46
  1505. //
  1506. this.dataGridViewTextBoxColumn46.DataPropertyName = "c19";
  1507. dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1508. this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle88;
  1509. this.dataGridViewTextBoxColumn46.HeaderText = "19日";
  1510. this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
  1511. this.dataGridViewTextBoxColumn46.ReadOnly = true;
  1512. //
  1513. // dataGridViewTextBoxColumn48
  1514. //
  1515. this.dataGridViewTextBoxColumn48.DataPropertyName = "c20";
  1516. dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1517. this.dataGridViewTextBoxColumn48.DefaultCellStyle = dataGridViewCellStyle89;
  1518. this.dataGridViewTextBoxColumn48.HeaderText = "20日";
  1519. this.dataGridViewTextBoxColumn48.Name = "dataGridViewTextBoxColumn48";
  1520. this.dataGridViewTextBoxColumn48.ReadOnly = true;
  1521. //
  1522. // dataGridViewTextBoxColumn50
  1523. //
  1524. this.dataGridViewTextBoxColumn50.DataPropertyName = "c21";
  1525. dataGridViewCellStyle90.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1526. this.dataGridViewTextBoxColumn50.DefaultCellStyle = dataGridViewCellStyle90;
  1527. this.dataGridViewTextBoxColumn50.HeaderText = "21日";
  1528. this.dataGridViewTextBoxColumn50.Name = "dataGridViewTextBoxColumn50";
  1529. this.dataGridViewTextBoxColumn50.ReadOnly = true;
  1530. //
  1531. // dataGridViewTextBoxColumn52
  1532. //
  1533. this.dataGridViewTextBoxColumn52.DataPropertyName = "c22";
  1534. dataGridViewCellStyle91.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1535. this.dataGridViewTextBoxColumn52.DefaultCellStyle = dataGridViewCellStyle91;
  1536. this.dataGridViewTextBoxColumn52.HeaderText = "22日";
  1537. this.dataGridViewTextBoxColumn52.Name = "dataGridViewTextBoxColumn52";
  1538. this.dataGridViewTextBoxColumn52.ReadOnly = true;
  1539. //
  1540. // dataGridViewTextBoxColumn54
  1541. //
  1542. this.dataGridViewTextBoxColumn54.DataPropertyName = "c23";
  1543. dataGridViewCellStyle92.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1544. this.dataGridViewTextBoxColumn54.DefaultCellStyle = dataGridViewCellStyle92;
  1545. this.dataGridViewTextBoxColumn54.HeaderText = "23日";
  1546. this.dataGridViewTextBoxColumn54.Name = "dataGridViewTextBoxColumn54";
  1547. this.dataGridViewTextBoxColumn54.ReadOnly = true;
  1548. //
  1549. // dataGridViewTextBoxColumn56
  1550. //
  1551. this.dataGridViewTextBoxColumn56.DataPropertyName = "c24";
  1552. dataGridViewCellStyle93.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1553. this.dataGridViewTextBoxColumn56.DefaultCellStyle = dataGridViewCellStyle93;
  1554. this.dataGridViewTextBoxColumn56.HeaderText = "24日";
  1555. this.dataGridViewTextBoxColumn56.Name = "dataGridViewTextBoxColumn56";
  1556. this.dataGridViewTextBoxColumn56.ReadOnly = true;
  1557. //
  1558. // dataGridViewTextBoxColumn58
  1559. //
  1560. this.dataGridViewTextBoxColumn58.DataPropertyName = "c25";
  1561. dataGridViewCellStyle94.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1562. this.dataGridViewTextBoxColumn58.DefaultCellStyle = dataGridViewCellStyle94;
  1563. this.dataGridViewTextBoxColumn58.HeaderText = "25日";
  1564. this.dataGridViewTextBoxColumn58.Name = "dataGridViewTextBoxColumn58";
  1565. this.dataGridViewTextBoxColumn58.ReadOnly = true;
  1566. //
  1567. // dataGridViewTextBoxColumn60
  1568. //
  1569. this.dataGridViewTextBoxColumn60.DataPropertyName = "c26";
  1570. dataGridViewCellStyle95.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1571. this.dataGridViewTextBoxColumn60.DefaultCellStyle = dataGridViewCellStyle95;
  1572. this.dataGridViewTextBoxColumn60.HeaderText = "26日";
  1573. this.dataGridViewTextBoxColumn60.Name = "dataGridViewTextBoxColumn60";
  1574. this.dataGridViewTextBoxColumn60.ReadOnly = true;
  1575. //
  1576. // dataGridViewTextBoxColumn62
  1577. //
  1578. this.dataGridViewTextBoxColumn62.DataPropertyName = "c27";
  1579. dataGridViewCellStyle96.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1580. this.dataGridViewTextBoxColumn62.DefaultCellStyle = dataGridViewCellStyle96;
  1581. this.dataGridViewTextBoxColumn62.HeaderText = "27日";
  1582. this.dataGridViewTextBoxColumn62.Name = "dataGridViewTextBoxColumn62";
  1583. this.dataGridViewTextBoxColumn62.ReadOnly = true;
  1584. //
  1585. // dataGridViewTextBoxColumn64
  1586. //
  1587. this.dataGridViewTextBoxColumn64.DataPropertyName = "c28";
  1588. dataGridViewCellStyle97.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1589. this.dataGridViewTextBoxColumn64.DefaultCellStyle = dataGridViewCellStyle97;
  1590. this.dataGridViewTextBoxColumn64.HeaderText = "28日";
  1591. this.dataGridViewTextBoxColumn64.Name = "dataGridViewTextBoxColumn64";
  1592. this.dataGridViewTextBoxColumn64.ReadOnly = true;
  1593. //
  1594. // dataGridViewTextBoxColumn66
  1595. //
  1596. this.dataGridViewTextBoxColumn66.DataPropertyName = "c29";
  1597. dataGridViewCellStyle98.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1598. this.dataGridViewTextBoxColumn66.DefaultCellStyle = dataGridViewCellStyle98;
  1599. this.dataGridViewTextBoxColumn66.HeaderText = "29日";
  1600. this.dataGridViewTextBoxColumn66.Name = "dataGridViewTextBoxColumn66";
  1601. this.dataGridViewTextBoxColumn66.ReadOnly = true;
  1602. //
  1603. // dataGridViewTextBoxColumn68
  1604. //
  1605. this.dataGridViewTextBoxColumn68.DataPropertyName = "c30";
  1606. dataGridViewCellStyle99.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1607. this.dataGridViewTextBoxColumn68.DefaultCellStyle = dataGridViewCellStyle99;
  1608. this.dataGridViewTextBoxColumn68.HeaderText = "30日";
  1609. this.dataGridViewTextBoxColumn68.Name = "dataGridViewTextBoxColumn68";
  1610. this.dataGridViewTextBoxColumn68.ReadOnly = true;
  1611. //
  1612. // dataGridViewTextBoxColumn70
  1613. //
  1614. this.dataGridViewTextBoxColumn70.DataPropertyName = "c31";
  1615. dataGridViewCellStyle100.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1616. this.dataGridViewTextBoxColumn70.DefaultCellStyle = dataGridViewCellStyle100;
  1617. this.dataGridViewTextBoxColumn70.HeaderText = "31日";
  1618. this.dataGridViewTextBoxColumn70.Name = "dataGridViewTextBoxColumn70";
  1619. this.dataGridViewTextBoxColumn70.ReadOnly = true;
  1620. //
  1621. // tabPage3
  1622. //
  1623. this.tabPage3.Controls.Add(this.dgvGD);
  1624. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  1625. this.tabPage3.Name = "tabPage3";
  1626. this.tabPage3.Size = new System.Drawing.Size(1278, 501);
  1627. this.tabPage3.TabIndex = 2;
  1628. this.tabPage3.Text = "成型工注浆交坯数";
  1629. this.tabPage3.UseVisualStyleBackColor = true;
  1630. //
  1631. // dgvGD
  1632. //
  1633. this.dgvGD.AllowUserToAddRows = false;
  1634. this.dgvGD.AllowUserToDeleteRows = false;
  1635. this.dgvGD.AllowUserToModifyRows = true;
  1636. this.dgvGD.AllowUserToSortRows = false;
  1637. dataGridViewCellStyle102.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1638. this.dgvGD.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle102;
  1639. this.dgvGD.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1640. this.dgvGD.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1641. this.dgvGD.CellHeight = 23;
  1642. this.dgvGD.ChildNodeColumnName = null;
  1643. this.dgvGD.ChildNodeColumnText = null;
  1644. this.dgvGD.ColumnDeep = 1;
  1645. this.dgvGD.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1646. dataGridViewCellStyle103.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1647. dataGridViewCellStyle103.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1648. dataGridViewCellStyle103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1649. dataGridViewCellStyle103.ForeColor = System.Drawing.Color.White;
  1650. dataGridViewCellStyle103.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1651. dataGridViewCellStyle103.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1652. dataGridViewCellStyle103.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1653. this.dgvGD.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle103;
  1654. this.dgvGD.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1655. this.dgvGD.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1656. this.dataGridViewTextBoxColumn11,
  1657. this.dataGridViewTextBoxColumn13,
  1658. this.dataGridViewTextBoxColumn15,
  1659. this.dataGridViewTextBoxColumn17,
  1660. this.dataGridViewTextBoxColumn19,
  1661. this.dataGridViewTextBoxColumn21,
  1662. this.goodsnamework,
  1663. this.dataGridViewTextBoxColumn23,
  1664. this.dataGridViewTextBoxColumn25,
  1665. this.dataGridViewTextBoxColumn27,
  1666. this.dataGridViewTextBoxColumn29,
  1667. this.dataGridViewTextBoxColumn31,
  1668. this.dataGridViewTextBoxColumn33,
  1669. this.dataGridViewTextBoxColumn35,
  1670. this.dataGridViewTextBoxColumn37,
  1671. this.dataGridViewTextBoxColumn39,
  1672. this.dataGridViewTextBoxColumn41,
  1673. this.dataGridViewTextBoxColumn43,
  1674. this.dataGridViewTextBoxColumn45,
  1675. this.dataGridViewTextBoxColumn47,
  1676. this.dataGridViewTextBoxColumn49,
  1677. this.dataGridViewTextBoxColumn51,
  1678. this.dataGridViewTextBoxColumn53,
  1679. this.dataGridViewTextBoxColumn55,
  1680. this.dataGridViewTextBoxColumn57,
  1681. this.dataGridViewTextBoxColumn59,
  1682. this.dataGridViewTextBoxColumn61,
  1683. this.dataGridViewTextBoxColumn63,
  1684. this.dataGridViewTextBoxColumn65,
  1685. this.dataGridViewTextBoxColumn67,
  1686. this.dataGridViewTextBoxColumn69,
  1687. this.dataGridViewTextBoxColumn71,
  1688. this.dataGridViewTextBoxColumn72,
  1689. this.dataGridViewTextBoxColumn73,
  1690. this.dataGridViewTextBoxColumn74,
  1691. this.dataGridViewTextBoxColumn75,
  1692. this.dataGridViewTextBoxColumn76,
  1693. this.dataGridViewTextBoxColumn77,
  1694. this.dataGridViewTextBoxColumn78,
  1695. this.dataGridViewTextBoxColumn79,
  1696. this.dataGridViewTextBoxColumn80});
  1697. this.dgvGD.ColumnTreeView = null;
  1698. this.dgvGD.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)));
  1699. this.dgvGD.Dock = System.Windows.Forms.DockStyle.Fill;
  1700. this.dgvGD.DynamicColumnName = "";
  1701. this.dgvGD.EnableHeadersVisualStyles = false;
  1702. this.dgvGD.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1703. this.dgvGD.FormatQuantityColumns = null;
  1704. this.dgvGD.HorizontalMergeColumn = null;
  1705. this.dgvGD.IsAutoCountSum = false;
  1706. this.dgvGD.IsAutoResizeColumns = false;
  1707. this.dgvGD.IsClickF12 = false;
  1708. this.dgvGD.IsOpenMergeCellFlag = false;
  1709. this.dgvGD.IsSubTotalFlag = false;
  1710. this.dgvGD.IsTopDeep = false;
  1711. this.dgvGD.Location = new System.Drawing.Point(0, 0);
  1712. this.dgvGD.Margin = new System.Windows.Forms.Padding(0);
  1713. this.dgvGD.MergeColumnNames = null;
  1714. this.dgvGD.MergeDetailColumnNames = null;
  1715. this.dgvGD.MergeDetailOnlyColumn = null;
  1716. this.dgvGD.MergeOnlyColumn = null;
  1717. this.dgvGD.MultiSelect = false;
  1718. this.dgvGD.Name = "dgvGD";
  1719. this.dgvGD.ReadOnly = true;
  1720. this.dgvGD.RefreshAtHscroll = false;
  1721. this.dgvGD.RowHeadersWidth = 50;
  1722. this.dgvGD.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1723. dataGridViewCellStyle136.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1724. this.dgvGD.RowsDefaultCellStyle = dataGridViewCellStyle136;
  1725. this.dgvGD.RowTemplate.Height = 21;
  1726. this.dgvGD.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1727. this.dgvGD.Size = new System.Drawing.Size(1278, 501);
  1728. this.dgvGD.SortOrderColumnName = null;
  1729. this.dgvGD.TabIndex = 3;
  1730. this.dgvGD.Tag = true;
  1731. this.dgvGD.TotalSumColumns = null;
  1732. this.dgvGD.ViewRowFilter = "";
  1733. //
  1734. // dataGridViewTextBoxColumn11
  1735. //
  1736. this.dataGridViewTextBoxColumn11.DataPropertyName = "BuildingNo";
  1737. this.dataGridViewTextBoxColumn11.HeaderText = "楼号";
  1738. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1739. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  1740. //
  1741. // dataGridViewTextBoxColumn13
  1742. //
  1743. this.dataGridViewTextBoxColumn13.DataPropertyName = "FloorNo";
  1744. this.dataGridViewTextBoxColumn13.HeaderText = "楼层";
  1745. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1746. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  1747. //
  1748. // dataGridViewTextBoxColumn15
  1749. //
  1750. this.dataGridViewTextBoxColumn15.DataPropertyName = "GroutingLineNo";
  1751. this.dataGridViewTextBoxColumn15.HeaderText = "工段";
  1752. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1753. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  1754. //
  1755. // dataGridViewTextBoxColumn17
  1756. //
  1757. this.dataGridViewTextBoxColumn17.DataPropertyName = "groutinglinecode";
  1758. this.dataGridViewTextBoxColumn17.HeaderText = "成型线编码";
  1759. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1760. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  1761. //
  1762. // dataGridViewTextBoxColumn19
  1763. //
  1764. this.dataGridViewTextBoxColumn19.DataPropertyName = "usercode";
  1765. this.dataGridViewTextBoxColumn19.HeaderText = "成型工号";
  1766. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1767. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  1768. //
  1769. // dataGridViewTextBoxColumn21
  1770. //
  1771. this.dataGridViewTextBoxColumn21.DataPropertyName = "goodscode";
  1772. this.dataGridViewTextBoxColumn21.HeaderText = "产品编码";
  1773. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1774. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  1775. //
  1776. // goodsnamework
  1777. //
  1778. this.goodsnamework.DataPropertyName = "goodsname";
  1779. this.goodsnamework.HeaderText = "产品名称";
  1780. this.goodsnamework.Name = "goodsnamework";
  1781. this.goodsnamework.ReadOnly = true;
  1782. //
  1783. // dataGridViewTextBoxColumn23
  1784. //
  1785. this.dataGridViewTextBoxColumn23.DataPropertyName = "GOODSSPECIFICATION";
  1786. this.dataGridViewTextBoxColumn23.HeaderText = "产品规格";
  1787. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1788. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1789. //
  1790. // dataGridViewTextBoxColumn25
  1791. //
  1792. this.dataGridViewTextBoxColumn25.DataPropertyName = "goodstypename";
  1793. this.dataGridViewTextBoxColumn25.HeaderText = "产品类别";
  1794. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  1795. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  1796. //
  1797. // dataGridViewTextBoxColumn27
  1798. //
  1799. this.dataGridViewTextBoxColumn27.DataPropertyName = "MouldQuantity";
  1800. dataGridViewCellStyle104.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1801. this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle104;
  1802. this.dataGridViewTextBoxColumn27.HeaderText = "模具数";
  1803. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1804. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  1805. //
  1806. // dataGridViewTextBoxColumn29
  1807. //
  1808. this.dataGridViewTextBoxColumn29.DataPropertyName = "d01";
  1809. dataGridViewCellStyle105.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1810. this.dataGridViewTextBoxColumn29.DefaultCellStyle = dataGridViewCellStyle105;
  1811. this.dataGridViewTextBoxColumn29.HeaderText = "1日";
  1812. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  1813. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  1814. //
  1815. // dataGridViewTextBoxColumn31
  1816. //
  1817. this.dataGridViewTextBoxColumn31.DataPropertyName = "d02";
  1818. dataGridViewCellStyle106.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1819. this.dataGridViewTextBoxColumn31.DefaultCellStyle = dataGridViewCellStyle106;
  1820. this.dataGridViewTextBoxColumn31.HeaderText = "2日";
  1821. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  1822. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  1823. //
  1824. // dataGridViewTextBoxColumn33
  1825. //
  1826. this.dataGridViewTextBoxColumn33.DataPropertyName = "d03";
  1827. dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1828. this.dataGridViewTextBoxColumn33.DefaultCellStyle = dataGridViewCellStyle107;
  1829. this.dataGridViewTextBoxColumn33.HeaderText = "3日";
  1830. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  1831. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  1832. //
  1833. // dataGridViewTextBoxColumn35
  1834. //
  1835. this.dataGridViewTextBoxColumn35.DataPropertyName = "d04";
  1836. dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1837. this.dataGridViewTextBoxColumn35.DefaultCellStyle = dataGridViewCellStyle108;
  1838. this.dataGridViewTextBoxColumn35.HeaderText = "4日";
  1839. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  1840. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  1841. //
  1842. // dataGridViewTextBoxColumn37
  1843. //
  1844. this.dataGridViewTextBoxColumn37.DataPropertyName = "d05";
  1845. dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1846. this.dataGridViewTextBoxColumn37.DefaultCellStyle = dataGridViewCellStyle109;
  1847. this.dataGridViewTextBoxColumn37.HeaderText = "5日";
  1848. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1849. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  1850. //
  1851. // dataGridViewTextBoxColumn39
  1852. //
  1853. this.dataGridViewTextBoxColumn39.DataPropertyName = "d06";
  1854. dataGridViewCellStyle110.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1855. this.dataGridViewTextBoxColumn39.DefaultCellStyle = dataGridViewCellStyle110;
  1856. this.dataGridViewTextBoxColumn39.HeaderText = "6日";
  1857. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1858. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  1859. //
  1860. // dataGridViewTextBoxColumn41
  1861. //
  1862. this.dataGridViewTextBoxColumn41.DataPropertyName = "d07";
  1863. dataGridViewCellStyle111.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1864. this.dataGridViewTextBoxColumn41.DefaultCellStyle = dataGridViewCellStyle111;
  1865. this.dataGridViewTextBoxColumn41.HeaderText = "7日";
  1866. this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
  1867. this.dataGridViewTextBoxColumn41.ReadOnly = true;
  1868. //
  1869. // dataGridViewTextBoxColumn43
  1870. //
  1871. this.dataGridViewTextBoxColumn43.DataPropertyName = "d08";
  1872. dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1873. this.dataGridViewTextBoxColumn43.DefaultCellStyle = dataGridViewCellStyle112;
  1874. this.dataGridViewTextBoxColumn43.HeaderText = "8日";
  1875. this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
  1876. this.dataGridViewTextBoxColumn43.ReadOnly = true;
  1877. //
  1878. // dataGridViewTextBoxColumn45
  1879. //
  1880. this.dataGridViewTextBoxColumn45.DataPropertyName = "d09";
  1881. dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1882. this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle113;
  1883. this.dataGridViewTextBoxColumn45.HeaderText = "9日";
  1884. this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
  1885. this.dataGridViewTextBoxColumn45.ReadOnly = true;
  1886. //
  1887. // dataGridViewTextBoxColumn47
  1888. //
  1889. this.dataGridViewTextBoxColumn47.DataPropertyName = "d10";
  1890. dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1891. this.dataGridViewTextBoxColumn47.DefaultCellStyle = dataGridViewCellStyle114;
  1892. this.dataGridViewTextBoxColumn47.HeaderText = "10日";
  1893. this.dataGridViewTextBoxColumn47.Name = "dataGridViewTextBoxColumn47";
  1894. this.dataGridViewTextBoxColumn47.ReadOnly = true;
  1895. //
  1896. // dataGridViewTextBoxColumn49
  1897. //
  1898. this.dataGridViewTextBoxColumn49.DataPropertyName = "d11";
  1899. dataGridViewCellStyle115.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1900. this.dataGridViewTextBoxColumn49.DefaultCellStyle = dataGridViewCellStyle115;
  1901. this.dataGridViewTextBoxColumn49.HeaderText = "11日";
  1902. this.dataGridViewTextBoxColumn49.Name = "dataGridViewTextBoxColumn49";
  1903. this.dataGridViewTextBoxColumn49.ReadOnly = true;
  1904. //
  1905. // dataGridViewTextBoxColumn51
  1906. //
  1907. this.dataGridViewTextBoxColumn51.DataPropertyName = "d12";
  1908. dataGridViewCellStyle116.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1909. this.dataGridViewTextBoxColumn51.DefaultCellStyle = dataGridViewCellStyle116;
  1910. this.dataGridViewTextBoxColumn51.HeaderText = "12日";
  1911. this.dataGridViewTextBoxColumn51.Name = "dataGridViewTextBoxColumn51";
  1912. this.dataGridViewTextBoxColumn51.ReadOnly = true;
  1913. //
  1914. // dataGridViewTextBoxColumn53
  1915. //
  1916. this.dataGridViewTextBoxColumn53.DataPropertyName = "d13";
  1917. dataGridViewCellStyle117.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1918. this.dataGridViewTextBoxColumn53.DefaultCellStyle = dataGridViewCellStyle117;
  1919. this.dataGridViewTextBoxColumn53.HeaderText = "13日";
  1920. this.dataGridViewTextBoxColumn53.Name = "dataGridViewTextBoxColumn53";
  1921. this.dataGridViewTextBoxColumn53.ReadOnly = true;
  1922. //
  1923. // dataGridViewTextBoxColumn55
  1924. //
  1925. this.dataGridViewTextBoxColumn55.DataPropertyName = "d14";
  1926. dataGridViewCellStyle118.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1927. this.dataGridViewTextBoxColumn55.DefaultCellStyle = dataGridViewCellStyle118;
  1928. this.dataGridViewTextBoxColumn55.HeaderText = "14日";
  1929. this.dataGridViewTextBoxColumn55.Name = "dataGridViewTextBoxColumn55";
  1930. this.dataGridViewTextBoxColumn55.ReadOnly = true;
  1931. //
  1932. // dataGridViewTextBoxColumn57
  1933. //
  1934. this.dataGridViewTextBoxColumn57.DataPropertyName = "d15";
  1935. dataGridViewCellStyle119.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1936. this.dataGridViewTextBoxColumn57.DefaultCellStyle = dataGridViewCellStyle119;
  1937. this.dataGridViewTextBoxColumn57.HeaderText = "15日";
  1938. this.dataGridViewTextBoxColumn57.Name = "dataGridViewTextBoxColumn57";
  1939. this.dataGridViewTextBoxColumn57.ReadOnly = true;
  1940. //
  1941. // dataGridViewTextBoxColumn59
  1942. //
  1943. this.dataGridViewTextBoxColumn59.DataPropertyName = "d16";
  1944. dataGridViewCellStyle120.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1945. this.dataGridViewTextBoxColumn59.DefaultCellStyle = dataGridViewCellStyle120;
  1946. this.dataGridViewTextBoxColumn59.HeaderText = "16日";
  1947. this.dataGridViewTextBoxColumn59.Name = "dataGridViewTextBoxColumn59";
  1948. this.dataGridViewTextBoxColumn59.ReadOnly = true;
  1949. //
  1950. // dataGridViewTextBoxColumn61
  1951. //
  1952. this.dataGridViewTextBoxColumn61.DataPropertyName = "d17";
  1953. dataGridViewCellStyle121.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1954. this.dataGridViewTextBoxColumn61.DefaultCellStyle = dataGridViewCellStyle121;
  1955. this.dataGridViewTextBoxColumn61.HeaderText = "17日";
  1956. this.dataGridViewTextBoxColumn61.Name = "dataGridViewTextBoxColumn61";
  1957. this.dataGridViewTextBoxColumn61.ReadOnly = true;
  1958. //
  1959. // dataGridViewTextBoxColumn63
  1960. //
  1961. this.dataGridViewTextBoxColumn63.DataPropertyName = "d18";
  1962. dataGridViewCellStyle122.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1963. this.dataGridViewTextBoxColumn63.DefaultCellStyle = dataGridViewCellStyle122;
  1964. this.dataGridViewTextBoxColumn63.HeaderText = "18日";
  1965. this.dataGridViewTextBoxColumn63.Name = "dataGridViewTextBoxColumn63";
  1966. this.dataGridViewTextBoxColumn63.ReadOnly = true;
  1967. //
  1968. // dataGridViewTextBoxColumn65
  1969. //
  1970. this.dataGridViewTextBoxColumn65.DataPropertyName = "d19";
  1971. dataGridViewCellStyle123.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1972. this.dataGridViewTextBoxColumn65.DefaultCellStyle = dataGridViewCellStyle123;
  1973. this.dataGridViewTextBoxColumn65.HeaderText = "19日";
  1974. this.dataGridViewTextBoxColumn65.Name = "dataGridViewTextBoxColumn65";
  1975. this.dataGridViewTextBoxColumn65.ReadOnly = true;
  1976. //
  1977. // dataGridViewTextBoxColumn67
  1978. //
  1979. this.dataGridViewTextBoxColumn67.DataPropertyName = "d20";
  1980. dataGridViewCellStyle124.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1981. this.dataGridViewTextBoxColumn67.DefaultCellStyle = dataGridViewCellStyle124;
  1982. this.dataGridViewTextBoxColumn67.HeaderText = "20日";
  1983. this.dataGridViewTextBoxColumn67.Name = "dataGridViewTextBoxColumn67";
  1984. this.dataGridViewTextBoxColumn67.ReadOnly = true;
  1985. //
  1986. // dataGridViewTextBoxColumn69
  1987. //
  1988. this.dataGridViewTextBoxColumn69.DataPropertyName = "d21";
  1989. dataGridViewCellStyle125.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1990. this.dataGridViewTextBoxColumn69.DefaultCellStyle = dataGridViewCellStyle125;
  1991. this.dataGridViewTextBoxColumn69.HeaderText = "21日";
  1992. this.dataGridViewTextBoxColumn69.Name = "dataGridViewTextBoxColumn69";
  1993. this.dataGridViewTextBoxColumn69.ReadOnly = true;
  1994. //
  1995. // dataGridViewTextBoxColumn71
  1996. //
  1997. this.dataGridViewTextBoxColumn71.DataPropertyName = "d22";
  1998. dataGridViewCellStyle126.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1999. this.dataGridViewTextBoxColumn71.DefaultCellStyle = dataGridViewCellStyle126;
  2000. this.dataGridViewTextBoxColumn71.HeaderText = "22日";
  2001. this.dataGridViewTextBoxColumn71.Name = "dataGridViewTextBoxColumn71";
  2002. this.dataGridViewTextBoxColumn71.ReadOnly = true;
  2003. //
  2004. // dataGridViewTextBoxColumn72
  2005. //
  2006. this.dataGridViewTextBoxColumn72.DataPropertyName = "d23";
  2007. dataGridViewCellStyle127.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2008. this.dataGridViewTextBoxColumn72.DefaultCellStyle = dataGridViewCellStyle127;
  2009. this.dataGridViewTextBoxColumn72.HeaderText = "23日";
  2010. this.dataGridViewTextBoxColumn72.Name = "dataGridViewTextBoxColumn72";
  2011. this.dataGridViewTextBoxColumn72.ReadOnly = true;
  2012. //
  2013. // dataGridViewTextBoxColumn73
  2014. //
  2015. this.dataGridViewTextBoxColumn73.DataPropertyName = "d24";
  2016. dataGridViewCellStyle128.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2017. this.dataGridViewTextBoxColumn73.DefaultCellStyle = dataGridViewCellStyle128;
  2018. this.dataGridViewTextBoxColumn73.HeaderText = "24日";
  2019. this.dataGridViewTextBoxColumn73.Name = "dataGridViewTextBoxColumn73";
  2020. this.dataGridViewTextBoxColumn73.ReadOnly = true;
  2021. //
  2022. // dataGridViewTextBoxColumn74
  2023. //
  2024. this.dataGridViewTextBoxColumn74.DataPropertyName = "d25";
  2025. dataGridViewCellStyle129.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2026. this.dataGridViewTextBoxColumn74.DefaultCellStyle = dataGridViewCellStyle129;
  2027. this.dataGridViewTextBoxColumn74.HeaderText = "25日";
  2028. this.dataGridViewTextBoxColumn74.Name = "dataGridViewTextBoxColumn74";
  2029. this.dataGridViewTextBoxColumn74.ReadOnly = true;
  2030. //
  2031. // dataGridViewTextBoxColumn75
  2032. //
  2033. this.dataGridViewTextBoxColumn75.DataPropertyName = "d26";
  2034. dataGridViewCellStyle130.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2035. this.dataGridViewTextBoxColumn75.DefaultCellStyle = dataGridViewCellStyle130;
  2036. this.dataGridViewTextBoxColumn75.HeaderText = "26日";
  2037. this.dataGridViewTextBoxColumn75.Name = "dataGridViewTextBoxColumn75";
  2038. this.dataGridViewTextBoxColumn75.ReadOnly = true;
  2039. //
  2040. // dataGridViewTextBoxColumn76
  2041. //
  2042. this.dataGridViewTextBoxColumn76.DataPropertyName = "d27";
  2043. dataGridViewCellStyle131.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2044. this.dataGridViewTextBoxColumn76.DefaultCellStyle = dataGridViewCellStyle131;
  2045. this.dataGridViewTextBoxColumn76.HeaderText = "27日";
  2046. this.dataGridViewTextBoxColumn76.Name = "dataGridViewTextBoxColumn76";
  2047. this.dataGridViewTextBoxColumn76.ReadOnly = true;
  2048. //
  2049. // dataGridViewTextBoxColumn77
  2050. //
  2051. this.dataGridViewTextBoxColumn77.DataPropertyName = "d28";
  2052. dataGridViewCellStyle132.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2053. this.dataGridViewTextBoxColumn77.DefaultCellStyle = dataGridViewCellStyle132;
  2054. this.dataGridViewTextBoxColumn77.HeaderText = "28日";
  2055. this.dataGridViewTextBoxColumn77.Name = "dataGridViewTextBoxColumn77";
  2056. this.dataGridViewTextBoxColumn77.ReadOnly = true;
  2057. //
  2058. // dataGridViewTextBoxColumn78
  2059. //
  2060. this.dataGridViewTextBoxColumn78.DataPropertyName = "d29";
  2061. dataGridViewCellStyle133.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2062. this.dataGridViewTextBoxColumn78.DefaultCellStyle = dataGridViewCellStyle133;
  2063. this.dataGridViewTextBoxColumn78.HeaderText = "29日";
  2064. this.dataGridViewTextBoxColumn78.Name = "dataGridViewTextBoxColumn78";
  2065. this.dataGridViewTextBoxColumn78.ReadOnly = true;
  2066. //
  2067. // dataGridViewTextBoxColumn79
  2068. //
  2069. this.dataGridViewTextBoxColumn79.DataPropertyName = "d30";
  2070. dataGridViewCellStyle134.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2071. this.dataGridViewTextBoxColumn79.DefaultCellStyle = dataGridViewCellStyle134;
  2072. this.dataGridViewTextBoxColumn79.HeaderText = "30日";
  2073. this.dataGridViewTextBoxColumn79.Name = "dataGridViewTextBoxColumn79";
  2074. this.dataGridViewTextBoxColumn79.ReadOnly = true;
  2075. //
  2076. // dataGridViewTextBoxColumn80
  2077. //
  2078. this.dataGridViewTextBoxColumn80.DataPropertyName = "d31";
  2079. dataGridViewCellStyle135.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2080. this.dataGridViewTextBoxColumn80.DefaultCellStyle = dataGridViewCellStyle135;
  2081. this.dataGridViewTextBoxColumn80.HeaderText = "31日";
  2082. this.dataGridViewTextBoxColumn80.Name = "dataGridViewTextBoxColumn80";
  2083. this.dataGridViewTextBoxColumn80.ReadOnly = true;
  2084. //
  2085. // BuildingNo
  2086. //
  2087. this.BuildingNo.DataPropertyName = "BuildingNo";
  2088. this.BuildingNo.HeaderText = "楼号";
  2089. this.BuildingNo.Name = "BuildingNo";
  2090. this.BuildingNo.ReadOnly = true;
  2091. this.BuildingNo.Width = 80;
  2092. //
  2093. // FloorNo
  2094. //
  2095. this.FloorNo.DataPropertyName = "FloorNo";
  2096. this.FloorNo.HeaderText = "楼层";
  2097. this.FloorNo.Name = "FloorNo";
  2098. this.FloorNo.ReadOnly = true;
  2099. this.FloorNo.Width = 80;
  2100. //
  2101. // GroutingLineNo
  2102. //
  2103. this.GroutingLineNo.DataPropertyName = "GroutingLineNo";
  2104. this.GroutingLineNo.HeaderText = "工段";
  2105. this.GroutingLineNo.Name = "GroutingLineNo";
  2106. this.GroutingLineNo.ReadOnly = true;
  2107. this.GroutingLineNo.Width = 80;
  2108. //
  2109. // groutinglinecode
  2110. //
  2111. this.groutinglinecode.DataPropertyName = "groutinglinecode";
  2112. this.groutinglinecode.HeaderText = "成型线编码";
  2113. this.groutinglinecode.Name = "groutinglinecode";
  2114. this.groutinglinecode.ReadOnly = true;
  2115. //
  2116. // usercode
  2117. //
  2118. this.usercode.DataPropertyName = "usercode";
  2119. this.usercode.HeaderText = "成型工号";
  2120. this.usercode.Name = "usercode";
  2121. this.usercode.ReadOnly = true;
  2122. //
  2123. // goodscode
  2124. //
  2125. this.goodscode.DataPropertyName = "goodscode";
  2126. this.goodscode.HeaderText = "产品编码";
  2127. this.goodscode.Name = "goodscode";
  2128. this.goodscode.ReadOnly = true;
  2129. this.goodscode.Width = 80;
  2130. //
  2131. // goodsname
  2132. //
  2133. this.goodsname.DataPropertyName = "goodsname";
  2134. this.goodsname.HeaderText = "产品名称";
  2135. this.goodsname.Name = "goodsname";
  2136. this.goodsname.ReadOnly = true;
  2137. //
  2138. // GOODSSPECIFICATION
  2139. //
  2140. this.GOODSSPECIFICATION.DataPropertyName = "GOODSSPECIFICATION";
  2141. this.GOODSSPECIFICATION.HeaderText = "产品规格";
  2142. this.GOODSSPECIFICATION.Name = "GOODSSPECIFICATION";
  2143. this.GOODSSPECIFICATION.ReadOnly = true;
  2144. //
  2145. // goodstypename
  2146. //
  2147. this.goodstypename.DataPropertyName = "goodstypename";
  2148. this.goodstypename.HeaderText = "产品类别";
  2149. this.goodstypename.Name = "goodstypename";
  2150. this.goodstypename.ReadOnly = true;
  2151. this.goodstypename.Width = 80;
  2152. //
  2153. // MouldQuantity
  2154. //
  2155. this.MouldQuantity.DataPropertyName = "MouldQuantity";
  2156. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2157. this.MouldQuantity.DefaultCellStyle = dataGridViewCellStyle3;
  2158. this.MouldQuantity.HeaderText = "模具数";
  2159. this.MouldQuantity.Name = "MouldQuantity";
  2160. this.MouldQuantity.ReadOnly = true;
  2161. //
  2162. // c01
  2163. //
  2164. this.c01.DataPropertyName = "c01";
  2165. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2166. this.c01.DefaultCellStyle = dataGridViewCellStyle4;
  2167. this.c01.HeaderText = "成坯数";
  2168. this.c01.Name = "c01";
  2169. this.c01.ReadOnly = true;
  2170. //
  2171. // d01
  2172. //
  2173. this.d01.DataPropertyName = "d01";
  2174. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2175. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2176. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2177. this.d01.DefaultCellStyle = dataGridViewCellStyle5;
  2178. this.d01.HeaderText = "交坯数";
  2179. this.d01.Name = "d01";
  2180. this.d01.ReadOnly = true;
  2181. //
  2182. // c02
  2183. //
  2184. this.c02.DataPropertyName = "c02";
  2185. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2186. this.c02.DefaultCellStyle = dataGridViewCellStyle6;
  2187. this.c02.HeaderText = "成坯数";
  2188. this.c02.Name = "c02";
  2189. this.c02.ReadOnly = true;
  2190. //
  2191. // d02
  2192. //
  2193. this.d02.DataPropertyName = "d02";
  2194. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2195. dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2196. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2197. this.d02.DefaultCellStyle = dataGridViewCellStyle7;
  2198. this.d02.HeaderText = "交坯数";
  2199. this.d02.Name = "d02";
  2200. this.d02.ReadOnly = true;
  2201. //
  2202. // c03
  2203. //
  2204. this.c03.DataPropertyName = "c03";
  2205. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2206. this.c03.DefaultCellStyle = dataGridViewCellStyle8;
  2207. this.c03.HeaderText = "成坯数";
  2208. this.c03.Name = "c03";
  2209. this.c03.ReadOnly = true;
  2210. //
  2211. // d03
  2212. //
  2213. this.d03.DataPropertyName = "d03";
  2214. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2215. dataGridViewCellStyle9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2216. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2217. this.d03.DefaultCellStyle = dataGridViewCellStyle9;
  2218. this.d03.HeaderText = "交坯数";
  2219. this.d03.Name = "d03";
  2220. this.d03.ReadOnly = true;
  2221. //
  2222. // c04
  2223. //
  2224. this.c04.DataPropertyName = "c04";
  2225. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2226. this.c04.DefaultCellStyle = dataGridViewCellStyle10;
  2227. this.c04.HeaderText = "成坯数";
  2228. this.c04.Name = "c04";
  2229. this.c04.ReadOnly = true;
  2230. //
  2231. // d04
  2232. //
  2233. this.d04.DataPropertyName = "d04";
  2234. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2235. dataGridViewCellStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2236. dataGridViewCellStyle11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2237. this.d04.DefaultCellStyle = dataGridViewCellStyle11;
  2238. this.d04.HeaderText = "交坯数";
  2239. this.d04.Name = "d04";
  2240. this.d04.ReadOnly = true;
  2241. //
  2242. // c05
  2243. //
  2244. this.c05.DataPropertyName = "c05";
  2245. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2246. this.c05.DefaultCellStyle = dataGridViewCellStyle12;
  2247. this.c05.HeaderText = "成坯数";
  2248. this.c05.Name = "c05";
  2249. this.c05.ReadOnly = true;
  2250. //
  2251. // d05
  2252. //
  2253. this.d05.DataPropertyName = "d05";
  2254. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2255. dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2256. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2257. this.d05.DefaultCellStyle = dataGridViewCellStyle13;
  2258. this.d05.HeaderText = "交坯数";
  2259. this.d05.Name = "d05";
  2260. this.d05.ReadOnly = true;
  2261. //
  2262. // c06
  2263. //
  2264. this.c06.DataPropertyName = "c06";
  2265. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2266. this.c06.DefaultCellStyle = dataGridViewCellStyle14;
  2267. this.c06.HeaderText = "成坯数";
  2268. this.c06.Name = "c06";
  2269. this.c06.ReadOnly = true;
  2270. //
  2271. // d06
  2272. //
  2273. this.d06.DataPropertyName = "d06";
  2274. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2275. dataGridViewCellStyle15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2276. dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2277. this.d06.DefaultCellStyle = dataGridViewCellStyle15;
  2278. this.d06.HeaderText = "交坯数";
  2279. this.d06.Name = "d06";
  2280. this.d06.ReadOnly = true;
  2281. //
  2282. // c07
  2283. //
  2284. this.c07.DataPropertyName = "c07";
  2285. dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2286. this.c07.DefaultCellStyle = dataGridViewCellStyle16;
  2287. this.c07.HeaderText = "成坯数";
  2288. this.c07.Name = "c07";
  2289. this.c07.ReadOnly = true;
  2290. //
  2291. // d07
  2292. //
  2293. this.d07.DataPropertyName = "d07";
  2294. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2295. dataGridViewCellStyle17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2296. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2297. this.d07.DefaultCellStyle = dataGridViewCellStyle17;
  2298. this.d07.HeaderText = "交坯数";
  2299. this.d07.Name = "d07";
  2300. this.d07.ReadOnly = true;
  2301. //
  2302. // c08
  2303. //
  2304. this.c08.DataPropertyName = "c08";
  2305. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2306. this.c08.DefaultCellStyle = dataGridViewCellStyle18;
  2307. this.c08.HeaderText = "成坯数";
  2308. this.c08.Name = "c08";
  2309. this.c08.ReadOnly = true;
  2310. //
  2311. // d08
  2312. //
  2313. this.d08.DataPropertyName = "d08";
  2314. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2315. dataGridViewCellStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2316. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2317. this.d08.DefaultCellStyle = dataGridViewCellStyle19;
  2318. this.d08.HeaderText = "交坯数";
  2319. this.d08.Name = "d08";
  2320. this.d08.ReadOnly = true;
  2321. //
  2322. // c09
  2323. //
  2324. this.c09.DataPropertyName = "c09";
  2325. dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2326. this.c09.DefaultCellStyle = dataGridViewCellStyle20;
  2327. this.c09.HeaderText = "成坯数";
  2328. this.c09.Name = "c09";
  2329. this.c09.ReadOnly = true;
  2330. //
  2331. // d09
  2332. //
  2333. this.d09.DataPropertyName = "d09";
  2334. dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2335. dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2336. dataGridViewCellStyle21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2337. this.d09.DefaultCellStyle = dataGridViewCellStyle21;
  2338. this.d09.HeaderText = "交坯数";
  2339. this.d09.Name = "d09";
  2340. this.d09.ReadOnly = true;
  2341. //
  2342. // c10
  2343. //
  2344. this.c10.DataPropertyName = "c10";
  2345. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2346. this.c10.DefaultCellStyle = dataGridViewCellStyle22;
  2347. this.c10.HeaderText = "成坯数";
  2348. this.c10.Name = "c10";
  2349. this.c10.ReadOnly = true;
  2350. //
  2351. // d10
  2352. //
  2353. this.d10.DataPropertyName = "d10";
  2354. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2355. dataGridViewCellStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2356. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2357. this.d10.DefaultCellStyle = dataGridViewCellStyle23;
  2358. this.d10.HeaderText = "交坯数";
  2359. this.d10.Name = "d10";
  2360. this.d10.ReadOnly = true;
  2361. //
  2362. // c11
  2363. //
  2364. this.c11.DataPropertyName = "c11";
  2365. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2366. this.c11.DefaultCellStyle = dataGridViewCellStyle24;
  2367. this.c11.HeaderText = "成坯数";
  2368. this.c11.Name = "c11";
  2369. this.c11.ReadOnly = true;
  2370. //
  2371. // d11
  2372. //
  2373. this.d11.DataPropertyName = "d11";
  2374. dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2375. dataGridViewCellStyle25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2376. dataGridViewCellStyle25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2377. this.d11.DefaultCellStyle = dataGridViewCellStyle25;
  2378. this.d11.HeaderText = "交坯数";
  2379. this.d11.Name = "d11";
  2380. this.d11.ReadOnly = true;
  2381. //
  2382. // c12
  2383. //
  2384. this.c12.DataPropertyName = "c12";
  2385. dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2386. this.c12.DefaultCellStyle = dataGridViewCellStyle26;
  2387. this.c12.HeaderText = "成坯数";
  2388. this.c12.Name = "c12";
  2389. this.c12.ReadOnly = true;
  2390. //
  2391. // d12
  2392. //
  2393. this.d12.DataPropertyName = "d12";
  2394. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2395. dataGridViewCellStyle27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2396. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2397. this.d12.DefaultCellStyle = dataGridViewCellStyle27;
  2398. this.d12.HeaderText = "交坯数";
  2399. this.d12.Name = "d12";
  2400. this.d12.ReadOnly = true;
  2401. //
  2402. // c13
  2403. //
  2404. this.c13.DataPropertyName = "c13";
  2405. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2406. this.c13.DefaultCellStyle = dataGridViewCellStyle28;
  2407. this.c13.HeaderText = "成坯数";
  2408. this.c13.Name = "c13";
  2409. this.c13.ReadOnly = true;
  2410. //
  2411. // d13
  2412. //
  2413. this.d13.DataPropertyName = "d13";
  2414. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2415. dataGridViewCellStyle29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2416. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2417. this.d13.DefaultCellStyle = dataGridViewCellStyle29;
  2418. this.d13.HeaderText = "交坯数";
  2419. this.d13.Name = "d13";
  2420. this.d13.ReadOnly = true;
  2421. //
  2422. // c14
  2423. //
  2424. this.c14.DataPropertyName = "c14";
  2425. dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2426. this.c14.DefaultCellStyle = dataGridViewCellStyle30;
  2427. this.c14.HeaderText = "成坯数";
  2428. this.c14.Name = "c14";
  2429. this.c14.ReadOnly = true;
  2430. //
  2431. // d14
  2432. //
  2433. this.d14.DataPropertyName = "d14";
  2434. dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2435. dataGridViewCellStyle31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2436. dataGridViewCellStyle31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2437. this.d14.DefaultCellStyle = dataGridViewCellStyle31;
  2438. this.d14.HeaderText = "交坯数";
  2439. this.d14.Name = "d14";
  2440. this.d14.ReadOnly = true;
  2441. //
  2442. // c15
  2443. //
  2444. this.c15.DataPropertyName = "c15";
  2445. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2446. this.c15.DefaultCellStyle = dataGridViewCellStyle32;
  2447. this.c15.HeaderText = "成坯数";
  2448. this.c15.Name = "c15";
  2449. this.c15.ReadOnly = true;
  2450. //
  2451. // d15
  2452. //
  2453. this.d15.DataPropertyName = "d15";
  2454. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2455. dataGridViewCellStyle33.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2456. dataGridViewCellStyle33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2457. this.d15.DefaultCellStyle = dataGridViewCellStyle33;
  2458. this.d15.HeaderText = "交坯数";
  2459. this.d15.Name = "d15";
  2460. this.d15.ReadOnly = true;
  2461. //
  2462. // c16
  2463. //
  2464. this.c16.DataPropertyName = "c16";
  2465. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2466. this.c16.DefaultCellStyle = dataGridViewCellStyle34;
  2467. this.c16.HeaderText = "成坯数";
  2468. this.c16.Name = "c16";
  2469. this.c16.ReadOnly = true;
  2470. //
  2471. // d16
  2472. //
  2473. this.d16.DataPropertyName = "d16";
  2474. dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2475. dataGridViewCellStyle35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2476. dataGridViewCellStyle35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2477. this.d16.DefaultCellStyle = dataGridViewCellStyle35;
  2478. this.d16.HeaderText = "交坯数";
  2479. this.d16.Name = "d16";
  2480. this.d16.ReadOnly = true;
  2481. //
  2482. // c17
  2483. //
  2484. this.c17.DataPropertyName = "c17";
  2485. dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2486. this.c17.DefaultCellStyle = dataGridViewCellStyle36;
  2487. this.c17.HeaderText = "成坯数";
  2488. this.c17.Name = "c17";
  2489. this.c17.ReadOnly = true;
  2490. //
  2491. // d17
  2492. //
  2493. this.d17.DataPropertyName = "d17";
  2494. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2495. dataGridViewCellStyle37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2496. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2497. this.d17.DefaultCellStyle = dataGridViewCellStyle37;
  2498. this.d17.HeaderText = "交坯数";
  2499. this.d17.Name = "d17";
  2500. this.d17.ReadOnly = true;
  2501. //
  2502. // c18
  2503. //
  2504. this.c18.DataPropertyName = "c18";
  2505. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2506. this.c18.DefaultCellStyle = dataGridViewCellStyle38;
  2507. this.c18.HeaderText = "成坯数";
  2508. this.c18.Name = "c18";
  2509. this.c18.ReadOnly = true;
  2510. //
  2511. // d18
  2512. //
  2513. this.d18.DataPropertyName = "d18";
  2514. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2515. dataGridViewCellStyle39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2516. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2517. this.d18.DefaultCellStyle = dataGridViewCellStyle39;
  2518. this.d18.HeaderText = "交坯数";
  2519. this.d18.Name = "d18";
  2520. this.d18.ReadOnly = true;
  2521. //
  2522. // c19
  2523. //
  2524. this.c19.DataPropertyName = "c19";
  2525. dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2526. this.c19.DefaultCellStyle = dataGridViewCellStyle40;
  2527. this.c19.HeaderText = "成坯数";
  2528. this.c19.Name = "c19";
  2529. this.c19.ReadOnly = true;
  2530. //
  2531. // d19
  2532. //
  2533. this.d19.DataPropertyName = "d19";
  2534. dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2535. dataGridViewCellStyle41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2536. dataGridViewCellStyle41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2537. this.d19.DefaultCellStyle = dataGridViewCellStyle41;
  2538. this.d19.HeaderText = "交坯数";
  2539. this.d19.Name = "d19";
  2540. this.d19.ReadOnly = true;
  2541. //
  2542. // c20
  2543. //
  2544. this.c20.DataPropertyName = "c20";
  2545. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2546. this.c20.DefaultCellStyle = dataGridViewCellStyle42;
  2547. this.c20.HeaderText = "成坯数";
  2548. this.c20.Name = "c20";
  2549. this.c20.ReadOnly = true;
  2550. //
  2551. // d20
  2552. //
  2553. this.d20.DataPropertyName = "d20";
  2554. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2555. dataGridViewCellStyle43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2556. dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2557. this.d20.DefaultCellStyle = dataGridViewCellStyle43;
  2558. this.d20.HeaderText = "交坯数";
  2559. this.d20.Name = "d20";
  2560. this.d20.ReadOnly = true;
  2561. //
  2562. // c21
  2563. //
  2564. this.c21.DataPropertyName = "c21";
  2565. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2566. this.c21.DefaultCellStyle = dataGridViewCellStyle44;
  2567. this.c21.HeaderText = "成坯数";
  2568. this.c21.Name = "c21";
  2569. this.c21.ReadOnly = true;
  2570. //
  2571. // d21
  2572. //
  2573. this.d21.DataPropertyName = "d21";
  2574. dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2575. dataGridViewCellStyle45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2576. dataGridViewCellStyle45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2577. this.d21.DefaultCellStyle = dataGridViewCellStyle45;
  2578. this.d21.HeaderText = "交坯数";
  2579. this.d21.Name = "d21";
  2580. this.d21.ReadOnly = true;
  2581. //
  2582. // c22
  2583. //
  2584. this.c22.DataPropertyName = "c22";
  2585. dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2586. this.c22.DefaultCellStyle = dataGridViewCellStyle46;
  2587. this.c22.HeaderText = "成坯数";
  2588. this.c22.Name = "c22";
  2589. this.c22.ReadOnly = true;
  2590. //
  2591. // d22
  2592. //
  2593. this.d22.DataPropertyName = "d22";
  2594. dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2595. dataGridViewCellStyle47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2596. dataGridViewCellStyle47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2597. this.d22.DefaultCellStyle = dataGridViewCellStyle47;
  2598. this.d22.HeaderText = "交坯数";
  2599. this.d22.Name = "d22";
  2600. this.d22.ReadOnly = true;
  2601. //
  2602. // c23
  2603. //
  2604. this.c23.DataPropertyName = "c23";
  2605. dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2606. this.c23.DefaultCellStyle = dataGridViewCellStyle48;
  2607. this.c23.HeaderText = "成坯数";
  2608. this.c23.Name = "c23";
  2609. this.c23.ReadOnly = true;
  2610. //
  2611. // d23
  2612. //
  2613. this.d23.DataPropertyName = "d23";
  2614. dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2615. dataGridViewCellStyle49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2616. dataGridViewCellStyle49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2617. this.d23.DefaultCellStyle = dataGridViewCellStyle49;
  2618. this.d23.HeaderText = "交坯数";
  2619. this.d23.Name = "d23";
  2620. this.d23.ReadOnly = true;
  2621. //
  2622. // c24
  2623. //
  2624. this.c24.DataPropertyName = "c24";
  2625. dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2626. this.c24.DefaultCellStyle = dataGridViewCellStyle50;
  2627. this.c24.HeaderText = "成坯数";
  2628. this.c24.Name = "c24";
  2629. this.c24.ReadOnly = true;
  2630. //
  2631. // d24
  2632. //
  2633. this.d24.DataPropertyName = "d24";
  2634. dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2635. dataGridViewCellStyle51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2636. dataGridViewCellStyle51.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2637. this.d24.DefaultCellStyle = dataGridViewCellStyle51;
  2638. this.d24.HeaderText = "交坯数";
  2639. this.d24.Name = "d24";
  2640. this.d24.ReadOnly = true;
  2641. //
  2642. // c25
  2643. //
  2644. this.c25.DataPropertyName = "c25";
  2645. dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2646. this.c25.DefaultCellStyle = dataGridViewCellStyle52;
  2647. this.c25.HeaderText = "成坯数";
  2648. this.c25.Name = "c25";
  2649. this.c25.ReadOnly = true;
  2650. //
  2651. // d25
  2652. //
  2653. this.d25.DataPropertyName = "d25";
  2654. dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2655. dataGridViewCellStyle53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2656. dataGridViewCellStyle53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2657. this.d25.DefaultCellStyle = dataGridViewCellStyle53;
  2658. this.d25.HeaderText = "交坯数";
  2659. this.d25.Name = "d25";
  2660. this.d25.ReadOnly = true;
  2661. //
  2662. // c26
  2663. //
  2664. this.c26.DataPropertyName = "c26";
  2665. dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2666. this.c26.DefaultCellStyle = dataGridViewCellStyle54;
  2667. this.c26.HeaderText = "成坯数";
  2668. this.c26.Name = "c26";
  2669. this.c26.ReadOnly = true;
  2670. //
  2671. // d26
  2672. //
  2673. this.d26.DataPropertyName = "d26";
  2674. dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2675. dataGridViewCellStyle55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2676. dataGridViewCellStyle55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2677. this.d26.DefaultCellStyle = dataGridViewCellStyle55;
  2678. this.d26.HeaderText = "交坯数";
  2679. this.d26.Name = "d26";
  2680. this.d26.ReadOnly = true;
  2681. //
  2682. // c27
  2683. //
  2684. this.c27.DataPropertyName = "c27";
  2685. dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2686. this.c27.DefaultCellStyle = dataGridViewCellStyle56;
  2687. this.c27.HeaderText = "成坯数";
  2688. this.c27.Name = "c27";
  2689. this.c27.ReadOnly = true;
  2690. //
  2691. // d27
  2692. //
  2693. this.d27.DataPropertyName = "d27";
  2694. dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2695. dataGridViewCellStyle57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2696. dataGridViewCellStyle57.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2697. this.d27.DefaultCellStyle = dataGridViewCellStyle57;
  2698. this.d27.HeaderText = "交坯数";
  2699. this.d27.Name = "d27";
  2700. this.d27.ReadOnly = true;
  2701. //
  2702. // c28
  2703. //
  2704. this.c28.DataPropertyName = "c28";
  2705. dataGridViewCellStyle58.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2706. this.c28.DefaultCellStyle = dataGridViewCellStyle58;
  2707. this.c28.HeaderText = "成坯数";
  2708. this.c28.Name = "c28";
  2709. this.c28.ReadOnly = true;
  2710. //
  2711. // d28
  2712. //
  2713. this.d28.DataPropertyName = "d28";
  2714. dataGridViewCellStyle59.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2715. dataGridViewCellStyle59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2716. dataGridViewCellStyle59.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2717. this.d28.DefaultCellStyle = dataGridViewCellStyle59;
  2718. this.d28.HeaderText = "交坯数";
  2719. this.d28.Name = "d28";
  2720. this.d28.ReadOnly = true;
  2721. //
  2722. // c29
  2723. //
  2724. this.c29.DataPropertyName = "c29";
  2725. dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2726. this.c29.DefaultCellStyle = dataGridViewCellStyle60;
  2727. this.c29.HeaderText = "成坯数";
  2728. this.c29.Name = "c29";
  2729. this.c29.ReadOnly = true;
  2730. //
  2731. // d29
  2732. //
  2733. this.d29.DataPropertyName = "d29";
  2734. dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2735. dataGridViewCellStyle61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2736. dataGridViewCellStyle61.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2737. this.d29.DefaultCellStyle = dataGridViewCellStyle61;
  2738. this.d29.HeaderText = "交坯数";
  2739. this.d29.Name = "d29";
  2740. this.d29.ReadOnly = true;
  2741. //
  2742. // c30
  2743. //
  2744. this.c30.DataPropertyName = "c30";
  2745. dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2746. this.c30.DefaultCellStyle = dataGridViewCellStyle62;
  2747. this.c30.HeaderText = "成坯数";
  2748. this.c30.Name = "c30";
  2749. this.c30.ReadOnly = true;
  2750. //
  2751. // d30
  2752. //
  2753. this.d30.DataPropertyName = "d30";
  2754. dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2755. dataGridViewCellStyle63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2756. dataGridViewCellStyle63.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2757. this.d30.DefaultCellStyle = dataGridViewCellStyle63;
  2758. this.d30.HeaderText = "交坯数";
  2759. this.d30.Name = "d30";
  2760. this.d30.ReadOnly = true;
  2761. //
  2762. // c31
  2763. //
  2764. this.c31.DataPropertyName = "c31";
  2765. dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2766. this.c31.DefaultCellStyle = dataGridViewCellStyle64;
  2767. this.c31.HeaderText = "成坯数";
  2768. this.c31.Name = "c31";
  2769. this.c31.ReadOnly = true;
  2770. //
  2771. // d31
  2772. //
  2773. this.d31.DataPropertyName = "d31";
  2774. dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  2775. dataGridViewCellStyle65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2776. dataGridViewCellStyle65.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(38)))), ((int)(((byte)(38)))));
  2777. this.d31.DefaultCellStyle = dataGridViewCellStyle65;
  2778. this.d31.HeaderText = "交坯数";
  2779. this.d31.Name = "d31";
  2780. this.d31.ReadOnly = true;
  2781. //
  2782. // F_RPT_040108
  2783. //
  2784. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2785. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2786. this.AutoScroll = false;
  2787. this.ClientSize = new System.Drawing.Size(1298, 645);
  2788. this.Controls.Add(this.tabControl1);
  2789. this.Controls.Add(this.tsrOperate);
  2790. this.Controls.Add(this.gbxCondition);
  2791. this.Name = "F_RPT_040108";
  2792. this.Text = "成型线产量分析表";
  2793. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030103_1_FormClosed);
  2794. this.Load += new System.EventHandler(this.F_RPT_030103_1_Load);
  2795. this.tsrOperate.ResumeLayout(false);
  2796. this.tsrOperate.PerformLayout();
  2797. this.gbxCondition.ResumeLayout(false);
  2798. this.gbxCondition.PerformLayout();
  2799. ((System.ComponentModel.ISupportInitialize)(this.dgvRptProcedure)).EndInit();
  2800. this.tabControl1.ResumeLayout(false);
  2801. this.tabPage1.ResumeLayout(false);
  2802. this.tabPage2.ResumeLayout(false);
  2803. ((System.ComponentModel.ISupportInitialize)(this.dgvGC)).EndInit();
  2804. this.tabPage3.ResumeLayout(false);
  2805. ((System.ComponentModel.ISupportInitialize)(this.dgvGD)).EndInit();
  2806. this.ResumeLayout(false);
  2807. }
  2808. #endregion
  2809. private System.Windows.Forms.TreeView treeView1;
  2810. private Basics.BaseControls.C_ToolStrip tsrOperate;
  2811. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  2812. private System.Windows.Forms.ToolStripButton tsbtnClose;
  2813. private Basics.BaseControls.C_GroupBox gbxCondition;
  2814. private Basics.BaseControls.C_Button btnClearCondition;
  2815. private Basics.BaseControls.C_Button btnSearch;
  2816. private Basics.BaseControls.C_DateTimePicker dtpGDateStart;
  2817. private Basics.BaseControls.C_TXT_Code txtGoodCode;
  2818. private Basics.BaseControls.C_Label c_Label4;
  2819. private Basics.BaseControls.C_Label c_Label1;
  2820. private Basics.BaseControls.C_DataGridView dgvRptProcedure;
  2821. private Basics.BaseControls.C_TXT_Code txtGroutingLineCode;
  2822. private Basics.BaseControls.C_Label c_Label2;
  2823. private Basics.BaseControls.C_TXT_Code txtGroutingUserCode;
  2824. private Basics.BaseControls.C_Label c_Label3;
  2825. private System.Windows.Forms.TabControl tabControl1;
  2826. private System.Windows.Forms.TabPage tabPage1;
  2827. private System.Windows.Forms.TabPage tabPage2;
  2828. private Basics.BaseControls.C_DataGridView dgvGC;
  2829. private System.Windows.Forms.TabPage tabPage3;
  2830. private Basics.BaseControls.C_DataGridView dgvGD;
  2831. private Basics.BaseControls.C_Label lblGoodsType;
  2832. private Controls.SearchBox.ScbGoodsType scbGoodsType;
  2833. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2834. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2835. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2836. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2837. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2838. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2839. private System.Windows.Forms.DataGridViewTextBoxColumn goodstwo;
  2840. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2841. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2842. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2843. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2844. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2845. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2846. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2847. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2848. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2849. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2850. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2851. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2852. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2853. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2854. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2855. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2856. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2857. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2858. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
  2859. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
  2860. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
  2861. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
  2862. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn48;
  2863. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn50;
  2864. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn52;
  2865. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn54;
  2866. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn56;
  2867. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn58;
  2868. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn60;
  2869. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn62;
  2870. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn64;
  2871. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn66;
  2872. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn68;
  2873. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn70;
  2874. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2875. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2876. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2877. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2878. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2879. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2880. private System.Windows.Forms.DataGridViewTextBoxColumn goodsnamework;
  2881. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2882. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  2883. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2884. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2885. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2886. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2887. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2888. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2889. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2890. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
  2891. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
  2892. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
  2893. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn47;
  2894. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn49;
  2895. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn51;
  2896. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn53;
  2897. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn55;
  2898. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn57;
  2899. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn59;
  2900. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn61;
  2901. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn63;
  2902. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn65;
  2903. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn67;
  2904. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn69;
  2905. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn71;
  2906. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn72;
  2907. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn73;
  2908. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn74;
  2909. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn75;
  2910. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn76;
  2911. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn77;
  2912. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn78;
  2913. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn79;
  2914. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn80;
  2915. private System.Windows.Forms.DataGridViewTextBoxColumn BuildingNo;
  2916. private System.Windows.Forms.DataGridViewTextBoxColumn FloorNo;
  2917. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineNo;
  2918. private System.Windows.Forms.DataGridViewTextBoxColumn groutinglinecode;
  2919. private System.Windows.Forms.DataGridViewTextBoxColumn usercode;
  2920. private System.Windows.Forms.DataGridViewTextBoxColumn goodscode;
  2921. private System.Windows.Forms.DataGridViewTextBoxColumn goodsname;
  2922. private System.Windows.Forms.DataGridViewTextBoxColumn GOODSSPECIFICATION;
  2923. private System.Windows.Forms.DataGridViewTextBoxColumn goodstypename;
  2924. private System.Windows.Forms.DataGridViewTextBoxColumn MouldQuantity;
  2925. private System.Windows.Forms.DataGridViewTextBoxColumn c01;
  2926. private System.Windows.Forms.DataGridViewTextBoxColumn d01;
  2927. private System.Windows.Forms.DataGridViewTextBoxColumn c02;
  2928. private System.Windows.Forms.DataGridViewTextBoxColumn d02;
  2929. private System.Windows.Forms.DataGridViewTextBoxColumn c03;
  2930. private System.Windows.Forms.DataGridViewTextBoxColumn d03;
  2931. private System.Windows.Forms.DataGridViewTextBoxColumn c04;
  2932. private System.Windows.Forms.DataGridViewTextBoxColumn d04;
  2933. private System.Windows.Forms.DataGridViewTextBoxColumn c05;
  2934. private System.Windows.Forms.DataGridViewTextBoxColumn d05;
  2935. private System.Windows.Forms.DataGridViewTextBoxColumn c06;
  2936. private System.Windows.Forms.DataGridViewTextBoxColumn d06;
  2937. private System.Windows.Forms.DataGridViewTextBoxColumn c07;
  2938. private System.Windows.Forms.DataGridViewTextBoxColumn d07;
  2939. private System.Windows.Forms.DataGridViewTextBoxColumn c08;
  2940. private System.Windows.Forms.DataGridViewTextBoxColumn d08;
  2941. private System.Windows.Forms.DataGridViewTextBoxColumn c09;
  2942. private System.Windows.Forms.DataGridViewTextBoxColumn d09;
  2943. private System.Windows.Forms.DataGridViewTextBoxColumn c10;
  2944. private System.Windows.Forms.DataGridViewTextBoxColumn d10;
  2945. private System.Windows.Forms.DataGridViewTextBoxColumn c11;
  2946. private System.Windows.Forms.DataGridViewTextBoxColumn d11;
  2947. private System.Windows.Forms.DataGridViewTextBoxColumn c12;
  2948. private System.Windows.Forms.DataGridViewTextBoxColumn d12;
  2949. private System.Windows.Forms.DataGridViewTextBoxColumn c13;
  2950. private System.Windows.Forms.DataGridViewTextBoxColumn d13;
  2951. private System.Windows.Forms.DataGridViewTextBoxColumn c14;
  2952. private System.Windows.Forms.DataGridViewTextBoxColumn d14;
  2953. private System.Windows.Forms.DataGridViewTextBoxColumn c15;
  2954. private System.Windows.Forms.DataGridViewTextBoxColumn d15;
  2955. private System.Windows.Forms.DataGridViewTextBoxColumn c16;
  2956. private System.Windows.Forms.DataGridViewTextBoxColumn d16;
  2957. private System.Windows.Forms.DataGridViewTextBoxColumn c17;
  2958. private System.Windows.Forms.DataGridViewTextBoxColumn d17;
  2959. private System.Windows.Forms.DataGridViewTextBoxColumn c18;
  2960. private System.Windows.Forms.DataGridViewTextBoxColumn d18;
  2961. private System.Windows.Forms.DataGridViewTextBoxColumn c19;
  2962. private System.Windows.Forms.DataGridViewTextBoxColumn d19;
  2963. private System.Windows.Forms.DataGridViewTextBoxColumn c20;
  2964. private System.Windows.Forms.DataGridViewTextBoxColumn d20;
  2965. private System.Windows.Forms.DataGridViewTextBoxColumn c21;
  2966. private System.Windows.Forms.DataGridViewTextBoxColumn d21;
  2967. private System.Windows.Forms.DataGridViewTextBoxColumn c22;
  2968. private System.Windows.Forms.DataGridViewTextBoxColumn d22;
  2969. private System.Windows.Forms.DataGridViewTextBoxColumn c23;
  2970. private System.Windows.Forms.DataGridViewTextBoxColumn d23;
  2971. private System.Windows.Forms.DataGridViewTextBoxColumn c24;
  2972. private System.Windows.Forms.DataGridViewTextBoxColumn d24;
  2973. private System.Windows.Forms.DataGridViewTextBoxColumn c25;
  2974. private System.Windows.Forms.DataGridViewTextBoxColumn d25;
  2975. private System.Windows.Forms.DataGridViewTextBoxColumn c26;
  2976. private System.Windows.Forms.DataGridViewTextBoxColumn d26;
  2977. private System.Windows.Forms.DataGridViewTextBoxColumn c27;
  2978. private System.Windows.Forms.DataGridViewTextBoxColumn d27;
  2979. private System.Windows.Forms.DataGridViewTextBoxColumn c28;
  2980. private System.Windows.Forms.DataGridViewTextBoxColumn d28;
  2981. private System.Windows.Forms.DataGridViewTextBoxColumn c29;
  2982. private System.Windows.Forms.DataGridViewTextBoxColumn d29;
  2983. private System.Windows.Forms.DataGridViewTextBoxColumn c30;
  2984. private System.Windows.Forms.DataGridViewTextBoxColumn d30;
  2985. private System.Windows.Forms.DataGridViewTextBoxColumn c31;
  2986. private System.Windows.Forms.DataGridViewTextBoxColumn d31;
  2987. }
  2988. }