FrmCGpRk.Designer.cs 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. namespace Core.StlMes.Client.BuyBillet
  2. {
  3. partial class FrmCGpRk
  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. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("供应商");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合同号");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("钢种", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("断面");
  34. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯类型");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("单倍坯长");
  37. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("倍尺");
  39. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯长度");
  41. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("合同量");
  43. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("预报条数");
  45. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO_PK");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPBUYPLANID");
  48. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("倍尺");
  63. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("支数");
  65. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("重量");
  67. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯长度");
  69. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("理论重量");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯理论长度");
  72. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("管坯理论重量");
  74. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  75. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  77. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  87. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  88. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  89. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("炉号");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("判定炉号");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("支数");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("重量");
  94. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  96. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  101. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  103. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("count");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weight");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bc");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_len");
  112. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  122. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTOCK_DOC");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JUDGE_STOVE_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GRADENAME");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDER_NO");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_COUNT");
  132. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WEIGHT");
  134. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATE_TIME");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GPREQ_ID");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
  138. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  139. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  140. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  141. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  142. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  152. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("storage_name");
  153. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("jugde_apply_code");
  154. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("judge_stove_no");
  155. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("material_name");
  156. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradename");
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("fix_len");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_count");
  159. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("act_weight");
  161. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("node_fur_flag");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
  164. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  165. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  166. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  167. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  170. Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
  171. Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
  172. Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
  173. Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
  174. Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
  175. Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
  176. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  177. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  178. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  179. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  180. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  181. this.ug_orders = new Infragistics.Win.UltraWinGrid.UltraGrid();
  182. this.ds_orders = new System.Data.DataSet();
  183. this.dataTable2 = new System.Data.DataTable();
  184. this.dataColumn5 = new System.Data.DataColumn();
  185. this.dataColumn6 = new System.Data.DataColumn();
  186. this.dataColumn7 = new System.Data.DataColumn();
  187. this.dataColumn8 = new System.Data.DataColumn();
  188. this.dataColumn9 = new System.Data.DataColumn();
  189. this.dataColumn10 = new System.Data.DataColumn();
  190. this.dataColumn11 = new System.Data.DataColumn();
  191. this.dataColumn12 = new System.Data.DataColumn();
  192. this.dataColumn13 = new System.Data.DataColumn();
  193. this.dataColumn17 = new System.Data.DataColumn();
  194. this.dataColumn18 = new System.Data.DataColumn();
  195. this.dataColumn38 = new System.Data.DataColumn();
  196. this.ug_rukinfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
  197. this.ds_rukuinfo = new System.Data.DataSet();
  198. this.dataTable3 = new System.Data.DataTable();
  199. this.dataColumn14 = new System.Data.DataColumn();
  200. this.dataColumn15 = new System.Data.DataColumn();
  201. this.dataColumn16 = new System.Data.DataColumn();
  202. this.dataColumn40 = new System.Data.DataColumn();
  203. this.dataColumn51 = new System.Data.DataColumn();
  204. this.dataColumn52 = new System.Data.DataColumn();
  205. this.dataColumn53 = new System.Data.DataColumn();
  206. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  207. this.txt_location = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  208. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  209. this.ck_sglcode = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  210. this.ck_jielu = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  211. this.txt_stove_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  212. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  213. this.txt_judge_stove_no = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  214. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  215. this.cb_level = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  216. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  217. this.txt_carno = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  218. this.lbl_carno = new Infragistics.Win.Misc.UltraLabel();
  219. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  220. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  221. this.ug_dcyb = new Infragistics.Win.UltraWinGrid.UltraGrid();
  222. this.ds_dcyb = new System.Data.DataSet();
  223. this.dataTable1 = new System.Data.DataTable();
  224. this.dataColumn1 = new System.Data.DataColumn();
  225. this.dataColumn2 = new System.Data.DataColumn();
  226. this.dataColumn3 = new System.Data.DataColumn();
  227. this.dataColumn4 = new System.Data.DataColumn();
  228. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  229. this.cb_stock = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  230. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  231. this.cb_supplier = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  232. this.txt_orderno = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  233. this.ck_orderno = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  234. this.cb_location = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  235. this.ck_supplier = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  236. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  237. this.ug_rkinfo_c = new Infragistics.Win.UltraWinGrid.UltraGrid();
  238. this.ds_rkinfo_c = new System.Data.DataSet();
  239. this.dataTable6 = new System.Data.DataTable();
  240. this.dataColumn35 = new System.Data.DataColumn();
  241. this.dataColumn36 = new System.Data.DataColumn();
  242. this.dataColumn37 = new System.Data.DataColumn();
  243. this.dataColumn41 = new System.Data.DataColumn();
  244. this.ug_rkinfo_p = new Infragistics.Win.UltraWinGrid.UltraGrid();
  245. this.ds_rkinfo_p = new System.Data.DataSet();
  246. this.dataTable5 = new System.Data.DataTable();
  247. this.dataColumn27 = new System.Data.DataColumn();
  248. this.dataColumn28 = new System.Data.DataColumn();
  249. this.dataColumn29 = new System.Data.DataColumn();
  250. this.dataColumn30 = new System.Data.DataColumn();
  251. this.dataColumn31 = new System.Data.DataColumn();
  252. this.dataColumn32 = new System.Data.DataColumn();
  253. this.dataColumn33 = new System.Data.DataColumn();
  254. this.dataColumn34 = new System.Data.DataColumn();
  255. this.dataColumn39 = new System.Data.DataColumn();
  256. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  257. this.cb_supplier_cd = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  258. this.cb_stock_cd = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  259. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  260. this.txt_stove_judgeno_cd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  261. this.ultraCheckEditor3 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  262. this.txt_orderno_cd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  263. this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  264. this.ultraCheckEditor2 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  265. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  266. this.ug_wgpstockinfo = new Infragistics.Win.UltraWinGrid.UltraGrid();
  267. this.ds_stockinfo_qry = new System.Data.DataSet();
  268. this.dataTable7 = new System.Data.DataTable();
  269. this.dataColumn42 = new System.Data.DataColumn();
  270. this.dataColumn43 = new System.Data.DataColumn();
  271. this.dataColumn44 = new System.Data.DataColumn();
  272. this.dataColumn45 = new System.Data.DataColumn();
  273. this.dataColumn46 = new System.Data.DataColumn();
  274. this.dataColumn47 = new System.Data.DataColumn();
  275. this.dataColumn48 = new System.Data.DataColumn();
  276. this.dataColumn49 = new System.Data.DataColumn();
  277. this.dataColumn50 = new System.Data.DataColumn();
  278. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  279. this.cb_stock_jl = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  280. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  281. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  282. this.txt_judge_stoveno_jl = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  283. this.ds_stockinfo = new System.Data.DataSet();
  284. this.dataTable4 = new System.Data.DataTable();
  285. this.dataColumn19 = new System.Data.DataColumn();
  286. this.dataColumn20 = new System.Data.DataColumn();
  287. this.dataColumn21 = new System.Data.DataColumn();
  288. this.dataColumn22 = new System.Data.DataColumn();
  289. this.dataColumn23 = new System.Data.DataColumn();
  290. this.dataColumn24 = new System.Data.DataColumn();
  291. this.dataColumn25 = new System.Data.DataColumn();
  292. this.dataColumn26 = new System.Data.DataColumn();
  293. this.tabC = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  294. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  295. this.ultraTabPageControl1.SuspendLayout();
  296. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  297. this.splitContainer1.Panel1.SuspendLayout();
  298. this.splitContainer1.Panel2.SuspendLayout();
  299. this.splitContainer1.SuspendLayout();
  300. ((System.ComponentModel.ISupportInitialize)(this.ug_orders)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.ds_orders)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.ug_rukinfo)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.ds_rukuinfo)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  307. this.ultraGroupBox2.SuspendLayout();
  308. ((System.ComponentModel.ISupportInitialize)(this.txt_location)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.ck_sglcode)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.ck_jielu)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.txt_stove_no)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stove_no)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.cb_level)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.txt_carno)).BeginInit();
  315. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  316. this.ultraExpandableGroupBox1.SuspendLayout();
  317. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  318. ((System.ComponentModel.ISupportInitialize)(this.ug_dcyb)).BeginInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.ds_dcyb)).BeginInit();
  320. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  321. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  322. this.ultraGroupBox1.SuspendLayout();
  323. ((System.ComponentModel.ISupportInitialize)(this.cb_stock)).BeginInit();
  324. ((System.ComponentModel.ISupportInitialize)(this.cb_supplier)).BeginInit();
  325. ((System.ComponentModel.ISupportInitialize)(this.txt_orderno)).BeginInit();
  326. ((System.ComponentModel.ISupportInitialize)(this.ck_orderno)).BeginInit();
  327. ((System.ComponentModel.ISupportInitialize)(this.cb_location)).BeginInit();
  328. ((System.ComponentModel.ISupportInitialize)(this.ck_supplier)).BeginInit();
  329. this.ultraTabPageControl2.SuspendLayout();
  330. ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_c)).BeginInit();
  331. ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_c)).BeginInit();
  332. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  333. ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_p)).BeginInit();
  334. ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_p)).BeginInit();
  335. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  336. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  337. this.ultraGroupBox4.SuspendLayout();
  338. ((System.ComponentModel.ISupportInitialize)(this.cb_supplier_cd)).BeginInit();
  339. ((System.ComponentModel.ISupportInitialize)(this.cb_stock_cd)).BeginInit();
  340. ((System.ComponentModel.ISupportInitialize)(this.txt_stove_judgeno_cd)).BeginInit();
  341. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).BeginInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.txt_orderno_cd)).BeginInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).BeginInit();
  344. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).BeginInit();
  345. this.ultraTabPageControl3.SuspendLayout();
  346. ((System.ComponentModel.ISupportInitialize)(this.ug_wgpstockinfo)).BeginInit();
  347. ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo_qry)).BeginInit();
  348. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  349. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  350. this.ultraGroupBox3.SuspendLayout();
  351. ((System.ComponentModel.ISupportInitialize)(this.cb_stock_jl)).BeginInit();
  352. ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stoveno_jl)).BeginInit();
  353. ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo)).BeginInit();
  354. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  355. ((System.ComponentModel.ISupportInitialize)(this.tabC)).BeginInit();
  356. this.tabC.SuspendLayout();
  357. this.SuspendLayout();
  358. //
  359. // ultraTabPageControl1
  360. //
  361. this.ultraTabPageControl1.Controls.Add(this.splitContainer1);
  362. this.ultraTabPageControl1.Controls.Add(this.ultraExpandableGroupBox1);
  363. this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox1);
  364. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 1);
  365. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  366. this.ultraTabPageControl1.Size = new System.Drawing.Size(1121, 539);
  367. //
  368. // splitContainer1
  369. //
  370. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  371. this.splitContainer1.Location = new System.Drawing.Point(26, 32);
  372. this.splitContainer1.Name = "splitContainer1";
  373. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  374. //
  375. // splitContainer1.Panel1
  376. //
  377. this.splitContainer1.Panel1.Controls.Add(this.ug_orders);
  378. //
  379. // splitContainer1.Panel2
  380. //
  381. this.splitContainer1.Panel2.Controls.Add(this.ug_rukinfo);
  382. this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox2);
  383. this.splitContainer1.Size = new System.Drawing.Size(1095, 507);
  384. this.splitContainer1.SplitterDistance = 216;
  385. this.splitContainer1.TabIndex = 2;
  386. //
  387. // ug_orders
  388. //
  389. this.ug_orders.DataSource = this.ds_orders;
  390. appearance103.BackColor = System.Drawing.SystemColors.Window;
  391. appearance103.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  392. this.ug_orders.DisplayLayout.Appearance = appearance103;
  393. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  394. ultraGridColumn1.Header.VisiblePosition = 0;
  395. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  396. ultraGridColumn2.Header.VisiblePosition = 1;
  397. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  398. ultraGridColumn3.Header.VisiblePosition = 2;
  399. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  400. appearance1.TextHAlignAsString = "Right";
  401. ultraGridColumn4.CellAppearance = appearance1;
  402. ultraGridColumn4.Header.VisiblePosition = 3;
  403. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  404. ultraGridColumn5.Header.VisiblePosition = 4;
  405. ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  406. appearance2.TextHAlignAsString = "Right";
  407. ultraGridColumn6.CellAppearance = appearance2;
  408. ultraGridColumn6.Header.VisiblePosition = 5;
  409. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  410. appearance3.TextHAlignAsString = "Right";
  411. ultraGridColumn7.CellAppearance = appearance3;
  412. ultraGridColumn7.Header.VisiblePosition = 6;
  413. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  414. appearance4.TextHAlignAsString = "Right";
  415. ultraGridColumn8.CellAppearance = appearance4;
  416. ultraGridColumn8.Header.VisiblePosition = 7;
  417. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  418. appearance5.TextHAlignAsString = "Right";
  419. ultraGridColumn9.CellAppearance = appearance5;
  420. ultraGridColumn9.Header.VisiblePosition = 8;
  421. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  422. appearance6.TextHAlignAsString = "Right";
  423. ultraGridColumn10.CellAppearance = appearance6;
  424. ultraGridColumn10.Header.VisiblePosition = 9;
  425. ultraGridColumn11.Header.VisiblePosition = 10;
  426. ultraGridColumn11.Hidden = true;
  427. ultraGridColumn12.Header.VisiblePosition = 11;
  428. ultraGridColumn12.Hidden = true;
  429. ultraGridBand1.Columns.AddRange(new object[] {
  430. ultraGridColumn1,
  431. ultraGridColumn2,
  432. ultraGridColumn3,
  433. ultraGridColumn4,
  434. ultraGridColumn5,
  435. ultraGridColumn6,
  436. ultraGridColumn7,
  437. ultraGridColumn8,
  438. ultraGridColumn9,
  439. ultraGridColumn10,
  440. ultraGridColumn11,
  441. ultraGridColumn12});
  442. this.ug_orders.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  443. this.ug_orders.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  444. appearance31.TextHAlignAsString = "Left";
  445. this.ug_orders.DisplayLayout.CaptionAppearance = appearance31;
  446. this.ug_orders.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  447. appearance32.BackColor = System.Drawing.SystemColors.ActiveBorder;
  448. appearance32.BackColor2 = System.Drawing.SystemColors.ControlDark;
  449. appearance32.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  450. appearance32.BorderColor = System.Drawing.SystemColors.Window;
  451. this.ug_orders.DisplayLayout.GroupByBox.Appearance = appearance32;
  452. appearance33.ForeColor = System.Drawing.SystemColors.GrayText;
  453. this.ug_orders.DisplayLayout.GroupByBox.BandLabelAppearance = appearance33;
  454. this.ug_orders.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  455. this.ug_orders.DisplayLayout.GroupByBox.Hidden = true;
  456. appearance80.BackColor = System.Drawing.SystemColors.ControlLightLight;
  457. appearance80.BackColor2 = System.Drawing.SystemColors.Control;
  458. appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  459. appearance80.ForeColor = System.Drawing.SystemColors.GrayText;
  460. this.ug_orders.DisplayLayout.GroupByBox.PromptAppearance = appearance80;
  461. this.ug_orders.DisplayLayout.MaxColScrollRegions = 1;
  462. this.ug_orders.DisplayLayout.MaxRowScrollRegions = 1;
  463. appearance81.BackColor = System.Drawing.SystemColors.Window;
  464. appearance81.ForeColor = System.Drawing.SystemColors.ControlText;
  465. this.ug_orders.DisplayLayout.Override.ActiveCellAppearance = appearance81;
  466. appearance82.BackColor = System.Drawing.SystemColors.Highlight;
  467. appearance82.ForeColor = System.Drawing.SystemColors.HighlightText;
  468. this.ug_orders.DisplayLayout.Override.ActiveRowAppearance = appearance82;
  469. this.ug_orders.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  470. this.ug_orders.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  471. appearance83.BackColor = System.Drawing.SystemColors.Window;
  472. this.ug_orders.DisplayLayout.Override.CardAreaAppearance = appearance83;
  473. appearance84.BorderColor = System.Drawing.Color.Silver;
  474. appearance84.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  475. this.ug_orders.DisplayLayout.Override.CellAppearance = appearance84;
  476. this.ug_orders.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  477. this.ug_orders.DisplayLayout.Override.CellPadding = 0;
  478. appearance85.BackColor = System.Drawing.SystemColors.Control;
  479. appearance85.BackColor2 = System.Drawing.SystemColors.ControlDark;
  480. appearance85.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  481. appearance85.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  482. appearance85.BorderColor = System.Drawing.SystemColors.Window;
  483. this.ug_orders.DisplayLayout.Override.GroupByRowAppearance = appearance85;
  484. appearance86.TextHAlignAsString = "Left";
  485. this.ug_orders.DisplayLayout.Override.HeaderAppearance = appearance86;
  486. this.ug_orders.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  487. this.ug_orders.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  488. appearance87.BackColor = System.Drawing.SystemColors.Window;
  489. appearance87.BorderColor = System.Drawing.Color.Silver;
  490. this.ug_orders.DisplayLayout.Override.RowAppearance = appearance87;
  491. this.ug_orders.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  492. appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
  493. this.ug_orders.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
  494. this.ug_orders.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  495. this.ug_orders.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  496. this.ug_orders.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  497. this.ug_orders.Dock = System.Windows.Forms.DockStyle.Fill;
  498. this.ug_orders.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  499. this.ug_orders.Location = new System.Drawing.Point(0, 0);
  500. this.ug_orders.Name = "ug_orders";
  501. this.ug_orders.Size = new System.Drawing.Size(1095, 216);
  502. this.ug_orders.TabIndex = 0;
  503. this.ug_orders.Text = "外购坯合同";
  504. this.ug_orders.AfterRowActivate += new System.EventHandler(this.ug_orders_AfterRowActivate);
  505. this.ug_orders.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ug_orders_ClickCell);
  506. this.ug_orders.Click += new System.EventHandler(this.ug_orders_Click);
  507. //
  508. // ds_orders
  509. //
  510. this.ds_orders.DataSetName = "NewDataSet";
  511. this.ds_orders.Tables.AddRange(new System.Data.DataTable[] {
  512. this.dataTable2});
  513. //
  514. // dataTable2
  515. //
  516. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  517. this.dataColumn5,
  518. this.dataColumn6,
  519. this.dataColumn7,
  520. this.dataColumn8,
  521. this.dataColumn9,
  522. this.dataColumn10,
  523. this.dataColumn11,
  524. this.dataColumn12,
  525. this.dataColumn13,
  526. this.dataColumn17,
  527. this.dataColumn18,
  528. this.dataColumn38});
  529. this.dataTable2.TableName = "Table1";
  530. //
  531. // dataColumn5
  532. //
  533. this.dataColumn5.ColumnName = "供应商";
  534. //
  535. // dataColumn6
  536. //
  537. this.dataColumn6.ColumnName = "合同号";
  538. //
  539. // dataColumn7
  540. //
  541. this.dataColumn7.ColumnName = "钢种";
  542. //
  543. // dataColumn8
  544. //
  545. this.dataColumn8.ColumnName = "断面";
  546. //
  547. // dataColumn9
  548. //
  549. this.dataColumn9.ColumnName = "管坯类型";
  550. //
  551. // dataColumn10
  552. //
  553. this.dataColumn10.ColumnName = "单倍坯长";
  554. this.dataColumn10.DataType = typeof(int);
  555. //
  556. // dataColumn11
  557. //
  558. this.dataColumn11.ColumnName = "倍尺";
  559. this.dataColumn11.DataType = typeof(int);
  560. //
  561. // dataColumn12
  562. //
  563. this.dataColumn12.ColumnName = "管坯长度";
  564. this.dataColumn12.DataType = typeof(int);
  565. //
  566. // dataColumn13
  567. //
  568. this.dataColumn13.ColumnName = "合同量";
  569. this.dataColumn13.DataType = typeof(decimal);
  570. //
  571. // dataColumn17
  572. //
  573. this.dataColumn17.ColumnName = "预报条数";
  574. this.dataColumn17.DataType = typeof(int);
  575. //
  576. // dataColumn18
  577. //
  578. this.dataColumn18.ColumnName = "ORD_NO_PK";
  579. //
  580. // dataColumn38
  581. //
  582. this.dataColumn38.ColumnName = "GPBUYPLANID";
  583. //
  584. // ug_rukinfo
  585. //
  586. this.ug_rukinfo.DataSource = this.ds_rukuinfo;
  587. appearance30.BackColor = System.Drawing.SystemColors.Window;
  588. appearance30.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  589. this.ug_rukinfo.DisplayLayout.Appearance = appearance30;
  590. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  591. appearance7.TextHAlignAsString = "Right";
  592. ultraGridColumn13.CellAppearance = appearance7;
  593. ultraGridColumn13.Header.VisiblePosition = 0;
  594. ultraGridColumn13.Width = 143;
  595. appearance8.TextHAlignAsString = "Right";
  596. ultraGridColumn14.CellAppearance = appearance8;
  597. ultraGridColumn14.Header.VisiblePosition = 2;
  598. ultraGridColumn14.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  599. ultraGridColumn14.MaskInput = "n,nnn";
  600. ultraGridColumn14.PromptChar = ' ';
  601. ultraGridColumn14.Width = 181;
  602. appearance9.TextHAlignAsString = "Right";
  603. ultraGridColumn15.CellAppearance = appearance9;
  604. ultraGridColumn15.Header.VisiblePosition = 3;
  605. ultraGridColumn15.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  606. ultraGridColumn15.MaskInput = "n,nnn.nnn";
  607. ultraGridColumn15.PromptChar = ' ';
  608. ultraGridColumn15.Width = 176;
  609. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  610. appearance15.TextHAlignAsString = "Right";
  611. ultraGridColumn16.CellAppearance = appearance15;
  612. ultraGridColumn16.Header.VisiblePosition = 1;
  613. ultraGridColumn16.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  614. ultraGridColumn16.MaskInput = "nnn,nnn";
  615. ultraGridColumn16.Width = 110;
  616. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  617. ultraGridColumn17.Header.VisiblePosition = 4;
  618. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  619. appearance16.TextHAlignAsString = "Right";
  620. ultraGridColumn18.CellAppearance = appearance16;
  621. ultraGridColumn18.Header.VisiblePosition = 5;
  622. ultraGridColumn18.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  623. ultraGridColumn18.MaskInput = "nnn,nnn";
  624. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  625. appearance29.TextHAlignAsString = "Right";
  626. ultraGridColumn19.CellAppearance = appearance29;
  627. ultraGridColumn19.Header.VisiblePosition = 6;
  628. ultraGridBand2.Columns.AddRange(new object[] {
  629. ultraGridColumn13,
  630. ultraGridColumn14,
  631. ultraGridColumn15,
  632. ultraGridColumn16,
  633. ultraGridColumn17,
  634. ultraGridColumn18,
  635. ultraGridColumn19});
  636. this.ug_rukinfo.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  637. this.ug_rukinfo.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  638. appearance34.TextHAlignAsString = "Left";
  639. this.ug_rukinfo.DisplayLayout.CaptionAppearance = appearance34;
  640. this.ug_rukinfo.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  641. appearance35.BackColor = System.Drawing.SystemColors.ActiveBorder;
  642. appearance35.BackColor2 = System.Drawing.SystemColors.ControlDark;
  643. appearance35.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  644. appearance35.BorderColor = System.Drawing.SystemColors.Window;
  645. this.ug_rukinfo.DisplayLayout.GroupByBox.Appearance = appearance35;
  646. appearance36.ForeColor = System.Drawing.SystemColors.GrayText;
  647. this.ug_rukinfo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance36;
  648. this.ug_rukinfo.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  649. this.ug_rukinfo.DisplayLayout.GroupByBox.Hidden = true;
  650. appearance37.BackColor = System.Drawing.SystemColors.ControlLightLight;
  651. appearance37.BackColor2 = System.Drawing.SystemColors.Control;
  652. appearance37.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  653. appearance37.ForeColor = System.Drawing.SystemColors.GrayText;
  654. this.ug_rukinfo.DisplayLayout.GroupByBox.PromptAppearance = appearance37;
  655. this.ug_rukinfo.DisplayLayout.MaxColScrollRegions = 1;
  656. this.ug_rukinfo.DisplayLayout.MaxRowScrollRegions = 1;
  657. appearance38.BackColor = System.Drawing.SystemColors.Window;
  658. appearance38.ForeColor = System.Drawing.SystemColors.ControlText;
  659. this.ug_rukinfo.DisplayLayout.Override.ActiveCellAppearance = appearance38;
  660. appearance39.BackColor = System.Drawing.SystemColors.Highlight;
  661. appearance39.ForeColor = System.Drawing.SystemColors.HighlightText;
  662. this.ug_rukinfo.DisplayLayout.Override.ActiveRowAppearance = appearance39;
  663. this.ug_rukinfo.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  664. this.ug_rukinfo.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  665. appearance40.BackColor = System.Drawing.SystemColors.Window;
  666. this.ug_rukinfo.DisplayLayout.Override.CardAreaAppearance = appearance40;
  667. appearance41.BorderColor = System.Drawing.Color.Silver;
  668. appearance41.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  669. this.ug_rukinfo.DisplayLayout.Override.CellAppearance = appearance41;
  670. this.ug_rukinfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  671. this.ug_rukinfo.DisplayLayout.Override.CellPadding = 0;
  672. appearance42.BackColor = System.Drawing.SystemColors.Control;
  673. appearance42.BackColor2 = System.Drawing.SystemColors.ControlDark;
  674. appearance42.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  675. appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  676. appearance42.BorderColor = System.Drawing.SystemColors.Window;
  677. this.ug_rukinfo.DisplayLayout.Override.GroupByRowAppearance = appearance42;
  678. appearance43.TextHAlignAsString = "Left";
  679. this.ug_rukinfo.DisplayLayout.Override.HeaderAppearance = appearance43;
  680. this.ug_rukinfo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  681. this.ug_rukinfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  682. appearance44.BackColor = System.Drawing.SystemColors.Window;
  683. appearance44.BorderColor = System.Drawing.Color.Silver;
  684. this.ug_rukinfo.DisplayLayout.Override.RowAppearance = appearance44;
  685. this.ug_rukinfo.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  686. appearance45.BackColor = System.Drawing.SystemColors.ControlLight;
  687. this.ug_rukinfo.DisplayLayout.Override.TemplateAddRowAppearance = appearance45;
  688. this.ug_rukinfo.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  689. this.ug_rukinfo.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  690. this.ug_rukinfo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  691. this.ug_rukinfo.Dock = System.Windows.Forms.DockStyle.Fill;
  692. this.ug_rukinfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  693. this.ug_rukinfo.Location = new System.Drawing.Point(0, 26);
  694. this.ug_rukinfo.Name = "ug_rukinfo";
  695. this.ug_rukinfo.Size = new System.Drawing.Size(1095, 261);
  696. this.ug_rukinfo.TabIndex = 1;
  697. this.ug_rukinfo.Text = "实际入库信息";
  698. this.ug_rukinfo.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ug_rukinfo_AfterCellUpdate);
  699. //
  700. // ds_rukuinfo
  701. //
  702. this.ds_rukuinfo.DataSetName = "NewDataSet";
  703. this.ds_rukuinfo.Tables.AddRange(new System.Data.DataTable[] {
  704. this.dataTable3});
  705. //
  706. // dataTable3
  707. //
  708. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  709. this.dataColumn14,
  710. this.dataColumn15,
  711. this.dataColumn16,
  712. this.dataColumn40,
  713. this.dataColumn51,
  714. this.dataColumn52,
  715. this.dataColumn53});
  716. this.dataTable3.TableName = "Table1";
  717. //
  718. // dataColumn14
  719. //
  720. this.dataColumn14.ColumnName = "倍尺";
  721. this.dataColumn14.DataType = typeof(int);
  722. //
  723. // dataColumn15
  724. //
  725. this.dataColumn15.ColumnName = "支数";
  726. this.dataColumn15.DataType = typeof(int);
  727. //
  728. // dataColumn16
  729. //
  730. this.dataColumn16.ColumnName = "重量";
  731. this.dataColumn16.DataType = typeof(decimal);
  732. //
  733. // dataColumn40
  734. //
  735. this.dataColumn40.ColumnName = "管坯长度";
  736. this.dataColumn40.DataType = typeof(int);
  737. //
  738. // dataColumn51
  739. //
  740. this.dataColumn51.Caption = "理论重量";
  741. this.dataColumn51.ColumnName = "理论重量";
  742. this.dataColumn51.DataType = typeof(decimal);
  743. //
  744. // dataColumn52
  745. //
  746. this.dataColumn52.ColumnName = "管坯理论长度";
  747. this.dataColumn52.DataType = typeof(int);
  748. //
  749. // dataColumn53
  750. //
  751. this.dataColumn53.ColumnName = "管坯理论重量";
  752. this.dataColumn53.DataType = typeof(decimal);
  753. //
  754. // ultraGroupBox2
  755. //
  756. this.ultraGroupBox2.Controls.Add(this.txt_location);
  757. this.ultraGroupBox2.Controls.Add(this.ultraLabel1);
  758. this.ultraGroupBox2.Controls.Add(this.ck_sglcode);
  759. this.ultraGroupBox2.Controls.Add(this.ck_jielu);
  760. this.ultraGroupBox2.Controls.Add(this.txt_stove_no);
  761. this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
  762. this.ultraGroupBox2.Controls.Add(this.txt_judge_stove_no);
  763. this.ultraGroupBox2.Controls.Add(this.ultraLabel5);
  764. this.ultraGroupBox2.Controls.Add(this.cb_level);
  765. this.ultraGroupBox2.Controls.Add(this.ultraLabel4);
  766. this.ultraGroupBox2.Controls.Add(this.txt_carno);
  767. this.ultraGroupBox2.Controls.Add(this.lbl_carno);
  768. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  769. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  770. this.ultraGroupBox2.Name = "ultraGroupBox2";
  771. this.ultraGroupBox2.Size = new System.Drawing.Size(1095, 26);
  772. this.ultraGroupBox2.TabIndex = 0;
  773. this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  774. //
  775. // txt_location
  776. //
  777. editorButton1.Text = "库位";
  778. this.txt_location.ButtonsRight.Add(editorButton1);
  779. this.txt_location.Location = new System.Drawing.Point(321, 2);
  780. this.txt_location.Name = "txt_location";
  781. this.txt_location.ReadOnly = true;
  782. this.txt_location.Size = new System.Drawing.Size(100, 21);
  783. this.txt_location.TabIndex = 7;
  784. this.txt_location.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_location_EditorButtonClick);
  785. //
  786. // ultraLabel1
  787. //
  788. this.ultraLabel1.Location = new System.Drawing.Point(21, 3);
  789. this.ultraLabel1.Name = "ultraLabel1";
  790. this.ultraLabel1.Size = new System.Drawing.Size(37, 19);
  791. this.ultraLabel1.TabIndex = 0;
  792. this.ultraLabel1.Text = "炉号";
  793. //
  794. // ck_sglcode
  795. //
  796. this.ck_sglcode.Location = new System.Drawing.Point(3, 0);
  797. this.ck_sglcode.Name = "ck_sglcode";
  798. this.ck_sglcode.Size = new System.Drawing.Size(18, 20);
  799. this.ck_sglcode.TabIndex = 4;
  800. this.ck_sglcode.CheckedChanged += new System.EventHandler(this.ck_sglcode_CheckedChanged);
  801. //
  802. // ck_jielu
  803. //
  804. this.ck_jielu.Checked = true;
  805. this.ck_jielu.CheckState = System.Windows.Forms.CheckState.Checked;
  806. this.ck_jielu.Location = new System.Drawing.Point(525, 2);
  807. this.ck_jielu.Name = "ck_jielu";
  808. this.ck_jielu.Size = new System.Drawing.Size(48, 20);
  809. this.ck_jielu.TabIndex = 11;
  810. this.ck_jielu.Text = "结炉";
  811. //
  812. // txt_stove_no
  813. //
  814. this.txt_stove_no.Enabled = false;
  815. this.txt_stove_no.Location = new System.Drawing.Point(58, 2);
  816. this.txt_stove_no.Name = "txt_stove_no";
  817. this.txt_stove_no.Size = new System.Drawing.Size(84, 21);
  818. this.txt_stove_no.TabIndex = 1;
  819. //
  820. // ultraLabel2
  821. //
  822. this.ultraLabel2.Location = new System.Drawing.Point(145, 4);
  823. this.ultraLabel2.Name = "ultraLabel2";
  824. this.ultraLabel2.Size = new System.Drawing.Size(58, 23);
  825. this.ultraLabel2.TabIndex = 2;
  826. this.ultraLabel2.Text = "判定炉号";
  827. //
  828. // txt_judge_stove_no
  829. //
  830. this.txt_judge_stove_no.Enabled = false;
  831. this.txt_judge_stove_no.Location = new System.Drawing.Point(206, 1);
  832. this.txt_judge_stove_no.Name = "txt_judge_stove_no";
  833. this.txt_judge_stove_no.Size = new System.Drawing.Size(80, 21);
  834. this.txt_judge_stove_no.TabIndex = 3;
  835. //
  836. // ultraLabel5
  837. //
  838. this.ultraLabel5.Location = new System.Drawing.Point(286, 4);
  839. this.ultraLabel5.Name = "ultraLabel5";
  840. this.ultraLabel5.Size = new System.Drawing.Size(33, 23);
  841. this.ultraLabel5.TabIndex = 9;
  842. this.ultraLabel5.Text = "库位";
  843. //
  844. // cb_level
  845. //
  846. this.cb_level.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  847. this.cb_level.Location = new System.Drawing.Point(461, 0);
  848. this.cb_level.Name = "cb_level";
  849. this.cb_level.Size = new System.Drawing.Size(60, 21);
  850. this.cb_level.TabIndex = 8;
  851. //
  852. // ultraLabel4
  853. //
  854. this.ultraLabel4.Location = new System.Drawing.Point(428, 4);
  855. this.ultraLabel4.Name = "ultraLabel4";
  856. this.ultraLabel4.Size = new System.Drawing.Size(33, 23);
  857. this.ultraLabel4.TabIndex = 7;
  858. this.ultraLabel4.Text = "层数";
  859. //
  860. // txt_carno
  861. //
  862. this.txt_carno.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  863. this.txt_carno.Location = new System.Drawing.Point(606, 3);
  864. this.txt_carno.Name = "txt_carno";
  865. this.txt_carno.Size = new System.Drawing.Size(115, 21);
  866. this.txt_carno.TabIndex = 4;
  867. //
  868. // lbl_carno
  869. //
  870. this.lbl_carno.Location = new System.Drawing.Point(576, 4);
  871. this.lbl_carno.Name = "lbl_carno";
  872. this.lbl_carno.Size = new System.Drawing.Size(30, 23);
  873. this.lbl_carno.TabIndex = 0;
  874. this.lbl_carno.Text = "车号";
  875. //
  876. // ultraExpandableGroupBox1
  877. //
  878. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  879. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  880. this.ultraExpandableGroupBox1.Expanded = false;
  881. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(332, 507);
  882. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftInsideBorder;
  883. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 32);
  884. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  885. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(26, 507);
  886. this.ultraExpandableGroupBox1.TabIndex = 1;
  887. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  888. //
  889. // ultraExpandableGroupBoxPanel1
  890. //
  891. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ug_dcyb);
  892. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(-10000, -10000);
  893. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  894. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(311, 501);
  895. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  896. this.ultraExpandableGroupBoxPanel1.Visible = false;
  897. //
  898. // ug_dcyb
  899. //
  900. this.ug_dcyb.DataSource = this.ds_dcyb;
  901. appearance53.BackColor = System.Drawing.SystemColors.Window;
  902. appearance53.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  903. this.ug_dcyb.DisplayLayout.Appearance = appearance53;
  904. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  905. ultraGridColumn20.Header.VisiblePosition = 0;
  906. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  907. ultraGridColumn21.Header.VisiblePosition = 1;
  908. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  909. ultraGridColumn22.Header.VisiblePosition = 2;
  910. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  911. ultraGridColumn23.Header.VisiblePosition = 3;
  912. ultraGridBand3.Columns.AddRange(new object[] {
  913. ultraGridColumn20,
  914. ultraGridColumn21,
  915. ultraGridColumn22,
  916. ultraGridColumn23});
  917. this.ug_dcyb.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  918. this.ug_dcyb.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  919. appearance54.TextHAlignAsString = "Left";
  920. this.ug_dcyb.DisplayLayout.CaptionAppearance = appearance54;
  921. this.ug_dcyb.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  922. appearance55.BackColor = System.Drawing.SystemColors.ActiveBorder;
  923. appearance55.BackColor2 = System.Drawing.SystemColors.ControlDark;
  924. appearance55.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  925. appearance55.BorderColor = System.Drawing.SystemColors.Window;
  926. this.ug_dcyb.DisplayLayout.GroupByBox.Appearance = appearance55;
  927. appearance56.ForeColor = System.Drawing.SystemColors.GrayText;
  928. this.ug_dcyb.DisplayLayout.GroupByBox.BandLabelAppearance = appearance56;
  929. this.ug_dcyb.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  930. this.ug_dcyb.DisplayLayout.GroupByBox.Hidden = true;
  931. appearance57.BackColor = System.Drawing.SystemColors.ControlLightLight;
  932. appearance57.BackColor2 = System.Drawing.SystemColors.Control;
  933. appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  934. appearance57.ForeColor = System.Drawing.SystemColors.GrayText;
  935. this.ug_dcyb.DisplayLayout.GroupByBox.PromptAppearance = appearance57;
  936. this.ug_dcyb.DisplayLayout.MaxColScrollRegions = 1;
  937. this.ug_dcyb.DisplayLayout.MaxRowScrollRegions = 1;
  938. appearance58.BackColor = System.Drawing.SystemColors.Window;
  939. appearance58.ForeColor = System.Drawing.SystemColors.ControlText;
  940. this.ug_dcyb.DisplayLayout.Override.ActiveCellAppearance = appearance58;
  941. appearance59.BackColor = System.Drawing.SystemColors.Highlight;
  942. appearance59.ForeColor = System.Drawing.SystemColors.HighlightText;
  943. this.ug_dcyb.DisplayLayout.Override.ActiveRowAppearance = appearance59;
  944. this.ug_dcyb.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  945. this.ug_dcyb.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  946. appearance60.BackColor = System.Drawing.SystemColors.Window;
  947. this.ug_dcyb.DisplayLayout.Override.CardAreaAppearance = appearance60;
  948. appearance61.BorderColor = System.Drawing.Color.Silver;
  949. appearance61.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  950. this.ug_dcyb.DisplayLayout.Override.CellAppearance = appearance61;
  951. this.ug_dcyb.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  952. this.ug_dcyb.DisplayLayout.Override.CellPadding = 0;
  953. appearance62.BackColor = System.Drawing.SystemColors.Control;
  954. appearance62.BackColor2 = System.Drawing.SystemColors.ControlDark;
  955. appearance62.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  956. appearance62.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  957. appearance62.BorderColor = System.Drawing.SystemColors.Window;
  958. this.ug_dcyb.DisplayLayout.Override.GroupByRowAppearance = appearance62;
  959. appearance63.TextHAlignAsString = "Left";
  960. this.ug_dcyb.DisplayLayout.Override.HeaderAppearance = appearance63;
  961. this.ug_dcyb.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  962. this.ug_dcyb.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  963. appearance64.BackColor = System.Drawing.SystemColors.Window;
  964. appearance64.BorderColor = System.Drawing.Color.Silver;
  965. this.ug_dcyb.DisplayLayout.Override.RowAppearance = appearance64;
  966. this.ug_dcyb.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  967. appearance65.BackColor = System.Drawing.SystemColors.ControlLight;
  968. this.ug_dcyb.DisplayLayout.Override.TemplateAddRowAppearance = appearance65;
  969. this.ug_dcyb.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  970. this.ug_dcyb.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  971. this.ug_dcyb.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  972. this.ug_dcyb.Dock = System.Windows.Forms.DockStyle.Fill;
  973. this.ug_dcyb.Location = new System.Drawing.Point(0, 0);
  974. this.ug_dcyb.Name = "ug_dcyb";
  975. this.ug_dcyb.Size = new System.Drawing.Size(311, 501);
  976. this.ug_dcyb.TabIndex = 2;
  977. this.ug_dcyb.Text = "到厂计划";
  978. this.ug_dcyb.UseOsThemes = Infragistics.Win.DefaultableBoolean.True;
  979. //
  980. // ds_dcyb
  981. //
  982. this.ds_dcyb.DataSetName = "NewDataSet";
  983. this.ds_dcyb.Tables.AddRange(new System.Data.DataTable[] {
  984. this.dataTable1});
  985. //
  986. // dataTable1
  987. //
  988. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  989. this.dataColumn1,
  990. this.dataColumn2,
  991. this.dataColumn3,
  992. this.dataColumn4});
  993. this.dataTable1.TableName = "Table1";
  994. //
  995. // dataColumn1
  996. //
  997. this.dataColumn1.ColumnName = "炉号";
  998. //
  999. // dataColumn2
  1000. //
  1001. this.dataColumn2.ColumnName = "判定炉号";
  1002. //
  1003. // dataColumn3
  1004. //
  1005. this.dataColumn3.ColumnName = "支数";
  1006. //
  1007. // dataColumn4
  1008. //
  1009. this.dataColumn4.ColumnName = "重量";
  1010. //
  1011. // ultraGroupBox1
  1012. //
  1013. this.ultraGroupBox1.Controls.Add(this.cb_stock);
  1014. this.ultraGroupBox1.Controls.Add(this.ultraLabel3);
  1015. this.ultraGroupBox1.Controls.Add(this.cb_supplier);
  1016. this.ultraGroupBox1.Controls.Add(this.txt_orderno);
  1017. this.ultraGroupBox1.Controls.Add(this.ck_orderno);
  1018. this.ultraGroupBox1.Controls.Add(this.cb_location);
  1019. this.ultraGroupBox1.Controls.Add(this.ck_supplier);
  1020. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  1021. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1022. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1023. this.ultraGroupBox1.Size = new System.Drawing.Size(1121, 32);
  1024. this.ultraGroupBox1.TabIndex = 0;
  1025. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1026. //
  1027. // cb_stock
  1028. //
  1029. this.cb_stock.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1030. this.cb_stock.Location = new System.Drawing.Point(492, 5);
  1031. this.cb_stock.Name = "cb_stock";
  1032. this.cb_stock.Size = new System.Drawing.Size(114, 21);
  1033. this.cb_stock.TabIndex = 6;
  1034. this.cb_stock.SelectionChanged += new System.EventHandler(this.cb_stock_SelectionChanged);
  1035. //
  1036. // ultraLabel3
  1037. //
  1038. this.ultraLabel3.Location = new System.Drawing.Point(458, 9);
  1039. this.ultraLabel3.Name = "ultraLabel3";
  1040. this.ultraLabel3.Size = new System.Drawing.Size(33, 20);
  1041. this.ultraLabel3.TabIndex = 5;
  1042. this.ultraLabel3.Text = "仓库";
  1043. //
  1044. // cb_supplier
  1045. //
  1046. this.cb_supplier.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1047. this.cb_supplier.Location = new System.Drawing.Point(81, 4);
  1048. this.cb_supplier.Name = "cb_supplier";
  1049. this.cb_supplier.Size = new System.Drawing.Size(114, 21);
  1050. this.cb_supplier.TabIndex = 4;
  1051. //
  1052. // txt_orderno
  1053. //
  1054. this.txt_orderno.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1055. this.txt_orderno.Enabled = false;
  1056. this.txt_orderno.Location = new System.Drawing.Point(264, 5);
  1057. this.txt_orderno.Name = "txt_orderno";
  1058. this.txt_orderno.Size = new System.Drawing.Size(192, 21);
  1059. this.txt_orderno.TabIndex = 3;
  1060. //
  1061. // ck_orderno
  1062. //
  1063. this.ck_orderno.Location = new System.Drawing.Point(200, 6);
  1064. this.ck_orderno.Name = "ck_orderno";
  1065. this.ck_orderno.Size = new System.Drawing.Size(61, 20);
  1066. this.ck_orderno.TabIndex = 2;
  1067. this.ck_orderno.Text = "合同号";
  1068. this.ck_orderno.CheckedChanged += new System.EventHandler(this.ck_orderno_CheckedChanged);
  1069. //
  1070. // cb_location
  1071. //
  1072. this.cb_location.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1073. this.cb_location.Location = new System.Drawing.Point(618, 4);
  1074. this.cb_location.Name = "cb_location";
  1075. this.cb_location.Size = new System.Drawing.Size(102, 21);
  1076. this.cb_location.TabIndex = 10;
  1077. this.cb_location.Visible = false;
  1078. //
  1079. // ck_supplier
  1080. //
  1081. this.ck_supplier.Checked = true;
  1082. this.ck_supplier.CheckState = System.Windows.Forms.CheckState.Checked;
  1083. this.ck_supplier.Location = new System.Drawing.Point(18, 4);
  1084. this.ck_supplier.Name = "ck_supplier";
  1085. this.ck_supplier.Size = new System.Drawing.Size(61, 20);
  1086. this.ck_supplier.TabIndex = 0;
  1087. this.ck_supplier.Text = "供应商";
  1088. //
  1089. // ultraTabPageControl2
  1090. //
  1091. this.ultraTabPageControl2.Controls.Add(this.ug_rkinfo_c);
  1092. this.ultraTabPageControl2.Controls.Add(this.ug_rkinfo_p);
  1093. this.ultraTabPageControl2.Controls.Add(this.ultraGroupBox4);
  1094. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  1095. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1096. this.ultraTabPageControl2.Size = new System.Drawing.Size(1121, 539);
  1097. //
  1098. // ug_rkinfo_c
  1099. //
  1100. this.ug_rkinfo_c.DataSource = this.ds_rkinfo_c;
  1101. appearance66.BackColor = System.Drawing.SystemColors.Window;
  1102. appearance66.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1103. this.ug_rkinfo_c.DisplayLayout.Appearance = appearance66;
  1104. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1105. ultraGridColumn24.Header.VisiblePosition = 0;
  1106. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1107. ultraGridColumn25.Header.VisiblePosition = 1;
  1108. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1109. ultraGridColumn26.Header.VisiblePosition = 2;
  1110. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1111. ultraGridColumn27.Header.Caption = "管坯长度";
  1112. ultraGridColumn27.Header.VisiblePosition = 3;
  1113. ultraGridBand4.Columns.AddRange(new object[] {
  1114. ultraGridColumn24,
  1115. ultraGridColumn25,
  1116. ultraGridColumn26,
  1117. ultraGridColumn27});
  1118. this.ug_rkinfo_c.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  1119. this.ug_rkinfo_c.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1120. appearance67.TextHAlignAsString = "Left";
  1121. this.ug_rkinfo_c.DisplayLayout.CaptionAppearance = appearance67;
  1122. this.ug_rkinfo_c.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  1123. appearance68.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1124. appearance68.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1125. appearance68.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1126. appearance68.BorderColor = System.Drawing.SystemColors.Window;
  1127. this.ug_rkinfo_c.DisplayLayout.GroupByBox.Appearance = appearance68;
  1128. appearance69.ForeColor = System.Drawing.SystemColors.GrayText;
  1129. this.ug_rkinfo_c.DisplayLayout.GroupByBox.BandLabelAppearance = appearance69;
  1130. this.ug_rkinfo_c.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1131. this.ug_rkinfo_c.DisplayLayout.GroupByBox.Hidden = true;
  1132. appearance70.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1133. appearance70.BackColor2 = System.Drawing.SystemColors.Control;
  1134. appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1135. appearance70.ForeColor = System.Drawing.SystemColors.GrayText;
  1136. this.ug_rkinfo_c.DisplayLayout.GroupByBox.PromptAppearance = appearance70;
  1137. this.ug_rkinfo_c.DisplayLayout.MaxColScrollRegions = 1;
  1138. this.ug_rkinfo_c.DisplayLayout.MaxRowScrollRegions = 1;
  1139. appearance71.BackColor = System.Drawing.SystemColors.Window;
  1140. appearance71.ForeColor = System.Drawing.SystemColors.ControlText;
  1141. this.ug_rkinfo_c.DisplayLayout.Override.ActiveCellAppearance = appearance71;
  1142. appearance72.BackColor = System.Drawing.SystemColors.Highlight;
  1143. appearance72.ForeColor = System.Drawing.SystemColors.HighlightText;
  1144. this.ug_rkinfo_c.DisplayLayout.Override.ActiveRowAppearance = appearance72;
  1145. this.ug_rkinfo_c.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1146. this.ug_rkinfo_c.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1147. appearance73.BackColor = System.Drawing.SystemColors.Window;
  1148. this.ug_rkinfo_c.DisplayLayout.Override.CardAreaAppearance = appearance73;
  1149. appearance74.BorderColor = System.Drawing.Color.Silver;
  1150. appearance74.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1151. this.ug_rkinfo_c.DisplayLayout.Override.CellAppearance = appearance74;
  1152. this.ug_rkinfo_c.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1153. this.ug_rkinfo_c.DisplayLayout.Override.CellPadding = 0;
  1154. appearance76.BackColor = System.Drawing.SystemColors.Control;
  1155. appearance76.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1156. appearance76.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1157. appearance76.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1158. appearance76.BorderColor = System.Drawing.SystemColors.Window;
  1159. this.ug_rkinfo_c.DisplayLayout.Override.GroupByRowAppearance = appearance76;
  1160. appearance77.TextHAlignAsString = "Left";
  1161. this.ug_rkinfo_c.DisplayLayout.Override.HeaderAppearance = appearance77;
  1162. this.ug_rkinfo_c.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1163. this.ug_rkinfo_c.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1164. appearance78.BackColor = System.Drawing.SystemColors.Window;
  1165. appearance78.BorderColor = System.Drawing.Color.Silver;
  1166. this.ug_rkinfo_c.DisplayLayout.Override.RowAppearance = appearance78;
  1167. this.ug_rkinfo_c.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1168. appearance91.BackColor = System.Drawing.SystemColors.ControlLight;
  1169. this.ug_rkinfo_c.DisplayLayout.Override.TemplateAddRowAppearance = appearance91;
  1170. this.ug_rkinfo_c.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1171. this.ug_rkinfo_c.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1172. this.ug_rkinfo_c.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1173. this.ug_rkinfo_c.Dock = System.Windows.Forms.DockStyle.Fill;
  1174. this.ug_rkinfo_c.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1175. this.ug_rkinfo_c.Location = new System.Drawing.Point(0, 385);
  1176. this.ug_rkinfo_c.Name = "ug_rkinfo_c";
  1177. this.ug_rkinfo_c.Size = new System.Drawing.Size(1121, 154);
  1178. this.ug_rkinfo_c.TabIndex = 4;
  1179. this.ug_rkinfo_c.Text = "炉信息";
  1180. //
  1181. // ds_rkinfo_c
  1182. //
  1183. this.ds_rkinfo_c.DataSetName = "NewDataSet";
  1184. this.ds_rkinfo_c.Tables.AddRange(new System.Data.DataTable[] {
  1185. this.dataTable6});
  1186. //
  1187. // dataTable6
  1188. //
  1189. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  1190. this.dataColumn35,
  1191. this.dataColumn36,
  1192. this.dataColumn37,
  1193. this.dataColumn41});
  1194. this.dataTable6.TableName = "Table1";
  1195. //
  1196. // dataColumn35
  1197. //
  1198. this.dataColumn35.Caption = "支数";
  1199. this.dataColumn35.ColumnName = "count";
  1200. this.dataColumn35.DataType = typeof(int);
  1201. //
  1202. // dataColumn36
  1203. //
  1204. this.dataColumn36.Caption = "重量";
  1205. this.dataColumn36.ColumnName = "weight";
  1206. this.dataColumn36.DataType = typeof(decimal);
  1207. //
  1208. // dataColumn37
  1209. //
  1210. this.dataColumn37.Caption = "倍尺";
  1211. this.dataColumn37.ColumnName = "bc";
  1212. this.dataColumn37.DataType = typeof(int);
  1213. //
  1214. // dataColumn41
  1215. //
  1216. this.dataColumn41.ColumnName = "act_len";
  1217. //
  1218. // ug_rkinfo_p
  1219. //
  1220. this.ug_rkinfo_p.DataSource = this.ds_rkinfo_p;
  1221. appearance14.BackColor = System.Drawing.SystemColors.Window;
  1222. appearance14.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1223. this.ug_rkinfo_p.DisplayLayout.Appearance = appearance14;
  1224. ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1225. ultraGridColumn28.Header.VisiblePosition = 1;
  1226. ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1227. ultraGridColumn29.Header.VisiblePosition = 2;
  1228. ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1229. ultraGridColumn30.Header.VisiblePosition = 3;
  1230. ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1231. ultraGridColumn31.Header.VisiblePosition = 4;
  1232. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1233. ultraGridColumn32.Header.VisiblePosition = 5;
  1234. ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1235. appearance48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1236. appearance48.BackHatchStyle = Infragistics.Win.BackHatchStyle.None;
  1237. appearance48.TextHAlignAsString = "Right";
  1238. ultraGridColumn33.CellAppearance = appearance48;
  1239. ultraGridColumn33.Header.Caption = "总支数";
  1240. ultraGridColumn33.Header.VisiblePosition = 6;
  1241. ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1242. appearance50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1243. appearance50.BackHatchStyle = Infragistics.Win.BackHatchStyle.None;
  1244. appearance50.TextHAlignAsString = "Right";
  1245. ultraGridColumn34.CellAppearance = appearance50;
  1246. ultraGridColumn34.Header.Caption = "总重量";
  1247. ultraGridColumn34.Header.VisiblePosition = 7;
  1248. ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  1249. ultraGridColumn35.Header.VisiblePosition = 8;
  1250. ultraGridColumn36.Header.VisiblePosition = 9;
  1251. ultraGridColumn36.Hidden = true;
  1252. ultraGridColumn37.DataType = typeof(bool);
  1253. ultraGridColumn37.DefaultCellValue = false;
  1254. ultraGridColumn37.Header.Caption = "";
  1255. ultraGridColumn37.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
  1256. ultraGridColumn37.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
  1257. ultraGridColumn37.Header.VisiblePosition = 0;
  1258. ultraGridBand5.Columns.AddRange(new object[] {
  1259. ultraGridColumn28,
  1260. ultraGridColumn29,
  1261. ultraGridColumn30,
  1262. ultraGridColumn31,
  1263. ultraGridColumn32,
  1264. ultraGridColumn33,
  1265. ultraGridColumn34,
  1266. ultraGridColumn35,
  1267. ultraGridColumn36,
  1268. ultraGridColumn37});
  1269. this.ug_rkinfo_p.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  1270. this.ug_rkinfo_p.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1271. appearance17.TextHAlignAsString = "Left";
  1272. this.ug_rkinfo_p.DisplayLayout.CaptionAppearance = appearance17;
  1273. this.ug_rkinfo_p.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  1274. appearance18.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1275. appearance18.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1276. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1277. appearance18.BorderColor = System.Drawing.SystemColors.Window;
  1278. this.ug_rkinfo_p.DisplayLayout.GroupByBox.Appearance = appearance18;
  1279. appearance19.ForeColor = System.Drawing.SystemColors.GrayText;
  1280. this.ug_rkinfo_p.DisplayLayout.GroupByBox.BandLabelAppearance = appearance19;
  1281. this.ug_rkinfo_p.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1282. this.ug_rkinfo_p.DisplayLayout.GroupByBox.Hidden = true;
  1283. appearance20.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1284. appearance20.BackColor2 = System.Drawing.SystemColors.Control;
  1285. appearance20.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1286. appearance20.ForeColor = System.Drawing.SystemColors.GrayText;
  1287. this.ug_rkinfo_p.DisplayLayout.GroupByBox.PromptAppearance = appearance20;
  1288. this.ug_rkinfo_p.DisplayLayout.MaxColScrollRegions = 1;
  1289. this.ug_rkinfo_p.DisplayLayout.MaxRowScrollRegions = 1;
  1290. appearance21.BackColor = System.Drawing.SystemColors.Window;
  1291. appearance21.ForeColor = System.Drawing.SystemColors.ControlText;
  1292. this.ug_rkinfo_p.DisplayLayout.Override.ActiveCellAppearance = appearance21;
  1293. appearance22.BackColor = System.Drawing.SystemColors.Highlight;
  1294. appearance22.ForeColor = System.Drawing.SystemColors.HighlightText;
  1295. this.ug_rkinfo_p.DisplayLayout.Override.ActiveRowAppearance = appearance22;
  1296. this.ug_rkinfo_p.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1297. this.ug_rkinfo_p.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1298. appearance23.BackColor = System.Drawing.SystemColors.Window;
  1299. this.ug_rkinfo_p.DisplayLayout.Override.CardAreaAppearance = appearance23;
  1300. appearance24.BorderColor = System.Drawing.Color.Silver;
  1301. appearance24.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1302. this.ug_rkinfo_p.DisplayLayout.Override.CellAppearance = appearance24;
  1303. this.ug_rkinfo_p.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1304. this.ug_rkinfo_p.DisplayLayout.Override.CellPadding = 0;
  1305. appearance25.BackColor = System.Drawing.SystemColors.Control;
  1306. appearance25.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1307. appearance25.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1308. appearance25.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1309. appearance25.BorderColor = System.Drawing.SystemColors.Window;
  1310. this.ug_rkinfo_p.DisplayLayout.Override.GroupByRowAppearance = appearance25;
  1311. appearance26.TextHAlignAsString = "Left";
  1312. this.ug_rkinfo_p.DisplayLayout.Override.HeaderAppearance = appearance26;
  1313. this.ug_rkinfo_p.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1314. this.ug_rkinfo_p.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1315. appearance27.BackColor = System.Drawing.SystemColors.Window;
  1316. appearance27.BorderColor = System.Drawing.Color.Silver;
  1317. this.ug_rkinfo_p.DisplayLayout.Override.RowAppearance = appearance27;
  1318. this.ug_rkinfo_p.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1319. appearance28.BackColor = System.Drawing.SystemColors.ControlLight;
  1320. this.ug_rkinfo_p.DisplayLayout.Override.TemplateAddRowAppearance = appearance28;
  1321. this.ug_rkinfo_p.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1322. this.ug_rkinfo_p.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1323. this.ug_rkinfo_p.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1324. this.ug_rkinfo_p.Dock = System.Windows.Forms.DockStyle.Top;
  1325. this.ug_rkinfo_p.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1326. this.ug_rkinfo_p.Location = new System.Drawing.Point(0, 35);
  1327. this.ug_rkinfo_p.Name = "ug_rkinfo_p";
  1328. this.ug_rkinfo_p.Size = new System.Drawing.Size(1121, 350);
  1329. this.ug_rkinfo_p.TabIndex = 3;
  1330. this.ug_rkinfo_p.Text = "入库实绩";
  1331. this.ug_rkinfo_p.AfterRowActivate += new System.EventHandler(this.ug_rkinfo_p_AfterRowActivate);
  1332. this.ug_rkinfo_p.AfterSelectChange += new Infragistics.Win.UltraWinGrid.AfterSelectChangeEventHandler(this.ug_rkinfo_p_AfterSelectChange);
  1333. this.ug_rkinfo_p.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ug_rkinfo_p_ClickCell);
  1334. this.ug_rkinfo_p.Click += new System.EventHandler(this.ug_rkinfo_p_Click);
  1335. //
  1336. // ds_rkinfo_p
  1337. //
  1338. this.ds_rkinfo_p.DataSetName = "NewDataSet";
  1339. this.ds_rkinfo_p.Tables.AddRange(new System.Data.DataTable[] {
  1340. this.dataTable5});
  1341. //
  1342. // dataTable5
  1343. //
  1344. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  1345. this.dataColumn27,
  1346. this.dataColumn28,
  1347. this.dataColumn29,
  1348. this.dataColumn30,
  1349. this.dataColumn31,
  1350. this.dataColumn32,
  1351. this.dataColumn33,
  1352. this.dataColumn34,
  1353. this.dataColumn39});
  1354. this.dataTable5.TableName = "Table1";
  1355. //
  1356. // dataColumn27
  1357. //
  1358. this.dataColumn27.Caption = "操作流水";
  1359. this.dataColumn27.ColumnName = "INSTOCK_DOC";
  1360. //
  1361. // dataColumn28
  1362. //
  1363. this.dataColumn28.Caption = "判定炉号";
  1364. this.dataColumn28.ColumnName = "JUDGE_STOVE_NO";
  1365. //
  1366. // dataColumn29
  1367. //
  1368. this.dataColumn29.Caption = "钢种";
  1369. this.dataColumn29.ColumnName = "GRADENAME";
  1370. //
  1371. // dataColumn30
  1372. //
  1373. this.dataColumn30.Caption = "采购合同号";
  1374. this.dataColumn30.ColumnName = "ORDER_NO";
  1375. //
  1376. // dataColumn31
  1377. //
  1378. this.dataColumn31.Caption = "物料名称";
  1379. this.dataColumn31.ColumnName = "MATERIAL_NAME";
  1380. //
  1381. // dataColumn32
  1382. //
  1383. this.dataColumn32.Caption = "支数";
  1384. this.dataColumn32.ColumnName = "ACT_COUNT";
  1385. this.dataColumn32.DataType = typeof(int);
  1386. //
  1387. // dataColumn33
  1388. //
  1389. this.dataColumn33.Caption = "重量";
  1390. this.dataColumn33.ColumnName = "ACT_WEIGHT";
  1391. this.dataColumn33.DataType = typeof(decimal);
  1392. //
  1393. // dataColumn34
  1394. //
  1395. this.dataColumn34.Caption = "操作时间";
  1396. this.dataColumn34.ColumnName = "CREATE_TIME";
  1397. //
  1398. // dataColumn39
  1399. //
  1400. this.dataColumn39.ColumnName = "GPREQ_ID";
  1401. //
  1402. // ultraGroupBox4
  1403. //
  1404. this.ultraGroupBox4.Controls.Add(this.cb_supplier_cd);
  1405. this.ultraGroupBox4.Controls.Add(this.cb_stock_cd);
  1406. this.ultraGroupBox4.Controls.Add(this.ultraLabel6);
  1407. this.ultraGroupBox4.Controls.Add(this.txt_stove_judgeno_cd);
  1408. this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor3);
  1409. this.ultraGroupBox4.Controls.Add(this.txt_orderno_cd);
  1410. this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor1);
  1411. this.ultraGroupBox4.Controls.Add(this.ultraCheckEditor2);
  1412. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
  1413. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
  1414. this.ultraGroupBox4.Name = "ultraGroupBox4";
  1415. this.ultraGroupBox4.Size = new System.Drawing.Size(1121, 35);
  1416. this.ultraGroupBox4.TabIndex = 1;
  1417. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1418. //
  1419. // cb_supplier_cd
  1420. //
  1421. this.cb_supplier_cd.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1422. this.cb_supplier_cd.Location = new System.Drawing.Point(633, 11);
  1423. this.cb_supplier_cd.Name = "cb_supplier_cd";
  1424. this.cb_supplier_cd.Size = new System.Drawing.Size(109, 21);
  1425. this.cb_supplier_cd.TabIndex = 9;
  1426. //
  1427. // cb_stock_cd
  1428. //
  1429. this.cb_stock_cd.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1430. this.cb_stock_cd.Location = new System.Drawing.Point(41, 7);
  1431. this.cb_stock_cd.Name = "cb_stock_cd";
  1432. this.cb_stock_cd.Size = new System.Drawing.Size(114, 21);
  1433. this.cb_stock_cd.TabIndex = 8;
  1434. //
  1435. // ultraLabel6
  1436. //
  1437. this.ultraLabel6.Location = new System.Drawing.Point(5, 11);
  1438. this.ultraLabel6.Name = "ultraLabel6";
  1439. this.ultraLabel6.Size = new System.Drawing.Size(33, 13);
  1440. this.ultraLabel6.TabIndex = 7;
  1441. this.ultraLabel6.Text = "仓库";
  1442. //
  1443. // txt_stove_judgeno_cd
  1444. //
  1445. this.txt_stove_judgeno_cd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1446. this.txt_stove_judgeno_cd.Enabled = false;
  1447. this.txt_stove_judgeno_cd.Location = new System.Drawing.Point(453, 8);
  1448. this.txt_stove_judgeno_cd.Name = "txt_stove_judgeno_cd";
  1449. this.txt_stove_judgeno_cd.Size = new System.Drawing.Size(108, 21);
  1450. this.txt_stove_judgeno_cd.TabIndex = 5;
  1451. //
  1452. // ultraCheckEditor3
  1453. //
  1454. this.ultraCheckEditor3.Location = new System.Drawing.Point(380, 9);
  1455. this.ultraCheckEditor3.Name = "ultraCheckEditor3";
  1456. this.ultraCheckEditor3.Size = new System.Drawing.Size(71, 20);
  1457. this.ultraCheckEditor3.TabIndex = 4;
  1458. this.ultraCheckEditor3.Text = "判定炉号";
  1459. this.ultraCheckEditor3.CheckedChanged += new System.EventHandler(this.ultraCheckEditor3_CheckedChanged);
  1460. //
  1461. // txt_orderno_cd
  1462. //
  1463. this.txt_orderno_cd.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1464. this.txt_orderno_cd.Enabled = false;
  1465. this.txt_orderno_cd.Location = new System.Drawing.Point(225, 7);
  1466. this.txt_orderno_cd.Name = "txt_orderno_cd";
  1467. this.txt_orderno_cd.Size = new System.Drawing.Size(152, 21);
  1468. this.txt_orderno_cd.TabIndex = 3;
  1469. //
  1470. // ultraCheckEditor1
  1471. //
  1472. this.ultraCheckEditor1.Location = new System.Drawing.Point(161, 8);
  1473. this.ultraCheckEditor1.Name = "ultraCheckEditor1";
  1474. this.ultraCheckEditor1.Size = new System.Drawing.Size(61, 20);
  1475. this.ultraCheckEditor1.TabIndex = 2;
  1476. this.ultraCheckEditor1.Text = "合同号";
  1477. this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
  1478. //
  1479. // ultraCheckEditor2
  1480. //
  1481. this.ultraCheckEditor2.Checked = true;
  1482. this.ultraCheckEditor2.CheckState = System.Windows.Forms.CheckState.Checked;
  1483. this.ultraCheckEditor2.Location = new System.Drawing.Point(575, 9);
  1484. this.ultraCheckEditor2.Name = "ultraCheckEditor2";
  1485. this.ultraCheckEditor2.Size = new System.Drawing.Size(61, 20);
  1486. this.ultraCheckEditor2.TabIndex = 0;
  1487. this.ultraCheckEditor2.Text = "供应商";
  1488. //
  1489. // ultraTabPageControl3
  1490. //
  1491. this.ultraTabPageControl3.Controls.Add(this.ug_wgpstockinfo);
  1492. this.ultraTabPageControl3.Controls.Add(this.ultraGroupBox3);
  1493. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1494. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1495. this.ultraTabPageControl3.Size = new System.Drawing.Size(1121, 539);
  1496. //
  1497. // ug_wgpstockinfo
  1498. //
  1499. this.ug_wgpstockinfo.DataSource = this.ds_stockinfo_qry;
  1500. appearance49.BackColor = System.Drawing.SystemColors.Window;
  1501. appearance49.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1502. this.ug_wgpstockinfo.DisplayLayout.Appearance = appearance49;
  1503. ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1504. ultraGridColumn38.Header.Caption = "仓库";
  1505. ultraGridColumn38.Header.VisiblePosition = 0;
  1506. ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1507. ultraGridColumn39.Header.Caption = "申请判定单号";
  1508. ultraGridColumn39.Header.VisiblePosition = 2;
  1509. ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1510. ultraGridColumn40.Header.Caption = "判定炉号";
  1511. ultraGridColumn40.Header.VisiblePosition = 3;
  1512. ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1513. ultraGridColumn41.Header.Caption = "物料名称";
  1514. ultraGridColumn41.Header.VisiblePosition = 4;
  1515. ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1516. ultraGridColumn42.Header.Caption = "钢种";
  1517. ultraGridColumn42.Header.VisiblePosition = 5;
  1518. ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1519. ultraGridColumn43.Header.Caption = "定尺长";
  1520. ultraGridColumn43.Header.VisiblePosition = 6;
  1521. ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1522. appearance51.TextHAlignAsString = "Right";
  1523. ultraGridColumn44.CellAppearance = appearance51;
  1524. ultraGridColumn44.Header.Caption = "总数量";
  1525. ultraGridColumn44.Header.VisiblePosition = 7;
  1526. ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1527. appearance52.TextHAlignAsString = "Right";
  1528. ultraGridColumn45.CellAppearance = appearance52;
  1529. ultraGridColumn45.Header.Caption = "总重量";
  1530. ultraGridColumn45.Header.VisiblePosition = 8;
  1531. ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1532. ultraGridColumn46.Header.Caption = "结炉状态";
  1533. ultraGridColumn46.Header.VisiblePosition = 9;
  1534. ultraGridColumn47.DataType = typeof(bool);
  1535. ultraGridColumn47.DefaultCellValue = false;
  1536. ultraGridColumn47.Header.Caption = "";
  1537. ultraGridColumn47.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
  1538. ultraGridColumn47.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
  1539. ultraGridColumn47.Header.VisiblePosition = 1;
  1540. ultraGridColumn47.Hidden = true;
  1541. ultraGridBand6.Columns.AddRange(new object[] {
  1542. ultraGridColumn38,
  1543. ultraGridColumn39,
  1544. ultraGridColumn40,
  1545. ultraGridColumn41,
  1546. ultraGridColumn42,
  1547. ultraGridColumn43,
  1548. ultraGridColumn44,
  1549. ultraGridColumn45,
  1550. ultraGridColumn46,
  1551. ultraGridColumn47});
  1552. this.ug_wgpstockinfo.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  1553. this.ug_wgpstockinfo.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1554. appearance95.TextHAlignAsString = "Left";
  1555. this.ug_wgpstockinfo.DisplayLayout.CaptionAppearance = appearance95;
  1556. this.ug_wgpstockinfo.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.True;
  1557. appearance96.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1558. appearance96.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1559. appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1560. appearance96.BorderColor = System.Drawing.SystemColors.Window;
  1561. this.ug_wgpstockinfo.DisplayLayout.GroupByBox.Appearance = appearance96;
  1562. appearance97.ForeColor = System.Drawing.SystemColors.GrayText;
  1563. this.ug_wgpstockinfo.DisplayLayout.GroupByBox.BandLabelAppearance = appearance97;
  1564. this.ug_wgpstockinfo.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1565. this.ug_wgpstockinfo.DisplayLayout.GroupByBox.Hidden = true;
  1566. appearance98.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1567. appearance98.BackColor2 = System.Drawing.SystemColors.Control;
  1568. appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1569. appearance98.ForeColor = System.Drawing.SystemColors.GrayText;
  1570. this.ug_wgpstockinfo.DisplayLayout.GroupByBox.PromptAppearance = appearance98;
  1571. this.ug_wgpstockinfo.DisplayLayout.MaxColScrollRegions = 1;
  1572. this.ug_wgpstockinfo.DisplayLayout.MaxRowScrollRegions = 1;
  1573. appearance99.BackColor = System.Drawing.SystemColors.Window;
  1574. appearance99.ForeColor = System.Drawing.SystemColors.ControlText;
  1575. this.ug_wgpstockinfo.DisplayLayout.Override.ActiveCellAppearance = appearance99;
  1576. appearance100.BackColor = System.Drawing.SystemColors.Highlight;
  1577. appearance100.ForeColor = System.Drawing.SystemColors.HighlightText;
  1578. this.ug_wgpstockinfo.DisplayLayout.Override.ActiveRowAppearance = appearance100;
  1579. this.ug_wgpstockinfo.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1580. this.ug_wgpstockinfo.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1581. appearance113.BackColor = System.Drawing.SystemColors.Window;
  1582. this.ug_wgpstockinfo.DisplayLayout.Override.CardAreaAppearance = appearance113;
  1583. appearance114.BorderColor = System.Drawing.Color.Silver;
  1584. appearance114.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1585. this.ug_wgpstockinfo.DisplayLayout.Override.CellAppearance = appearance114;
  1586. this.ug_wgpstockinfo.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1587. this.ug_wgpstockinfo.DisplayLayout.Override.CellPadding = 0;
  1588. appearance115.BackColor = System.Drawing.SystemColors.Control;
  1589. appearance115.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1590. appearance115.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1591. appearance115.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1592. appearance115.BorderColor = System.Drawing.SystemColors.Window;
  1593. this.ug_wgpstockinfo.DisplayLayout.Override.GroupByRowAppearance = appearance115;
  1594. appearance116.TextHAlignAsString = "Left";
  1595. this.ug_wgpstockinfo.DisplayLayout.Override.HeaderAppearance = appearance116;
  1596. this.ug_wgpstockinfo.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1597. this.ug_wgpstockinfo.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1598. appearance117.BackColor = System.Drawing.SystemColors.Window;
  1599. appearance117.BorderColor = System.Drawing.Color.Silver;
  1600. this.ug_wgpstockinfo.DisplayLayout.Override.RowAppearance = appearance117;
  1601. this.ug_wgpstockinfo.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1602. appearance118.BackColor = System.Drawing.SystemColors.ControlLight;
  1603. this.ug_wgpstockinfo.DisplayLayout.Override.TemplateAddRowAppearance = appearance118;
  1604. this.ug_wgpstockinfo.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1605. this.ug_wgpstockinfo.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1606. this.ug_wgpstockinfo.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1607. this.ug_wgpstockinfo.Dock = System.Windows.Forms.DockStyle.Fill;
  1608. this.ug_wgpstockinfo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1609. this.ug_wgpstockinfo.Location = new System.Drawing.Point(0, 35);
  1610. this.ug_wgpstockinfo.Name = "ug_wgpstockinfo";
  1611. this.ug_wgpstockinfo.Size = new System.Drawing.Size(1121, 504);
  1612. this.ug_wgpstockinfo.TabIndex = 4;
  1613. this.ug_wgpstockinfo.Text = "外购坯库存实绩";
  1614. //
  1615. // ds_stockinfo_qry
  1616. //
  1617. this.ds_stockinfo_qry.DataSetName = "NewDataSet";
  1618. this.ds_stockinfo_qry.Tables.AddRange(new System.Data.DataTable[] {
  1619. this.dataTable7});
  1620. //
  1621. // dataTable7
  1622. //
  1623. this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
  1624. this.dataColumn42,
  1625. this.dataColumn43,
  1626. this.dataColumn44,
  1627. this.dataColumn45,
  1628. this.dataColumn46,
  1629. this.dataColumn47,
  1630. this.dataColumn48,
  1631. this.dataColumn49,
  1632. this.dataColumn50});
  1633. this.dataTable7.TableName = "Table1";
  1634. //
  1635. // dataColumn42
  1636. //
  1637. this.dataColumn42.ColumnName = "storage_name";
  1638. //
  1639. // dataColumn43
  1640. //
  1641. this.dataColumn43.ColumnName = "jugde_apply_code";
  1642. //
  1643. // dataColumn44
  1644. //
  1645. this.dataColumn44.ColumnName = "judge_stove_no";
  1646. //
  1647. // dataColumn45
  1648. //
  1649. this.dataColumn45.ColumnName = "material_name";
  1650. //
  1651. // dataColumn46
  1652. //
  1653. this.dataColumn46.ColumnName = "gradename";
  1654. //
  1655. // dataColumn47
  1656. //
  1657. this.dataColumn47.ColumnName = "fix_len";
  1658. //
  1659. // dataColumn48
  1660. //
  1661. this.dataColumn48.ColumnName = "act_count";
  1662. //
  1663. // dataColumn49
  1664. //
  1665. this.dataColumn49.ColumnName = "act_weight";
  1666. //
  1667. // dataColumn50
  1668. //
  1669. this.dataColumn50.ColumnName = "node_fur_flag";
  1670. //
  1671. // ultraGroupBox3
  1672. //
  1673. this.ultraGroupBox3.Controls.Add(this.cb_stock_jl);
  1674. this.ultraGroupBox3.Controls.Add(this.ultraLabel8);
  1675. this.ultraGroupBox3.Controls.Add(this.ultraLabel9);
  1676. this.ultraGroupBox3.Controls.Add(this.txt_judge_stoveno_jl);
  1677. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  1678. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
  1679. this.ultraGroupBox3.Name = "ultraGroupBox3";
  1680. this.ultraGroupBox3.Size = new System.Drawing.Size(1121, 35);
  1681. this.ultraGroupBox3.TabIndex = 2;
  1682. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1683. //
  1684. // cb_stock_jl
  1685. //
  1686. this.cb_stock_jl.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1687. this.cb_stock_jl.Location = new System.Drawing.Point(39, 5);
  1688. this.cb_stock_jl.Name = "cb_stock_jl";
  1689. this.cb_stock_jl.Size = new System.Drawing.Size(114, 21);
  1690. this.cb_stock_jl.TabIndex = 8;
  1691. //
  1692. // ultraLabel8
  1693. //
  1694. this.ultraLabel8.Location = new System.Drawing.Point(5, 7);
  1695. this.ultraLabel8.Name = "ultraLabel8";
  1696. this.ultraLabel8.Size = new System.Drawing.Size(33, 20);
  1697. this.ultraLabel8.TabIndex = 7;
  1698. this.ultraLabel8.Text = "仓库";
  1699. //
  1700. // ultraLabel9
  1701. //
  1702. this.ultraLabel9.Location = new System.Drawing.Point(156, 5);
  1703. this.ultraLabel9.Name = "ultraLabel9";
  1704. this.ultraLabel9.Size = new System.Drawing.Size(58, 23);
  1705. this.ultraLabel9.TabIndex = 6;
  1706. this.ultraLabel9.Text = "判定炉号";
  1707. //
  1708. // txt_judge_stoveno_jl
  1709. //
  1710. this.txt_judge_stoveno_jl.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1711. this.txt_judge_stoveno_jl.Location = new System.Drawing.Point(218, 5);
  1712. this.txt_judge_stoveno_jl.Name = "txt_judge_stoveno_jl";
  1713. this.txt_judge_stoveno_jl.Size = new System.Drawing.Size(108, 21);
  1714. this.txt_judge_stoveno_jl.TabIndex = 5;
  1715. //
  1716. // ds_stockinfo
  1717. //
  1718. this.ds_stockinfo.DataSetName = "NewDataSet";
  1719. this.ds_stockinfo.Tables.AddRange(new System.Data.DataTable[] {
  1720. this.dataTable4});
  1721. //
  1722. // dataTable4
  1723. //
  1724. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  1725. this.dataColumn19,
  1726. this.dataColumn20,
  1727. this.dataColumn21,
  1728. this.dataColumn22,
  1729. this.dataColumn23,
  1730. this.dataColumn24,
  1731. this.dataColumn25,
  1732. this.dataColumn26});
  1733. this.dataTable4.TableName = "Table1";
  1734. //
  1735. // dataColumn19
  1736. //
  1737. this.dataColumn19.ColumnName = "炉号";
  1738. //
  1739. // dataColumn20
  1740. //
  1741. this.dataColumn20.ColumnName = "判定炉号";
  1742. //
  1743. // dataColumn21
  1744. //
  1745. this.dataColumn21.ColumnName = "支数";
  1746. this.dataColumn21.DataType = typeof(int);
  1747. //
  1748. // dataColumn22
  1749. //
  1750. this.dataColumn22.ColumnName = "重量";
  1751. this.dataColumn22.DataType = typeof(decimal);
  1752. //
  1753. // dataColumn23
  1754. //
  1755. this.dataColumn23.ColumnName = "断面";
  1756. //
  1757. // dataColumn24
  1758. //
  1759. this.dataColumn24.ColumnName = "倍尺";
  1760. this.dataColumn24.DataType = typeof(int);
  1761. //
  1762. // dataColumn25
  1763. //
  1764. this.dataColumn25.ColumnName = "长度";
  1765. this.dataColumn25.DataType = typeof(int);
  1766. //
  1767. // dataColumn26
  1768. //
  1769. this.dataColumn26.ColumnName = "钢种";
  1770. //
  1771. // tabC
  1772. //
  1773. this.tabC.Controls.Add(this.ultraTabSharedControlsPage1);
  1774. this.tabC.Controls.Add(this.ultraTabPageControl1);
  1775. this.tabC.Controls.Add(this.ultraTabPageControl2);
  1776. this.tabC.Controls.Add(this.ultraTabPageControl3);
  1777. this.tabC.Dock = System.Windows.Forms.DockStyle.Fill;
  1778. this.tabC.Location = new System.Drawing.Point(0, 0);
  1779. this.tabC.Name = "tabC";
  1780. this.tabC.SharedControlsPage = this.ultraTabSharedControlsPage1;
  1781. this.tabC.Size = new System.Drawing.Size(1123, 562);
  1782. this.tabC.TabIndex = 0;
  1783. this.tabC.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.BottomLeft;
  1784. ultraTab1.Key = "tab1";
  1785. ultraTab1.TabPage = this.ultraTabPageControl1;
  1786. ultraTab1.Text = "外购坯入库";
  1787. ultraTab2.Key = "tab2";
  1788. ultraTab2.TabPage = this.ultraTabPageControl2;
  1789. ultraTab2.Text = "撤单";
  1790. ultraTab3.Key = "tab3";
  1791. ultraTab3.TabPage = this.ultraTabPageControl3;
  1792. ultraTab3.Text = "撤结炉";
  1793. this.tabC.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1794. ultraTab1,
  1795. ultraTab2,
  1796. ultraTab3});
  1797. this.tabC.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
  1798. this.tabC.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.tabC_SelectedTabChanged);
  1799. //
  1800. // ultraTabSharedControlsPage1
  1801. //
  1802. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1803. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1804. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1121, 539);
  1805. //
  1806. // FrmCGpRk
  1807. //
  1808. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1809. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1810. this.ClientSize = new System.Drawing.Size(1123, 562);
  1811. this.Controls.Add(this.tabC);
  1812. this.Name = "FrmCGpRk";
  1813. this.ShowIcon = false;
  1814. this.Text = "外购坯入库";
  1815. this.Load += new System.EventHandler(this.FrmCGpRk_Load);
  1816. this.Shown += new System.EventHandler(this.FrmCGpRk_Shown);
  1817. this.ultraTabPageControl1.ResumeLayout(false);
  1818. this.splitContainer1.Panel1.ResumeLayout(false);
  1819. this.splitContainer1.Panel2.ResumeLayout(false);
  1820. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1821. this.splitContainer1.ResumeLayout(false);
  1822. ((System.ComponentModel.ISupportInitialize)(this.ug_orders)).EndInit();
  1823. ((System.ComponentModel.ISupportInitialize)(this.ds_orders)).EndInit();
  1824. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1825. ((System.ComponentModel.ISupportInitialize)(this.ug_rukinfo)).EndInit();
  1826. ((System.ComponentModel.ISupportInitialize)(this.ds_rukuinfo)).EndInit();
  1827. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  1828. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  1829. this.ultraGroupBox2.ResumeLayout(false);
  1830. this.ultraGroupBox2.PerformLayout();
  1831. ((System.ComponentModel.ISupportInitialize)(this.txt_location)).EndInit();
  1832. ((System.ComponentModel.ISupportInitialize)(this.ck_sglcode)).EndInit();
  1833. ((System.ComponentModel.ISupportInitialize)(this.ck_jielu)).EndInit();
  1834. ((System.ComponentModel.ISupportInitialize)(this.txt_stove_no)).EndInit();
  1835. ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stove_no)).EndInit();
  1836. ((System.ComponentModel.ISupportInitialize)(this.cb_level)).EndInit();
  1837. ((System.ComponentModel.ISupportInitialize)(this.txt_carno)).EndInit();
  1838. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  1839. this.ultraExpandableGroupBox1.ResumeLayout(false);
  1840. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  1841. ((System.ComponentModel.ISupportInitialize)(this.ug_dcyb)).EndInit();
  1842. ((System.ComponentModel.ISupportInitialize)(this.ds_dcyb)).EndInit();
  1843. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1844. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1845. this.ultraGroupBox1.ResumeLayout(false);
  1846. this.ultraGroupBox1.PerformLayout();
  1847. ((System.ComponentModel.ISupportInitialize)(this.cb_stock)).EndInit();
  1848. ((System.ComponentModel.ISupportInitialize)(this.cb_supplier)).EndInit();
  1849. ((System.ComponentModel.ISupportInitialize)(this.txt_orderno)).EndInit();
  1850. ((System.ComponentModel.ISupportInitialize)(this.ck_orderno)).EndInit();
  1851. ((System.ComponentModel.ISupportInitialize)(this.cb_location)).EndInit();
  1852. ((System.ComponentModel.ISupportInitialize)(this.ck_supplier)).EndInit();
  1853. this.ultraTabPageControl2.ResumeLayout(false);
  1854. ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_c)).EndInit();
  1855. ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_c)).EndInit();
  1856. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  1857. ((System.ComponentModel.ISupportInitialize)(this.ug_rkinfo_p)).EndInit();
  1858. ((System.ComponentModel.ISupportInitialize)(this.ds_rkinfo_p)).EndInit();
  1859. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  1860. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  1861. this.ultraGroupBox4.ResumeLayout(false);
  1862. this.ultraGroupBox4.PerformLayout();
  1863. ((System.ComponentModel.ISupportInitialize)(this.cb_supplier_cd)).EndInit();
  1864. ((System.ComponentModel.ISupportInitialize)(this.cb_stock_cd)).EndInit();
  1865. ((System.ComponentModel.ISupportInitialize)(this.txt_stove_judgeno_cd)).EndInit();
  1866. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor3)).EndInit();
  1867. ((System.ComponentModel.ISupportInitialize)(this.txt_orderno_cd)).EndInit();
  1868. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor1)).EndInit();
  1869. ((System.ComponentModel.ISupportInitialize)(this.ultraCheckEditor2)).EndInit();
  1870. this.ultraTabPageControl3.ResumeLayout(false);
  1871. ((System.ComponentModel.ISupportInitialize)(this.ug_wgpstockinfo)).EndInit();
  1872. ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo_qry)).EndInit();
  1873. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  1874. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  1875. this.ultraGroupBox3.ResumeLayout(false);
  1876. this.ultraGroupBox3.PerformLayout();
  1877. ((System.ComponentModel.ISupportInitialize)(this.cb_stock_jl)).EndInit();
  1878. ((System.ComponentModel.ISupportInitialize)(this.txt_judge_stoveno_jl)).EndInit();
  1879. ((System.ComponentModel.ISupportInitialize)(this.ds_stockinfo)).EndInit();
  1880. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  1881. ((System.ComponentModel.ISupportInitialize)(this.tabC)).EndInit();
  1882. this.tabC.ResumeLayout(false);
  1883. this.ResumeLayout(false);
  1884. }
  1885. #endregion
  1886. private Infragistics.Win.UltraWinTabControl.UltraTabControl tabC;
  1887. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  1888. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  1889. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  1890. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  1891. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1892. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  1893. private System.Windows.Forms.SplitContainer splitContainer1;
  1894. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  1895. private Infragistics.Win.UltraWinGrid.UltraGrid ug_orders;
  1896. private Infragistics.Win.UltraWinGrid.UltraGrid ug_dcyb;
  1897. private System.Data.DataSet ds_orders;
  1898. private System.Data.DataSet ds_dcyb;
  1899. private System.Data.DataSet ds_rukuinfo;
  1900. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_supplier;
  1901. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderno;
  1902. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_orderno;
  1903. private System.Data.DataTable dataTable1;
  1904. private System.Data.DataColumn dataColumn1;
  1905. private System.Data.DataColumn dataColumn2;
  1906. private System.Data.DataColumn dataColumn3;
  1907. private System.Data.DataColumn dataColumn4;
  1908. private System.Data.DataTable dataTable2;
  1909. private System.Data.DataColumn dataColumn5;
  1910. private System.Data.DataColumn dataColumn6;
  1911. private System.Data.DataColumn dataColumn7;
  1912. private System.Data.DataColumn dataColumn8;
  1913. private System.Data.DataColumn dataColumn9;
  1914. private System.Data.DataColumn dataColumn10;
  1915. private System.Data.DataColumn dataColumn11;
  1916. private System.Data.DataColumn dataColumn12;
  1917. private System.Data.DataColumn dataColumn13;
  1918. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_carno;
  1919. private Infragistics.Win.Misc.UltraLabel lbl_carno;
  1920. private System.Data.DataTable dataTable3;
  1921. private System.Data.DataColumn dataColumn14;
  1922. private System.Data.DataColumn dataColumn15;
  1923. private System.Data.DataColumn dataColumn16;
  1924. private System.Data.DataColumn dataColumn17;
  1925. private System.Data.DataColumn dataColumn18;
  1926. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_sglcode;
  1927. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_judge_stove_no;
  1928. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  1929. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_stove_no;
  1930. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  1931. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  1932. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderno_cd;
  1933. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
  1934. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor2;
  1935. private Infragistics.Win.UltraWinGrid.UltraGrid ug_rkinfo_p;
  1936. private System.Data.DataSet ds_stockinfo;
  1937. private System.Data.DataTable dataTable4;
  1938. private System.Data.DataColumn dataColumn19;
  1939. private System.Data.DataColumn dataColumn20;
  1940. private System.Data.DataColumn dataColumn21;
  1941. private System.Data.DataColumn dataColumn22;
  1942. private System.Data.DataColumn dataColumn23;
  1943. private System.Data.DataColumn dataColumn24;
  1944. private System.Data.DataColumn dataColumn25;
  1945. private System.Data.DataColumn dataColumn26;
  1946. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_supplier;
  1947. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock;
  1948. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  1949. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_level;
  1950. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  1951. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_location;
  1952. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  1953. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ck_jielu;
  1954. private Infragistics.Win.UltraWinGrid.UltraGrid ug_rkinfo_c;
  1955. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_stove_judgeno_cd;
  1956. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor3;
  1957. private System.Data.DataSet ds_rkinfo_p;
  1958. private System.Data.DataTable dataTable5;
  1959. private System.Data.DataColumn dataColumn27;
  1960. private System.Data.DataColumn dataColumn28;
  1961. private System.Data.DataColumn dataColumn29;
  1962. private System.Data.DataColumn dataColumn30;
  1963. private System.Data.DataColumn dataColumn31;
  1964. private System.Data.DataColumn dataColumn32;
  1965. private System.Data.DataColumn dataColumn33;
  1966. private System.Data.DataColumn dataColumn34;
  1967. private System.Data.DataSet ds_rkinfo_c;
  1968. private System.Data.DataTable dataTable6;
  1969. private System.Data.DataColumn dataColumn35;
  1970. private System.Data.DataColumn dataColumn36;
  1971. private System.Data.DataColumn dataColumn37;
  1972. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock_cd;
  1973. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  1974. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_supplier_cd;
  1975. private System.Data.DataColumn dataColumn38;
  1976. private System.Data.DataColumn dataColumn39;
  1977. private System.Data.DataColumn dataColumn40;
  1978. private System.Data.DataColumn dataColumn41;
  1979. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_location;
  1980. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  1981. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  1982. private Infragistics.Win.UltraWinEditors.UltraComboEditor cb_stock_jl;
  1983. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  1984. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  1985. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_judge_stoveno_jl;
  1986. private Infragistics.Win.UltraWinGrid.UltraGrid ug_wgpstockinfo;
  1987. private System.Data.DataSet ds_stockinfo_qry;
  1988. private System.Data.DataTable dataTable7;
  1989. private System.Data.DataColumn dataColumn42;
  1990. private System.Data.DataColumn dataColumn43;
  1991. private System.Data.DataColumn dataColumn44;
  1992. private System.Data.DataColumn dataColumn45;
  1993. private System.Data.DataColumn dataColumn46;
  1994. private System.Data.DataColumn dataColumn47;
  1995. private System.Data.DataColumn dataColumn48;
  1996. private System.Data.DataColumn dataColumn49;
  1997. private System.Data.DataColumn dataColumn50;
  1998. private System.Data.DataColumn dataColumn51;
  1999. private System.Data.DataColumn dataColumn52;
  2000. private System.Data.DataColumn dataColumn53;
  2001. private Infragistics.Win.UltraWinGrid.UltraGrid ug_rukinfo;
  2002. }
  2003. }