frm_PurTaskMUpd.Designer.cs 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  1. namespace Pur.pur_plan
  2. {
  3. partial class frm_PurTaskMUpd
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MRLINEID");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMDESC");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMNAME");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMMODEL");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSPEC");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QTY");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EXPENSETYPE");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUDGETCODE");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERDEPTCODE");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERUNITCODE");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATENAME");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATETIME");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AskDeliverDate");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRID");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOM");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSCODE");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PAYMENTCODE");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACKAGETYPE");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKQTY");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TASKQTY");
  60. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  62. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  63. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  70. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  73. Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("ribbon1");
  74. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup1");
  75. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup2");
  76. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  77. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  78. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  79. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
  80. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("getTaskList");
  81. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  82. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  83. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
  84. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  85. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  86. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  87. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
  88. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("确认");
  89. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SelectSupp");
  90. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  91. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  92. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  93. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("getTaskList");
  94. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  95. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("addEvaUsers");
  96. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  98. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  99. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPCODE");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPNAME");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btn", 0);
  103. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
  104. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  105. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAROLEID");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAROLENAME");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAUSERID");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAUSERNAME");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAORGID");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAORGNAME");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btnDel", 0);
  114. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  115. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_PurTaskMUpd));
  116. this.dataTable7 = new System.Data.DataTable();
  117. this.dataColumn77 = new System.Data.DataColumn();
  118. this.dataColumn78 = new System.Data.DataColumn();
  119. this.dataColumn79 = new System.Data.DataColumn();
  120. this.dataColumn80 = new System.Data.DataColumn();
  121. this.dataColumn81 = new System.Data.DataColumn();
  122. this.dataColumn82 = new System.Data.DataColumn();
  123. this.dataColumn83 = new System.Data.DataColumn();
  124. this.dataColumn84 = new System.Data.DataColumn();
  125. this.dataColumn85 = new System.Data.DataColumn();
  126. this.dataColumn86 = new System.Data.DataColumn();
  127. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  128. this.dataSet2 = new System.Data.DataSet();
  129. this.dataTable4 = new System.Data.DataTable();
  130. this.dataColumn5 = new System.Data.DataColumn();
  131. this.dataColumn8 = new System.Data.DataColumn();
  132. this.dataColumn9 = new System.Data.DataColumn();
  133. this.dataColumn10 = new System.Data.DataColumn();
  134. this.dataColumn11 = new System.Data.DataColumn();
  135. this.dataColumn12 = new System.Data.DataColumn();
  136. this.dataColumn13 = new System.Data.DataColumn();
  137. this.dataColumn14 = new System.Data.DataColumn();
  138. this.dataColumn15 = new System.Data.DataColumn();
  139. this.dataColumn35 = new System.Data.DataColumn();
  140. this.dataColumn42 = new System.Data.DataColumn();
  141. this.dataTable5 = new System.Data.DataTable();
  142. this.dataColumn31 = new System.Data.DataColumn();
  143. this.dataColumn32 = new System.Data.DataColumn();
  144. this.dataColumn33 = new System.Data.DataColumn();
  145. this.dataColumn34 = new System.Data.DataColumn();
  146. this.dataColumn36 = new System.Data.DataColumn();
  147. this.dataColumn37 = new System.Data.DataColumn();
  148. this.dataColumn38 = new System.Data.DataColumn();
  149. this.dataColumn39 = new System.Data.DataColumn();
  150. this.dataColumn40 = new System.Data.DataColumn();
  151. this.dataColumn41 = new System.Data.DataColumn();
  152. this.dataColumn43 = new System.Data.DataColumn();
  153. this.dataColumn44 = new System.Data.DataColumn();
  154. this.dataColumn45 = new System.Data.DataColumn();
  155. this.dataColumn46 = new System.Data.DataColumn();
  156. this.dataColumn47 = new System.Data.DataColumn();
  157. this.dataColumn48 = new System.Data.DataColumn();
  158. this.dataColumn49 = new System.Data.DataColumn();
  159. this.dataColumn50 = new System.Data.DataColumn();
  160. this.dataColumn51 = new System.Data.DataColumn();
  161. this.dataColumn52 = new System.Data.DataColumn();
  162. this.dataColumn53 = new System.Data.DataColumn();
  163. this.dataColumn54 = new System.Data.DataColumn();
  164. this.dataColumn55 = new System.Data.DataColumn();
  165. this.dataColumn56 = new System.Data.DataColumn();
  166. this.dataColumn57 = new System.Data.DataColumn();
  167. this.dataColumn58 = new System.Data.DataColumn();
  168. this.dataColumn73 = new System.Data.DataColumn();
  169. this.dataColumn74 = new System.Data.DataColumn();
  170. this.dataColumn75 = new System.Data.DataColumn();
  171. this.dataColumn76 = new System.Data.DataColumn();
  172. this.dataTable6 = new System.Data.DataTable();
  173. this.dataColumn59 = new System.Data.DataColumn();
  174. this.dataColumn60 = new System.Data.DataColumn();
  175. this.dataColumn61 = new System.Data.DataColumn();
  176. this.dataColumn62 = new System.Data.DataColumn();
  177. this.dataColumn63 = new System.Data.DataColumn();
  178. this.dataColumn64 = new System.Data.DataColumn();
  179. this.dataColumn65 = new System.Data.DataColumn();
  180. this.dataColumn66 = new System.Data.DataColumn();
  181. this.dataColumn67 = new System.Data.DataColumn();
  182. this.dataColumn68 = new System.Data.DataColumn();
  183. this.dataColumn69 = new System.Data.DataColumn();
  184. this.dataColumn70 = new System.Data.DataColumn();
  185. this.dataColumn71 = new System.Data.DataColumn();
  186. this.dataColumn72 = new System.Data.DataColumn();
  187. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  188. this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
  189. this.panel1 = new System.Windows.Forms.Panel();
  190. this.ultraPanel21 = new Core.Mes.Client.Comm.Control.UltraPanel2();
  191. this.jy_type = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  192. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  193. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  194. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  195. this.jy_negDate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  196. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  197. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  198. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  199. this.panel2 = new System.Windows.Forms.Panel();
  200. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  201. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  202. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  203. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  204. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  205. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  206. this.jy_procRecord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  207. this.iiii = new Infragistics.Win.Misc.UltraLabel();
  208. this.jy_RecordId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  209. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  210. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  211. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  212. this.txt_FUNCTION_VERSION_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  213. this.label7 = new System.Windows.Forms.Label();
  214. this.cmb_PAYMENT_CODE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  215. this.cmb_PACKAGE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  216. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  217. this.cmb_RECEIVE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  218. this.label4 = new System.Windows.Forms.Label();
  219. this.label2 = new System.Windows.Forms.Label();
  220. this.cmb_DELIVERY_CONDITION = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  221. this.label5 = new System.Windows.Forms.Label();
  222. this.label1 = new System.Windows.Forms.Label();
  223. this.ultcmb_ELIVERY_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  224. this.lb_ultcmb_PICK_MODE = new System.Windows.Forms.Label();
  225. this.ultcmb_FLOW_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  226. this.txt_REMARK = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  227. this.txt_TASK_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  228. this.lb_ultcmb_FLOW_TYPE = new System.Windows.Forms.Label();
  229. this.txt_TASK_ID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  230. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  231. this.ultDt_OFFER_TIME_END = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  232. this.ultDt_OFFER_TIME_START = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  233. this.label14 = new System.Windows.Forms.Label();
  234. this.lb_txt_TASK_NAME = new System.Windows.Forms.Label();
  235. this.label3 = new System.Windows.Forms.Label();
  236. this.lb_TASK_ID = new System.Windows.Forms.Label();
  237. this.lb_ultDt_OFFER_TIME_START = new System.Windows.Forms.Label();
  238. this.barsManagerButon = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  239. this._Form1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  240. this._Form1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  241. this._Form1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  242. this._Form1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  243. this.dataSet1 = new System.Data.DataSet();
  244. this.dataTable2 = new System.Data.DataTable();
  245. this.dataColumn16 = new System.Data.DataColumn();
  246. this.dataColumn17 = new System.Data.DataColumn();
  247. this.dataColumn18 = new System.Data.DataColumn();
  248. this.dataColumn19 = new System.Data.DataColumn();
  249. this.dataColumn20 = new System.Data.DataColumn();
  250. this.dataColumn21 = new System.Data.DataColumn();
  251. this.dataColumn22 = new System.Data.DataColumn();
  252. this.dataColumn23 = new System.Data.DataColumn();
  253. this.dataColumn24 = new System.Data.DataColumn();
  254. this.dataColumn25 = new System.Data.DataColumn();
  255. this.dataColumn26 = new System.Data.DataColumn();
  256. this.dataColumn27 = new System.Data.DataColumn();
  257. this.dataColumn28 = new System.Data.DataColumn();
  258. this.dataColumn29 = new System.Data.DataColumn();
  259. this.dataColumn30 = new System.Data.DataColumn();
  260. this.dataColumn3 = new System.Data.DataColumn();
  261. this.dataColumn4 = new System.Data.DataColumn();
  262. this.dataTable3 = new System.Data.DataTable();
  263. this.dataColumn6 = new System.Data.DataColumn();
  264. this.dataColumn7 = new System.Data.DataColumn();
  265. this.dataTable1 = new System.Data.DataTable();
  266. this.dataColumn1 = new System.Data.DataColumn();
  267. this.dataColumn2 = new System.Data.DataColumn();
  268. this.btnSelEvaGroup = new Infragistics.Win.Misc.UltraButton();
  269. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  270. this.label9 = new System.Windows.Forms.Label();
  271. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  272. this.cmb_EVA_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  273. this.txt_EVA_ORG_ID = new System.Windows.Forms.TextBox();
  274. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  275. this.dataTable9 = new System.Data.DataTable();
  276. this.dataColumn104 = new System.Data.DataColumn();
  277. this.dataColumn105 = new System.Data.DataColumn();
  278. this.dataColumn106 = new System.Data.DataColumn();
  279. this.dataColumn107 = new System.Data.DataColumn();
  280. this.dataColumn108 = new System.Data.DataColumn();
  281. this.dataColumn109 = new System.Data.DataColumn();
  282. this.dataColumn113 = new System.Data.DataColumn();
  283. this.txt_EVA_USERID = new System.Windows.Forms.TextBox();
  284. this.dataSet3 = new System.Data.DataSet();
  285. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  286. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  287. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  288. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  289. this.txt_EVA_ORG_NAME = new System.Windows.Forms.TextBox();
  290. this.label8 = new System.Windows.Forms.Label();
  291. this.txt_EVA_USERNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  292. this.label6 = new System.Windows.Forms.Label();
  293. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  294. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  295. this.ultraToolTipManager1 = new Infragistics.Win.UltraWinToolTip.UltraToolTipManager(this.components);
  296. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  297. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  302. this.ultraPanel3.ClientArea.SuspendLayout();
  303. this.ultraPanel3.SuspendLayout();
  304. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
  305. this.ultraGroupBox6.SuspendLayout();
  306. this.panel1.SuspendLayout();
  307. this.ultraPanel21.ClientArea.SuspendLayout();
  308. this.ultraPanel21.SuspendLayout();
  309. ((System.ComponentModel.ISupportInitialize)(this.jy_type)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  315. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  316. this.panel2.SuspendLayout();
  317. ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).BeginInit();
  318. ((System.ComponentModel.ISupportInitialize)(this.jy_RecordId)).BeginInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  320. this.ultraExpandableGroupBox1.SuspendLayout();
  321. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  322. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  323. this.ultraGroupBox5.SuspendLayout();
  324. ((System.ComponentModel.ISupportInitialize)(this.txt_FUNCTION_VERSION_NO)).BeginInit();
  325. ((System.ComponentModel.ISupportInitialize)(this.cmb_PAYMENT_CODE)).BeginInit();
  326. ((System.ComponentModel.ISupportInitialize)(this.cmb_PACKAGE_TYPE)).BeginInit();
  327. ((System.ComponentModel.ISupportInitialize)(this.cmb_RECEIVE_TYPE)).BeginInit();
  328. ((System.ComponentModel.ISupportInitialize)(this.cmb_DELIVERY_CONDITION)).BeginInit();
  329. ((System.ComponentModel.ISupportInitialize)(this.ultcmb_ELIVERY_TYPE)).BeginInit();
  330. ((System.ComponentModel.ISupportInitialize)(this.ultcmb_FLOW_TYPE)).BeginInit();
  331. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK)).BeginInit();
  332. ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_NAME)).BeginInit();
  333. ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_ID)).BeginInit();
  334. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  335. ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_END)).BeginInit();
  336. ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_START)).BeginInit();
  337. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).BeginInit();
  338. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  339. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  340. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  341. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.cmb_EVA_ROLE_NAME)).BeginInit();
  344. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  345. this.ultraGroupBox2.SuspendLayout();
  346. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
  347. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  348. this.tableLayoutPanel1.SuspendLayout();
  349. this.ultraPanel1.ClientArea.SuspendLayout();
  350. this.ultraPanel1.SuspendLayout();
  351. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  352. this.ultraGroupBox1.SuspendLayout();
  353. this.ultraPanel2.ClientArea.SuspendLayout();
  354. this.ultraPanel2.SuspendLayout();
  355. ((System.ComponentModel.ISupportInitialize)(this.txt_EVA_USERNAME)).BeginInit();
  356. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  357. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  358. this.ultraGroupBox3.SuspendLayout();
  359. this.SuspendLayout();
  360. //
  361. // dataTable7
  362. //
  363. this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
  364. this.dataColumn77,
  365. this.dataColumn78,
  366. this.dataColumn79,
  367. this.dataColumn80,
  368. this.dataColumn81,
  369. this.dataColumn82,
  370. this.dataColumn83,
  371. this.dataColumn84,
  372. this.dataColumn85,
  373. this.dataColumn86});
  374. this.dataTable7.TableName = "Table4";
  375. //
  376. // dataColumn77
  377. //
  378. this.dataColumn77.Caption = "任务单号";
  379. this.dataColumn77.ColumnName = "TASKID";
  380. //
  381. // dataColumn78
  382. //
  383. this.dataColumn78.Caption = "评标人ID";
  384. this.dataColumn78.ColumnName = "EVAUSERID";
  385. //
  386. // dataColumn79
  387. //
  388. this.dataColumn79.Caption = "评标人姓名";
  389. this.dataColumn79.ColumnName = "EVAUSERNAME";
  390. //
  391. // dataColumn80
  392. //
  393. this.dataColumn80.Caption = "角色ID";
  394. this.dataColumn80.ColumnName = "EVAROLEID";
  395. //
  396. // dataColumn81
  397. //
  398. this.dataColumn81.Caption = "角色名称";
  399. this.dataColumn81.ColumnName = "EVAROLENAME";
  400. //
  401. // dataColumn82
  402. //
  403. this.dataColumn82.Caption = "评标人科室ID";
  404. this.dataColumn82.ColumnName = "EVAORGID";
  405. //
  406. // dataColumn83
  407. //
  408. this.dataColumn83.Caption = "评标人科室名称";
  409. this.dataColumn83.ColumnName = "EVAORGNAME";
  410. //
  411. // dataColumn84
  412. //
  413. this.dataColumn84.Caption = "备注";
  414. this.dataColumn84.ColumnName = "REMARK";
  415. //
  416. // dataColumn85
  417. //
  418. this.dataColumn85.Caption = "创建人";
  419. this.dataColumn85.ColumnName = "CREATENAME";
  420. //
  421. // dataColumn86
  422. //
  423. this.dataColumn86.Caption = "创建时间";
  424. this.dataColumn86.ColumnName = "CREATETIME";
  425. //
  426. // ultraGrid2
  427. //
  428. this.ultraGrid2.DataMember = "Table2";
  429. this.ultraGrid2.DataSource = this.dataSet2;
  430. ultraGridColumn1.Header.VisiblePosition = 0;
  431. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  432. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  433. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  434. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  435. ultraGridColumn2.Header.VisiblePosition = 1;
  436. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  437. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  438. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  439. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  440. ultraGridColumn3.Header.VisiblePosition = 2;
  441. ultraGridColumn3.Hidden = true;
  442. ultraGridColumn4.Header.VisiblePosition = 3;
  443. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 4;
  444. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  445. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  446. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  447. ultraGridColumn5.Header.VisiblePosition = 5;
  448. ultraGridColumn5.Hidden = true;
  449. ultraGridColumn6.Header.VisiblePosition = 6;
  450. ultraGridColumn6.Hidden = true;
  451. ultraGridColumn7.Header.VisiblePosition = 7;
  452. ultraGridColumn7.Hidden = true;
  453. ultraGridColumn8.Header.VisiblePosition = 15;
  454. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 20;
  455. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  456. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  457. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  458. ultraGridColumn9.Header.VisiblePosition = 12;
  459. ultraGridColumn9.Hidden = true;
  460. ultraGridColumn10.Header.VisiblePosition = 13;
  461. ultraGridColumn10.Hidden = true;
  462. ultraGridColumn11.Header.VisiblePosition = 24;
  463. ultraGridColumn11.Hidden = true;
  464. ultraGridColumn12.Header.VisiblePosition = 16;
  465. ultraGridColumn12.Hidden = true;
  466. ultraGridColumn13.Header.VisiblePosition = 18;
  467. ultraGridColumn13.Hidden = true;
  468. ultraGridColumn14.Header.VisiblePosition = 27;
  469. ultraGridColumn14.Hidden = true;
  470. ultraGridColumn15.Header.VisiblePosition = 28;
  471. ultraGridColumn15.Hidden = true;
  472. ultraGridColumn16.Format = "";
  473. ultraGridColumn16.Header.VisiblePosition = 17;
  474. ultraGridColumn16.MaskInput = "";
  475. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 18;
  476. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  477. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  478. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  479. ultraGridColumn17.Header.VisiblePosition = 4;
  480. ultraGridColumn17.Hidden = true;
  481. ultraGridColumn18.Header.VisiblePosition = 14;
  482. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 6;
  483. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  484. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  485. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  486. ultraGridColumn19.Header.VisiblePosition = 19;
  487. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
  488. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  489. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  490. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  491. ultraGridColumn20.Header.VisiblePosition = 20;
  492. ultraGridColumn20.Hidden = true;
  493. ultraGridColumn21.Header.VisiblePosition = 21;
  494. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 22;
  495. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  496. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  497. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  498. ultraGridColumn22.Header.VisiblePosition = 22;
  499. ultraGridColumn22.Hidden = true;
  500. ultraGridColumn23.Header.VisiblePosition = 23;
  501. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 10;
  502. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  503. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  504. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  505. ultraGridColumn24.Header.VisiblePosition = 25;
  506. ultraGridColumn24.Hidden = true;
  507. ultraGridColumn25.Header.VisiblePosition = 26;
  508. ultraGridColumn25.Hidden = true;
  509. ultraGridColumn26.Header.VisiblePosition = 29;
  510. ultraGridColumn26.Hidden = true;
  511. ultraGridColumn27.Header.VisiblePosition = 10;
  512. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 14;
  513. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  514. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  515. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  516. ultraGridColumn27.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
  517. ultraGridColumn28.Header.VisiblePosition = 11;
  518. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 16;
  519. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  520. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  521. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  522. ultraGridColumn28.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
  523. ultraGridColumn29.Header.VisiblePosition = 9;
  524. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 12;
  525. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  526. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  527. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  528. ultraGridColumn30.Header.VisiblePosition = 8;
  529. ultraGridColumn30.Hidden = true;
  530. ultraGridBand1.Columns.AddRange(new object[] {
  531. ultraGridColumn1,
  532. ultraGridColumn2,
  533. ultraGridColumn3,
  534. ultraGridColumn4,
  535. ultraGridColumn5,
  536. ultraGridColumn6,
  537. ultraGridColumn7,
  538. ultraGridColumn8,
  539. ultraGridColumn9,
  540. ultraGridColumn10,
  541. ultraGridColumn11,
  542. ultraGridColumn12,
  543. ultraGridColumn13,
  544. ultraGridColumn14,
  545. ultraGridColumn15,
  546. ultraGridColumn16,
  547. ultraGridColumn17,
  548. ultraGridColumn18,
  549. ultraGridColumn19,
  550. ultraGridColumn20,
  551. ultraGridColumn21,
  552. ultraGridColumn22,
  553. ultraGridColumn23,
  554. ultraGridColumn24,
  555. ultraGridColumn25,
  556. ultraGridColumn26,
  557. ultraGridColumn27,
  558. ultraGridColumn28,
  559. ultraGridColumn29,
  560. ultraGridColumn30});
  561. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  562. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  563. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  564. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  565. this.ultraGrid2.Location = new System.Drawing.Point(3, 21);
  566. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  567. this.ultraGrid2.Name = "ultraGrid2";
  568. this.ultraGrid2.Size = new System.Drawing.Size(1574, 190);
  569. this.ultraGrid2.TabIndex = 2;
  570. this.ultraGrid2.Text = "ultraGrid2";
  571. //
  572. // dataSet2
  573. //
  574. this.dataSet2.DataSetName = "NewDataSet";
  575. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  576. this.dataTable4,
  577. this.dataTable5,
  578. this.dataTable6,
  579. this.dataTable7});
  580. //
  581. // dataTable4
  582. //
  583. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  584. this.dataColumn5,
  585. this.dataColumn8,
  586. this.dataColumn9,
  587. this.dataColumn10,
  588. this.dataColumn11,
  589. this.dataColumn12,
  590. this.dataColumn13,
  591. this.dataColumn14,
  592. this.dataColumn15,
  593. this.dataColumn35,
  594. this.dataColumn42});
  595. this.dataTable4.TableName = "Table1";
  596. //
  597. // dataColumn5
  598. //
  599. this.dataColumn5.Caption = "采购单号";
  600. this.dataColumn5.ColumnName = "MRID";
  601. //
  602. // dataColumn8
  603. //
  604. this.dataColumn8.Caption = "紧急程度类型";
  605. this.dataColumn8.ColumnName = "URGENCYTYPE";
  606. //
  607. // dataColumn9
  608. //
  609. this.dataColumn9.Caption = "当前状态";
  610. this.dataColumn9.ColumnName = "STATUS";
  611. //
  612. // dataColumn10
  613. //
  614. this.dataColumn10.Caption = "创建人";
  615. this.dataColumn10.ColumnName = "CREATENAME";
  616. //
  617. // dataColumn11
  618. //
  619. this.dataColumn11.Caption = "创建时间";
  620. this.dataColumn11.ColumnName = "CREATETIME";
  621. //
  622. // dataColumn12
  623. //
  624. this.dataColumn12.Caption = "修改人";
  625. this.dataColumn12.ColumnName = "UPDATENAME";
  626. //
  627. // dataColumn13
  628. //
  629. this.dataColumn13.Caption = "修改时间";
  630. this.dataColumn13.ColumnName = "UPDATETIME";
  631. //
  632. // dataColumn14
  633. //
  634. this.dataColumn14.Caption = "计划结束时间";
  635. this.dataColumn14.ColumnName = "MRPERIODEND";
  636. //
  637. // dataColumn15
  638. //
  639. this.dataColumn15.Caption = "计划开始时间";
  640. this.dataColumn15.ColumnName = "MRPERIODSTART";
  641. //
  642. // dataColumn35
  643. //
  644. this.dataColumn35.ColumnName = "PLANTYPE";
  645. //
  646. // dataColumn42
  647. //
  648. this.dataColumn42.Caption = "采购类型";
  649. this.dataColumn42.ColumnName = "PURTYPE";
  650. //
  651. // dataTable5
  652. //
  653. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  654. this.dataColumn31,
  655. this.dataColumn32,
  656. this.dataColumn33,
  657. this.dataColumn34,
  658. this.dataColumn36,
  659. this.dataColumn37,
  660. this.dataColumn38,
  661. this.dataColumn39,
  662. this.dataColumn40,
  663. this.dataColumn41,
  664. this.dataColumn43,
  665. this.dataColumn44,
  666. this.dataColumn45,
  667. this.dataColumn46,
  668. this.dataColumn47,
  669. this.dataColumn48,
  670. this.dataColumn49,
  671. this.dataColumn50,
  672. this.dataColumn51,
  673. this.dataColumn52,
  674. this.dataColumn53,
  675. this.dataColumn54,
  676. this.dataColumn55,
  677. this.dataColumn56,
  678. this.dataColumn57,
  679. this.dataColumn58,
  680. this.dataColumn73,
  681. this.dataColumn74,
  682. this.dataColumn75,
  683. this.dataColumn76});
  684. this.dataTable5.Constraints.AddRange(new System.Data.Constraint[] {
  685. new System.Data.UniqueConstraint("Constraint1", new string[] {
  686. "MRLINEID"}, true)});
  687. this.dataTable5.PrimaryKey = new System.Data.DataColumn[] {
  688. this.dataColumn31};
  689. this.dataTable5.TableName = "Table2";
  690. //
  691. // dataColumn31
  692. //
  693. this.dataColumn31.AllowDBNull = false;
  694. this.dataColumn31.Caption = "采购单行号";
  695. this.dataColumn31.ColumnName = "MRLINEID";
  696. //
  697. // dataColumn32
  698. //
  699. this.dataColumn32.Caption = "物料编码";
  700. this.dataColumn32.ColumnName = "ITEMCODE";
  701. //
  702. // dataColumn33
  703. //
  704. this.dataColumn33.Caption = "物料描述";
  705. this.dataColumn33.ColumnName = "ITEMDESC";
  706. //
  707. // dataColumn34
  708. //
  709. this.dataColumn34.Caption = "物料名称";
  710. this.dataColumn34.ColumnName = "ITEMNAME";
  711. //
  712. // dataColumn36
  713. //
  714. this.dataColumn36.Caption = "型号规格";
  715. this.dataColumn36.ColumnName = "ITEMMODEL";
  716. //
  717. // dataColumn37
  718. //
  719. this.dataColumn37.Caption = "物料材质";
  720. this.dataColumn37.ColumnName = "ITEMSPEC";
  721. //
  722. // dataColumn38
  723. //
  724. this.dataColumn38.Caption = "数量";
  725. this.dataColumn38.ColumnName = "QTY";
  726. //
  727. // dataColumn39
  728. //
  729. this.dataColumn39.Caption = "库存单位";
  730. this.dataColumn39.ColumnName = "WEIGHTUNIT";
  731. //
  732. // dataColumn40
  733. //
  734. this.dataColumn40.Caption = "费用类型";
  735. this.dataColumn40.ColumnName = "EXPENSETYPE";
  736. //
  737. // dataColumn41
  738. //
  739. this.dataColumn41.Caption = "预算类型";
  740. this.dataColumn41.ColumnName = "BUDGETCODE";
  741. //
  742. // dataColumn43
  743. //
  744. this.dataColumn43.Caption = "备注";
  745. this.dataColumn43.ColumnName = "REMARK";
  746. //
  747. // dataColumn44
  748. //
  749. this.dataColumn44.Caption = "采购管理部门代码";
  750. this.dataColumn44.ColumnName = "BUYERDEPTCODE";
  751. //
  752. // dataColumn45
  753. //
  754. this.dataColumn45.Caption = "采购管理科室代码";
  755. this.dataColumn45.ColumnName = "BUYERUNITCODE";
  756. //
  757. // dataColumn46
  758. //
  759. this.dataColumn46.Caption = "修改人";
  760. this.dataColumn46.ColumnName = "UPDATENAME";
  761. //
  762. // dataColumn47
  763. //
  764. this.dataColumn47.Caption = "修改时间";
  765. this.dataColumn47.ColumnName = "UPDATETIME";
  766. //
  767. // dataColumn48
  768. //
  769. this.dataColumn48.Caption = "要求交货日期";
  770. this.dataColumn48.ColumnName = "AskDeliverDate";
  771. //
  772. // dataColumn49
  773. //
  774. this.dataColumn49.Caption = "属性编码Id";
  775. this.dataColumn49.ColumnName = "ITEMATTRID";
  776. //
  777. // dataColumn50
  778. //
  779. this.dataColumn50.Caption = "属性";
  780. this.dataColumn50.ColumnName = "ITEMATTR";
  781. //
  782. // dataColumn51
  783. //
  784. this.dataColumn51.Caption = "单位";
  785. this.dataColumn51.ColumnName = "ITEMUOM";
  786. //
  787. // dataColumn52
  788. //
  789. this.dataColumn52.Caption = "采购单位Id";
  790. this.dataColumn52.ColumnName = "ITEMUOMID";
  791. //
  792. // dataColumn53
  793. //
  794. this.dataColumn53.Caption = "转换系数";
  795. this.dataColumn53.ColumnName = "ITEMUOMCONEFFICIENT";
  796. //
  797. // dataColumn54
  798. //
  799. this.dataColumn54.Caption = "物料标准编号Id";
  800. this.dataColumn54.ColumnName = "ITEMSTANDARDSID";
  801. //
  802. // dataColumn55
  803. //
  804. this.dataColumn55.Caption = "编号";
  805. this.dataColumn55.ColumnName = "ITEMSTANDARDSCODE";
  806. //
  807. // dataColumn56
  808. //
  809. this.dataColumn56.Caption = "创建人";
  810. this.dataColumn56.ColumnName = "CREATENAME";
  811. //
  812. // dataColumn57
  813. //
  814. this.dataColumn57.Caption = "创建时间";
  815. this.dataColumn57.ColumnName = "CREATETIME";
  816. //
  817. // dataColumn58
  818. //
  819. this.dataColumn58.Caption = "物料唯一标识";
  820. this.dataColumn58.ColumnName = "ITEMUNIQUE";
  821. //
  822. // dataColumn73
  823. //
  824. this.dataColumn73.Caption = "付款方式";
  825. this.dataColumn73.ColumnName = "PAYMENTCODE";
  826. //
  827. // dataColumn74
  828. //
  829. this.dataColumn74.Caption = "包装方式";
  830. this.dataColumn74.ColumnName = "PACKAGETYPE";
  831. //
  832. // dataColumn75
  833. //
  834. this.dataColumn75.Caption = "数量";
  835. this.dataColumn75.ColumnName = "PICKQTY";
  836. //
  837. // dataColumn76
  838. //
  839. this.dataColumn76.Caption = "已生成任务单数量";
  840. this.dataColumn76.ColumnName = "TASKQTY";
  841. //
  842. // dataTable6
  843. //
  844. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  845. this.dataColumn59,
  846. this.dataColumn60,
  847. this.dataColumn61,
  848. this.dataColumn62,
  849. this.dataColumn63,
  850. this.dataColumn64,
  851. this.dataColumn65,
  852. this.dataColumn66,
  853. this.dataColumn67,
  854. this.dataColumn68,
  855. this.dataColumn69,
  856. this.dataColumn70,
  857. this.dataColumn71,
  858. this.dataColumn72});
  859. this.dataTable6.TableName = "Table3";
  860. //
  861. // dataColumn59
  862. //
  863. this.dataColumn59.Caption = "需求单行号";
  864. this.dataColumn59.ColumnName = "MRLINEID";
  865. //
  866. // dataColumn60
  867. //
  868. this.dataColumn60.Caption = "物料编码";
  869. this.dataColumn60.ColumnName = "ITEMCODE";
  870. //
  871. // dataColumn61
  872. //
  873. this.dataColumn61.Caption = "物料描述";
  874. this.dataColumn61.ColumnName = "ITEMDESC";
  875. //
  876. // dataColumn62
  877. //
  878. this.dataColumn62.Caption = "物料名称";
  879. this.dataColumn62.ColumnName = "ITEMNAME";
  880. //
  881. // dataColumn63
  882. //
  883. this.dataColumn63.Caption = "物料型号规格";
  884. this.dataColumn63.ColumnName = "ITEMMODEL";
  885. //
  886. // dataColumn64
  887. //
  888. this.dataColumn64.Caption = "采购单位";
  889. this.dataColumn64.ColumnName = "ITEMUOM";
  890. //
  891. // dataColumn65
  892. //
  893. this.dataColumn65.Caption = "备注";
  894. this.dataColumn65.ColumnName = "REMARK";
  895. //
  896. // dataColumn66
  897. //
  898. this.dataColumn66.Caption = "采购数量";
  899. this.dataColumn66.ColumnName = "QTYPUR";
  900. //
  901. // dataColumn67
  902. //
  903. this.dataColumn67.Caption = "采购单号";
  904. this.dataColumn67.ColumnName = "BUYERDEPTCODE";
  905. //
  906. // dataColumn68
  907. //
  908. this.dataColumn68.Caption = "申报单位";
  909. this.dataColumn68.ColumnName = "DELETENAME";
  910. //
  911. // dataColumn69
  912. //
  913. this.dataColumn69.Caption = "申报数量";
  914. this.dataColumn69.ColumnName = "QTY";
  915. //
  916. // dataColumn70
  917. //
  918. this.dataColumn70.Caption = "预算单价";
  919. this.dataColumn70.ColumnName = "BUGPRICE";
  920. //
  921. // dataColumn71
  922. //
  923. this.dataColumn71.Caption = "预算金额";
  924. this.dataColumn71.ColumnName = "BUDGETAMT";
  925. //
  926. // dataColumn72
  927. //
  928. this.dataColumn72.Caption = "物料唯一标识";
  929. this.dataColumn72.ColumnName = "ITEMUNIQUE";
  930. //
  931. // ultraPanel3
  932. //
  933. //
  934. // ultraPanel3.ClientArea
  935. //
  936. this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox6);
  937. this.ultraPanel3.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
  938. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  939. this.ultraPanel3.Location = new System.Drawing.Point(4, 226);
  940. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  941. this.ultraPanel3.Name = "ultraPanel3";
  942. this.ultraPanel3.Size = new System.Drawing.Size(1580, 174);
  943. this.ultraPanel3.TabIndex = 157;
  944. //
  945. // ultraGroupBox6
  946. //
  947. this.ultraGroupBox6.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  948. this.ultraGroupBox6.Controls.Add(this.panel1);
  949. this.ultraGroupBox6.Controls.Add(this.iiii);
  950. this.ultraGroupBox6.Controls.Add(this.jy_RecordId);
  951. this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
  952. this.ultraGroupBox6.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  953. this.ultraGroupBox6.Location = new System.Drawing.Point(704, 0);
  954. this.ultraGroupBox6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  955. this.ultraGroupBox6.Name = "ultraGroupBox6";
  956. this.ultraGroupBox6.Size = new System.Drawing.Size(876, 174);
  957. this.ultraGroupBox6.TabIndex = 1;
  958. this.ultraGroupBox6.Text = "填写采购纪要";
  959. this.ultraGroupBox6.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  960. //
  961. // panel1
  962. //
  963. this.panel1.Controls.Add(this.ultraPanel21);
  964. this.panel1.Controls.Add(this.panel2);
  965. this.panel1.Controls.Add(this.jy_procRecord);
  966. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  967. this.panel1.Location = new System.Drawing.Point(22, 3);
  968. this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  969. this.panel1.Name = "panel1";
  970. this.panel1.Size = new System.Drawing.Size(851, 168);
  971. this.panel1.TabIndex = 152;
  972. //
  973. // ultraPanel21
  974. //
  975. //
  976. // ultraPanel21.ClientArea
  977. //
  978. this.ultraPanel21.ClientArea.Controls.Add(this.jy_type);
  979. this.ultraPanel21.ClientArea.Controls.Add(this.ultraLabel8);
  980. this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor2);
  981. this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor6);
  982. this.ultraPanel21.ClientArea.Controls.Add(this.jy_negDate);
  983. this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor3);
  984. this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor5);
  985. this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor4);
  986. this.ultraPanel21.Dock = System.Windows.Forms.DockStyle.Fill;
  987. this.ultraPanel21.Location = new System.Drawing.Point(119, 0);
  988. this.ultraPanel21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  989. this.ultraPanel21.Name = "ultraPanel21";
  990. this.ultraPanel21.Size = new System.Drawing.Size(732, 168);
  991. this.ultraPanel21.TabIndex = 154;
  992. //
  993. // jy_type
  994. //
  995. this.jy_type.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  996. valueListItem1.DataValue = "2";
  997. valueListItem1.DisplayText = "采购纪要";
  998. valueListItem2.DataValue = "1";
  999. valueListItem2.DisplayText = "价格审批表";
  1000. this.jy_type.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1001. valueListItem1,
  1002. valueListItem2});
  1003. this.jy_type.Location = new System.Drawing.Point(456, 8);
  1004. this.jy_type.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1005. this.jy_type.Name = "jy_type";
  1006. this.jy_type.Size = new System.Drawing.Size(268, 24);
  1007. this.jy_type.TabIndex = 155;
  1008. //
  1009. // ultraLabel8
  1010. //
  1011. this.ultraLabel8.AutoSize = true;
  1012. this.ultraLabel8.Location = new System.Drawing.Point(377, 10);
  1013. this.ultraLabel8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1014. this.ultraLabel8.Name = "ultraLabel8";
  1015. this.ultraLabel8.Size = new System.Drawing.Size(89, 24);
  1016. this.ultraLabel8.TabIndex = 154;
  1017. this.ultraLabel8.Text = "输出类型";
  1018. //
  1019. // ultraTextEditor2
  1020. //
  1021. this.ultraTextEditor2.AutoSize = false;
  1022. this.ultraTextEditor2.Location = new System.Drawing.Point(3, 35);
  1023. this.ultraTextEditor2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1024. this.ultraTextEditor2.Name = "ultraTextEditor2";
  1025. this.ultraTextEditor2.Size = new System.Drawing.Size(731, 24);
  1026. this.ultraTextEditor2.TabIndex = 143;
  1027. //
  1028. // ultraTextEditor6
  1029. //
  1030. this.ultraTextEditor6.Location = new System.Drawing.Point(3, 138);
  1031. this.ultraTextEditor6.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1032. this.ultraTextEditor6.Name = "ultraTextEditor6";
  1033. this.ultraTextEditor6.Size = new System.Drawing.Size(731, 24);
  1034. this.ultraTextEditor6.TabIndex = 151;
  1035. //
  1036. // jy_negDate
  1037. //
  1038. this.jy_negDate.DateButtons.Add(dateButton1);
  1039. this.jy_negDate.Format = "yyyy/MM/dd";
  1040. this.jy_negDate.Location = new System.Drawing.Point(3, 8);
  1041. this.jy_negDate.Margin = new System.Windows.Forms.Padding(4, 4, 20, 4);
  1042. this.jy_negDate.Name = "jy_negDate";
  1043. this.jy_negDate.NonAutoSizeHeight = 21;
  1044. this.jy_negDate.Size = new System.Drawing.Size(364, 25);
  1045. this.jy_negDate.TabIndex = 54;
  1046. //
  1047. // ultraTextEditor3
  1048. //
  1049. this.ultraTextEditor3.Location = new System.Drawing.Point(3, 60);
  1050. this.ultraTextEditor3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1051. this.ultraTextEditor3.Name = "ultraTextEditor3";
  1052. this.ultraTextEditor3.Size = new System.Drawing.Size(731, 24);
  1053. this.ultraTextEditor3.TabIndex = 145;
  1054. //
  1055. // ultraTextEditor5
  1056. //
  1057. this.ultraTextEditor5.Location = new System.Drawing.Point(3, 112);
  1058. this.ultraTextEditor5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1059. this.ultraTextEditor5.Name = "ultraTextEditor5";
  1060. this.ultraTextEditor5.Size = new System.Drawing.Size(731, 24);
  1061. this.ultraTextEditor5.TabIndex = 149;
  1062. //
  1063. // ultraTextEditor4
  1064. //
  1065. this.ultraTextEditor4.Location = new System.Drawing.Point(3, 86);
  1066. this.ultraTextEditor4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1067. this.ultraTextEditor4.Name = "ultraTextEditor4";
  1068. this.ultraTextEditor4.Size = new System.Drawing.Size(731, 24);
  1069. this.ultraTextEditor4.TabIndex = 147;
  1070. //
  1071. // panel2
  1072. //
  1073. this.panel2.Controls.Add(this.ultraLabel3);
  1074. this.panel2.Controls.Add(this.ultraLabel6);
  1075. this.panel2.Controls.Add(this.ultraLabel28);
  1076. this.panel2.Controls.Add(this.ultraLabel5);
  1077. this.panel2.Controls.Add(this.ultraLabel2);
  1078. this.panel2.Controls.Add(this.ultraLabel4);
  1079. this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
  1080. this.panel2.Location = new System.Drawing.Point(0, 0);
  1081. this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1082. this.panel2.Name = "panel2";
  1083. this.panel2.Size = new System.Drawing.Size(119, 168);
  1084. this.panel2.TabIndex = 153;
  1085. //
  1086. // ultraLabel3
  1087. //
  1088. appearance18.TextHAlignAsString = "Right";
  1089. this.ultraLabel3.Appearance = appearance18;
  1090. this.ultraLabel3.AutoSize = true;
  1091. this.ultraLabel3.Location = new System.Drawing.Point(9, 64);
  1092. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1093. this.ultraLabel3.Name = "ultraLabel3";
  1094. this.ultraLabel3.Size = new System.Drawing.Size(131, 24);
  1095. this.ultraLabel3.TabIndex = 153;
  1096. this.ultraLabel3.Text = "市 场 分 析";
  1097. //
  1098. // ultraLabel6
  1099. //
  1100. appearance19.TextHAlignAsString = "Right";
  1101. this.ultraLabel6.Appearance = appearance19;
  1102. this.ultraLabel6.AutoSize = true;
  1103. this.ultraLabel6.Location = new System.Drawing.Point(8, 139);
  1104. this.ultraLabel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1105. this.ultraLabel6.Name = "ultraLabel6";
  1106. this.ultraLabel6.Size = new System.Drawing.Size(131, 24);
  1107. this.ultraLabel6.TabIndex = 156;
  1108. this.ultraLabel6.Text = "其 他 说 明";
  1109. //
  1110. // ultraLabel28
  1111. //
  1112. appearance22.TextHAlignAsString = "Right";
  1113. this.ultraLabel28.Appearance = appearance22;
  1114. this.ultraLabel28.AutoSize = true;
  1115. this.ultraLabel28.Location = new System.Drawing.Point(8, 14);
  1116. this.ultraLabel28.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1117. this.ultraLabel28.Name = "ultraLabel28";
  1118. this.ultraLabel28.Size = new System.Drawing.Size(131, 24);
  1119. this.ultraLabel28.TabIndex = 151;
  1120. this.ultraLabel28.Text = "谈 判 日 期";
  1121. //
  1122. // ultraLabel5
  1123. //
  1124. appearance24.TextHAlignAsString = "Right";
  1125. this.ultraLabel5.Appearance = appearance24;
  1126. this.ultraLabel5.AutoSize = true;
  1127. this.ultraLabel5.Location = new System.Drawing.Point(8, 114);
  1128. this.ultraLabel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1129. this.ultraLabel5.Name = "ultraLabel5";
  1130. this.ultraLabel5.Size = new System.Drawing.Size(131, 24);
  1131. this.ultraLabel5.TabIndex = 155;
  1132. this.ultraLabel5.Text = "评 价";
  1133. //
  1134. // ultraLabel2
  1135. //
  1136. appearance25.TextHAlignAsString = "Right";
  1137. this.ultraLabel2.Appearance = appearance25;
  1138. this.ultraLabel2.AutoSize = true;
  1139. this.ultraLabel2.Location = new System.Drawing.Point(8, 39);
  1140. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1141. this.ultraLabel2.Name = "ultraLabel2";
  1142. this.ultraLabel2.Size = new System.Drawing.Size(131, 24);
  1143. this.ultraLabel2.TabIndex = 152;
  1144. this.ultraLabel2.Text = "成 本 分 析";
  1145. //
  1146. // ultraLabel4
  1147. //
  1148. appearance26.TextHAlignAsString = "Right";
  1149. this.ultraLabel4.Appearance = appearance26;
  1150. this.ultraLabel4.AutoSize = true;
  1151. this.ultraLabel4.Location = new System.Drawing.Point(8, 89);
  1152. this.ultraLabel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1153. this.ultraLabel4.Name = "ultraLabel4";
  1154. this.ultraLabel4.Size = new System.Drawing.Size(131, 24);
  1155. this.ultraLabel4.TabIndex = 154;
  1156. this.ultraLabel4.Text = "物资使用情况";
  1157. //
  1158. // jy_procRecord
  1159. //
  1160. this.jy_procRecord.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1161. | System.Windows.Forms.AnchorStyles.Left)
  1162. | System.Windows.Forms.AnchorStyles.Right)));
  1163. this.jy_procRecord.Location = new System.Drawing.Point(109, 141);
  1164. this.jy_procRecord.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1165. this.jy_procRecord.Multiline = true;
  1166. this.jy_procRecord.Name = "jy_procRecord";
  1167. this.jy_procRecord.Size = new System.Drawing.Size(675, 0);
  1168. this.jy_procRecord.TabIndex = 55;
  1169. this.jy_procRecord.Visible = false;
  1170. //
  1171. // iiii
  1172. //
  1173. this.iiii.Location = new System.Drawing.Point(800, 56);
  1174. this.iiii.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1175. this.iiii.Name = "iiii";
  1176. this.iiii.Size = new System.Drawing.Size(20, 19);
  1177. this.iiii.TabIndex = 44;
  1178. this.iiii.Text = "纪要号";
  1179. this.iiii.Visible = false;
  1180. //
  1181. // jy_RecordId
  1182. //
  1183. this.jy_RecordId.Location = new System.Drawing.Point(800, 81);
  1184. this.jy_RecordId.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1185. this.jy_RecordId.Name = "jy_RecordId";
  1186. this.jy_RecordId.ReadOnly = true;
  1187. this.jy_RecordId.Size = new System.Drawing.Size(13, 24);
  1188. this.jy_RecordId.TabIndex = 43;
  1189. this.jy_RecordId.Visible = false;
  1190. //
  1191. // ultraExpandableGroupBox1
  1192. //
  1193. this.ultraExpandableGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  1194. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1195. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  1196. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(704, 174);
  1197. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  1198. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
  1199. this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1200. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1201. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(704, 174);
  1202. this.ultraExpandableGroupBox1.TabIndex = 0;
  1203. this.ultraExpandableGroupBox1.Text = "填写任务单";
  1204. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1205. //
  1206. // ultraExpandableGroupBoxPanel1
  1207. //
  1208. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGroupBox5);
  1209. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1210. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(22, 3);
  1211. this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1212. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1213. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(679, 168);
  1214. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1215. //
  1216. // ultraGroupBox5
  1217. //
  1218. this.ultraGroupBox5.Controls.Add(this.txt_FUNCTION_VERSION_NO);
  1219. this.ultraGroupBox5.Controls.Add(this.label7);
  1220. this.ultraGroupBox5.Controls.Add(this.cmb_PAYMENT_CODE);
  1221. this.ultraGroupBox5.Controls.Add(this.cmb_PACKAGE_TYPE);
  1222. this.ultraGroupBox5.Controls.Add(this.ultraLabel1);
  1223. this.ultraGroupBox5.Controls.Add(this.cmb_RECEIVE_TYPE);
  1224. this.ultraGroupBox5.Controls.Add(this.label4);
  1225. this.ultraGroupBox5.Controls.Add(this.label2);
  1226. this.ultraGroupBox5.Controls.Add(this.cmb_DELIVERY_CONDITION);
  1227. this.ultraGroupBox5.Controls.Add(this.label5);
  1228. this.ultraGroupBox5.Controls.Add(this.label1);
  1229. this.ultraGroupBox5.Controls.Add(this.ultcmb_ELIVERY_TYPE);
  1230. this.ultraGroupBox5.Controls.Add(this.lb_ultcmb_PICK_MODE);
  1231. this.ultraGroupBox5.Controls.Add(this.ultcmb_FLOW_TYPE);
  1232. this.ultraGroupBox5.Controls.Add(this.txt_REMARK);
  1233. this.ultraGroupBox5.Controls.Add(this.txt_TASK_NAME);
  1234. this.ultraGroupBox5.Controls.Add(this.lb_ultcmb_FLOW_TYPE);
  1235. this.ultraGroupBox5.Controls.Add(this.txt_TASK_ID);
  1236. this.ultraGroupBox5.Controls.Add(this.ultraTextEditor1);
  1237. this.ultraGroupBox5.Controls.Add(this.ultDt_OFFER_TIME_END);
  1238. this.ultraGroupBox5.Controls.Add(this.ultDt_OFFER_TIME_START);
  1239. this.ultraGroupBox5.Controls.Add(this.label14);
  1240. this.ultraGroupBox5.Controls.Add(this.lb_txt_TASK_NAME);
  1241. this.ultraGroupBox5.Controls.Add(this.label3);
  1242. this.ultraGroupBox5.Controls.Add(this.lb_TASK_ID);
  1243. this.ultraGroupBox5.Controls.Add(this.lb_ultDt_OFFER_TIME_START);
  1244. this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  1245. this.ultraGroupBox5.Location = new System.Drawing.Point(0, 0);
  1246. this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1247. this.ultraGroupBox5.Name = "ultraGroupBox5";
  1248. this.ultraGroupBox5.Size = new System.Drawing.Size(679, 168);
  1249. this.ultraGroupBox5.TabIndex = 0;
  1250. //
  1251. // txt_FUNCTION_VERSION_NO
  1252. //
  1253. appearance12.FontData.BoldAsString = "True";
  1254. appearance12.TextHAlignAsString = "Center";
  1255. appearance12.TextVAlignAsString = "Middle";
  1256. editorButton1.Appearance = appearance12;
  1257. editorButton1.Text = "+";
  1258. this.txt_FUNCTION_VERSION_NO.ButtonsRight.Add(editorButton1);
  1259. this.txt_FUNCTION_VERSION_NO.Location = new System.Drawing.Point(87, 66);
  1260. this.txt_FUNCTION_VERSION_NO.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1261. this.txt_FUNCTION_VERSION_NO.Name = "txt_FUNCTION_VERSION_NO";
  1262. this.txt_FUNCTION_VERSION_NO.ReadOnly = true;
  1263. this.txt_FUNCTION_VERSION_NO.Size = new System.Drawing.Size(228, 24);
  1264. this.txt_FUNCTION_VERSION_NO.TabIndex = 163;
  1265. this.txt_FUNCTION_VERSION_NO.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_FUNCTION_VERSION_NO_EditorButtonClick);
  1266. //
  1267. // label7
  1268. //
  1269. this.label7.AutoSize = true;
  1270. this.label7.Location = new System.Drawing.Point(11, 71);
  1271. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1272. this.label7.Name = "label7";
  1273. this.label7.Size = new System.Drawing.Size(67, 15);
  1274. this.label7.TabIndex = 162;
  1275. this.label7.Text = "招标方案";
  1276. //
  1277. // cmb_PAYMENT_CODE
  1278. //
  1279. this.cmb_PAYMENT_CODE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1280. this.cmb_PAYMENT_CODE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1281. this.cmb_PAYMENT_CODE.Location = new System.Drawing.Point(688, 28);
  1282. this.cmb_PAYMENT_CODE.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1283. this.cmb_PAYMENT_CODE.Name = "cmb_PAYMENT_CODE";
  1284. this.cmb_PAYMENT_CODE.Size = new System.Drawing.Size(13, 24);
  1285. this.cmb_PAYMENT_CODE.TabIndex = 155;
  1286. this.cmb_PAYMENT_CODE.Visible = false;
  1287. //
  1288. // cmb_PACKAGE_TYPE
  1289. //
  1290. this.cmb_PACKAGE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1291. this.cmb_PACKAGE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1292. this.cmb_PACKAGE_TYPE.Location = new System.Drawing.Point(688, 4);
  1293. this.cmb_PACKAGE_TYPE.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1294. this.cmb_PACKAGE_TYPE.Name = "cmb_PACKAGE_TYPE";
  1295. this.cmb_PACKAGE_TYPE.Size = new System.Drawing.Size(13, 24);
  1296. this.cmb_PACKAGE_TYPE.TabIndex = 153;
  1297. this.cmb_PACKAGE_TYPE.Visible = false;
  1298. //
  1299. // ultraLabel1
  1300. //
  1301. appearance9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1302. appearance9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1303. appearance9.TextHAlignAsString = "Center";
  1304. appearance9.TextVAlignAsString = "Middle";
  1305. this.ultraLabel1.Appearance = appearance9;
  1306. this.ultraLabel1.Location = new System.Drawing.Point(520, 68);
  1307. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1308. this.ultraLabel1.Name = "ultraLabel1";
  1309. this.ultraLabel1.Size = new System.Drawing.Size(91, 25);
  1310. this.ultraLabel1.TabIndex = 152;
  1311. this.ultraLabel1.Text = "流程说明";
  1312. //
  1313. // cmb_RECEIVE_TYPE
  1314. //
  1315. this.cmb_RECEIVE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1316. this.cmb_RECEIVE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1317. this.cmb_RECEIVE_TYPE.Location = new System.Drawing.Point(688, 52);
  1318. this.cmb_RECEIVE_TYPE.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1319. this.cmb_RECEIVE_TYPE.Name = "cmb_RECEIVE_TYPE";
  1320. this.cmb_RECEIVE_TYPE.Size = new System.Drawing.Size(13, 24);
  1321. this.cmb_RECEIVE_TYPE.TabIndex = 151;
  1322. this.cmb_RECEIVE_TYPE.Visible = false;
  1323. //
  1324. // label4
  1325. //
  1326. this.label4.AutoSize = true;
  1327. this.label4.Location = new System.Drawing.Point(613, 9);
  1328. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1329. this.label4.Name = "label4";
  1330. this.label4.Size = new System.Drawing.Size(67, 15);
  1331. this.label4.TabIndex = 152;
  1332. this.label4.Text = "包装方式";
  1333. this.label4.Visible = false;
  1334. //
  1335. // label2
  1336. //
  1337. this.label2.AutoSize = true;
  1338. this.label2.Location = new System.Drawing.Point(613, 58);
  1339. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1340. this.label2.Name = "label2";
  1341. this.label2.Size = new System.Drawing.Size(67, 15);
  1342. this.label2.TabIndex = 150;
  1343. this.label2.Text = "接收方式";
  1344. this.label2.Visible = false;
  1345. //
  1346. // cmb_DELIVERY_CONDITION
  1347. //
  1348. this.cmb_DELIVERY_CONDITION.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1349. this.cmb_DELIVERY_CONDITION.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1350. this.cmb_DELIVERY_CONDITION.Location = new System.Drawing.Point(87, 95);
  1351. this.cmb_DELIVERY_CONDITION.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1352. this.cmb_DELIVERY_CONDITION.Name = "cmb_DELIVERY_CONDITION";
  1353. this.cmb_DELIVERY_CONDITION.ReadOnly = true;
  1354. this.cmb_DELIVERY_CONDITION.Size = new System.Drawing.Size(228, 24);
  1355. this.cmb_DELIVERY_CONDITION.TabIndex = 149;
  1356. //
  1357. // label5
  1358. //
  1359. this.label5.AutoSize = true;
  1360. this.label5.Location = new System.Drawing.Point(619, 31);
  1361. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1362. this.label5.Name = "label5";
  1363. this.label5.Size = new System.Drawing.Size(67, 15);
  1364. this.label5.TabIndex = 154;
  1365. this.label5.Text = "付款方式";
  1366. this.label5.Visible = false;
  1367. //
  1368. // label1
  1369. //
  1370. this.label1.AutoSize = true;
  1371. this.label1.Location = new System.Drawing.Point(11, 100);
  1372. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1373. this.label1.Name = "label1";
  1374. this.label1.Size = new System.Drawing.Size(67, 15);
  1375. this.label1.TabIndex = 148;
  1376. this.label1.Text = "运输条件";
  1377. //
  1378. // ultcmb_ELIVERY_TYPE
  1379. //
  1380. this.ultcmb_ELIVERY_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1381. this.ultcmb_ELIVERY_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1382. this.ultcmb_ELIVERY_TYPE.Location = new System.Drawing.Point(391, 95);
  1383. this.ultcmb_ELIVERY_TYPE.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1384. this.ultcmb_ELIVERY_TYPE.Name = "ultcmb_ELIVERY_TYPE";
  1385. this.ultcmb_ELIVERY_TYPE.ReadOnly = true;
  1386. this.ultcmb_ELIVERY_TYPE.Size = new System.Drawing.Size(220, 24);
  1387. this.ultcmb_ELIVERY_TYPE.TabIndex = 147;
  1388. //
  1389. // lb_ultcmb_PICK_MODE
  1390. //
  1391. this.lb_ultcmb_PICK_MODE.AutoSize = true;
  1392. this.lb_ultcmb_PICK_MODE.Location = new System.Drawing.Point(316, 100);
  1393. this.lb_ultcmb_PICK_MODE.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1394. this.lb_ultcmb_PICK_MODE.Name = "lb_ultcmb_PICK_MODE";
  1395. this.lb_ultcmb_PICK_MODE.Size = new System.Drawing.Size(67, 15);
  1396. this.lb_ultcmb_PICK_MODE.TabIndex = 5;
  1397. this.lb_ultcmb_PICK_MODE.Text = "运输方式";
  1398. //
  1399. // ultcmb_FLOW_TYPE
  1400. //
  1401. this.ultcmb_FLOW_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1402. this.ultcmb_FLOW_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1403. this.ultcmb_FLOW_TYPE.Location = new System.Drawing.Point(391, 66);
  1404. this.ultcmb_FLOW_TYPE.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1405. this.ultcmb_FLOW_TYPE.Name = "ultcmb_FLOW_TYPE";
  1406. this.ultcmb_FLOW_TYPE.ReadOnly = true;
  1407. this.ultcmb_FLOW_TYPE.Size = new System.Drawing.Size(121, 24);
  1408. this.ultcmb_FLOW_TYPE.TabIndex = 146;
  1409. //
  1410. // txt_REMARK
  1411. //
  1412. this.txt_REMARK.Location = new System.Drawing.Point(87, 124);
  1413. this.txt_REMARK.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1414. this.txt_REMARK.Multiline = true;
  1415. this.txt_REMARK.Name = "txt_REMARK";
  1416. this.txt_REMARK.ReadOnly = true;
  1417. this.txt_REMARK.Size = new System.Drawing.Size(524, 26);
  1418. this.txt_REMARK.TabIndex = 143;
  1419. //
  1420. // txt_TASK_NAME
  1421. //
  1422. this.txt_TASK_NAME.Location = new System.Drawing.Point(391, 36);
  1423. this.txt_TASK_NAME.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1424. this.txt_TASK_NAME.Name = "txt_TASK_NAME";
  1425. this.txt_TASK_NAME.ReadOnly = true;
  1426. this.txt_TASK_NAME.Size = new System.Drawing.Size(220, 24);
  1427. this.txt_TASK_NAME.TabIndex = 142;
  1428. //
  1429. // lb_ultcmb_FLOW_TYPE
  1430. //
  1431. this.lb_ultcmb_FLOW_TYPE.AutoSize = true;
  1432. this.lb_ultcmb_FLOW_TYPE.Location = new System.Drawing.Point(316, 71);
  1433. this.lb_ultcmb_FLOW_TYPE.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1434. this.lb_ultcmb_FLOW_TYPE.Name = "lb_ultcmb_FLOW_TYPE";
  1435. this.lb_ultcmb_FLOW_TYPE.Size = new System.Drawing.Size(67, 15);
  1436. this.lb_ultcmb_FLOW_TYPE.TabIndex = 4;
  1437. this.lb_ultcmb_FLOW_TYPE.Text = "招标流程";
  1438. //
  1439. // txt_TASK_ID
  1440. //
  1441. this.txt_TASK_ID.Enabled = false;
  1442. this.txt_TASK_ID.Location = new System.Drawing.Point(87, 38);
  1443. this.txt_TASK_ID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1444. this.txt_TASK_ID.Name = "txt_TASK_ID";
  1445. this.txt_TASK_ID.ReadOnly = true;
  1446. this.txt_TASK_ID.Size = new System.Drawing.Size(228, 24);
  1447. this.txt_TASK_ID.TabIndex = 141;
  1448. //
  1449. // ultraTextEditor1
  1450. //
  1451. appearance1.TextHAlignAsString = "Center";
  1452. appearance1.TextVAlignAsString = "Middle";
  1453. this.ultraTextEditor1.Appearance = appearance1;
  1454. this.ultraTextEditor1.Enabled = false;
  1455. this.ultraTextEditor1.Location = new System.Drawing.Point(616, 71);
  1456. this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1457. this.ultraTextEditor1.Multiline = true;
  1458. this.ultraTextEditor1.Name = "ultraTextEditor1";
  1459. this.ultraTextEditor1.Size = new System.Drawing.Size(25, 26);
  1460. this.ultraTextEditor1.TabIndex = 144;
  1461. this.ultraTextEditor1.Visible = false;
  1462. //
  1463. // ultDt_OFFER_TIME_END
  1464. //
  1465. this.ultDt_OFFER_TIME_END.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1466. this.ultDt_OFFER_TIME_END.FormatProvider = new System.Globalization.CultureInfo("zh-CN");
  1467. this.ultDt_OFFER_TIME_END.Location = new System.Drawing.Point(391, 9);
  1468. this.ultDt_OFFER_TIME_END.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1469. this.ultDt_OFFER_TIME_END.MaskInput = "{date} {longtime}";
  1470. this.ultDt_OFFER_TIME_END.Name = "ultDt_OFFER_TIME_END";
  1471. this.ultDt_OFFER_TIME_END.ReadOnly = true;
  1472. this.ultDt_OFFER_TIME_END.Size = new System.Drawing.Size(220, 24);
  1473. this.ultDt_OFFER_TIME_END.TabIndex = 140;
  1474. //
  1475. // ultDt_OFFER_TIME_START
  1476. //
  1477. this.ultDt_OFFER_TIME_START.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1478. this.ultDt_OFFER_TIME_START.FormatProvider = new System.Globalization.CultureInfo("zh-CN");
  1479. this.ultDt_OFFER_TIME_START.Location = new System.Drawing.Point(87, 9);
  1480. this.ultDt_OFFER_TIME_START.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1481. this.ultDt_OFFER_TIME_START.MaskInput = "{date} {longtime}";
  1482. this.ultDt_OFFER_TIME_START.Name = "ultDt_OFFER_TIME_START";
  1483. this.ultDt_OFFER_TIME_START.ReadOnly = true;
  1484. this.ultDt_OFFER_TIME_START.Size = new System.Drawing.Size(228, 24);
  1485. this.ultDt_OFFER_TIME_START.TabIndex = 139;
  1486. //
  1487. // label14
  1488. //
  1489. this.label14.AutoSize = true;
  1490. this.label14.Location = new System.Drawing.Point(340, 14);
  1491. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1492. this.label14.Name = "label14";
  1493. this.label14.Size = new System.Drawing.Size(31, 15);
  1494. this.label14.TabIndex = 138;
  1495. this.label14.Text = "---";
  1496. //
  1497. // lb_txt_TASK_NAME
  1498. //
  1499. this.lb_txt_TASK_NAME.AutoSize = true;
  1500. this.lb_txt_TASK_NAME.Location = new System.Drawing.Point(316, 41);
  1501. this.lb_txt_TASK_NAME.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1502. this.lb_txt_TASK_NAME.Name = "lb_txt_TASK_NAME";
  1503. this.lb_txt_TASK_NAME.Size = new System.Drawing.Size(67, 15);
  1504. this.lb_txt_TASK_NAME.TabIndex = 3;
  1505. this.lb_txt_TASK_NAME.Text = "任务名称";
  1506. //
  1507. // label3
  1508. //
  1509. this.label3.AutoSize = true;
  1510. this.label3.Location = new System.Drawing.Point(11, 128);
  1511. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1512. this.label3.Name = "label3";
  1513. this.label3.Size = new System.Drawing.Size(69, 15);
  1514. this.label3.TabIndex = 2;
  1515. this.label3.Text = "备 注";
  1516. //
  1517. // lb_TASK_ID
  1518. //
  1519. this.lb_TASK_ID.AutoSize = true;
  1520. this.lb_TASK_ID.Location = new System.Drawing.Point(11, 42);
  1521. this.lb_TASK_ID.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1522. this.lb_TASK_ID.Name = "lb_TASK_ID";
  1523. this.lb_TASK_ID.Size = new System.Drawing.Size(67, 15);
  1524. this.lb_TASK_ID.TabIndex = 1;
  1525. this.lb_TASK_ID.Text = "任务编号";
  1526. //
  1527. // lb_ultDt_OFFER_TIME_START
  1528. //
  1529. this.lb_ultDt_OFFER_TIME_START.AutoSize = true;
  1530. this.lb_ultDt_OFFER_TIME_START.Location = new System.Drawing.Point(11, 14);
  1531. this.lb_ultDt_OFFER_TIME_START.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1532. this.lb_ultDt_OFFER_TIME_START.Name = "lb_ultDt_OFFER_TIME_START";
  1533. this.lb_ultDt_OFFER_TIME_START.Size = new System.Drawing.Size(67, 15);
  1534. this.lb_ultDt_OFFER_TIME_START.TabIndex = 0;
  1535. this.lb_ultDt_OFFER_TIME_START.Text = "报价时间";
  1536. //
  1537. // barsManagerButon
  1538. //
  1539. this.barsManagerButon.DesignerFlags = 1;
  1540. this.barsManagerButon.DockWithinContainer = this;
  1541. this.barsManagerButon.DockWithinContainerBaseType = typeof(System.Windows.Forms.Form);
  1542. this.barsManagerButon.MiniToolbar.ToolRowCount = 3;
  1543. this.barsManagerButon.Office2007UICompatibility = false;
  1544. ribbonTab1.Caption = "ribbon1";
  1545. ribbonGroup1.Caption = "ribbonGroup1";
  1546. ribbonGroup2.Caption = "ribbonGroup2";
  1547. ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
  1548. ribbonGroup1,
  1549. ribbonGroup2});
  1550. this.barsManagerButon.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
  1551. ribbonTab1});
  1552. this.barsManagerButon.ShowQuickCustomizeButton = false;
  1553. ultraToolbar1.DockedColumn = 0;
  1554. ultraToolbar1.DockedRow = 0;
  1555. buttonTool5.InstanceProps.IsFirstInGroup = true;
  1556. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1557. buttonTool2,
  1558. buttonTool5});
  1559. ultraToolbar1.Text = "UltraToolbar1";
  1560. ultraToolbar1.Visible = false;
  1561. ultraToolbar2.DockedColumn = 0;
  1562. ultraToolbar2.DockedRow = 0;
  1563. ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1564. buttonTool4,
  1565. buttonTool16});
  1566. ultraToolbar2.Text = "UltraToolbar2";
  1567. this.barsManagerButon.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  1568. ultraToolbar1,
  1569. ultraToolbar2});
  1570. buttonTool6.SharedPropsInternal.Caption = "新增";
  1571. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1572. buttonTool7.SharedPropsInternal.Caption = "删除";
  1573. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1574. buttonTool8.SharedPropsInternal.Caption = "修改";
  1575. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1576. buttonTool9.SharedPropsInternal.Caption = "查询";
  1577. buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1578. buttonTool10.SharedPropsInternal.Caption = "关闭";
  1579. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1580. buttonTool12.SharedPropsInternal.Caption = "恢复";
  1581. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1582. buttonTool3.SharedPropsInternal.Caption = "确认";
  1583. buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1584. appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
  1585. buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
  1586. buttonTool11.SharedPropsInternal.Caption = "添加供应商";
  1587. buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1588. appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
  1589. buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
  1590. buttonTool13.SharedPropsInternal.Caption = "关闭";
  1591. buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1592. appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
  1593. buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance8;
  1594. buttonTool17.SharedPropsInternal.Caption = "确定修改";
  1595. buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1596. appearance6.Image = ((object)(resources.GetObject("appearance6.Image")));
  1597. buttonTool15.SharedPropsInternal.AppearancesSmall.Appearance = appearance6;
  1598. buttonTool15.SharedPropsInternal.Caption = "添加评标人员";
  1599. buttonTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1600. this.barsManagerButon.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1601. buttonTool6,
  1602. buttonTool7,
  1603. buttonTool8,
  1604. buttonTool9,
  1605. buttonTool10,
  1606. buttonTool12,
  1607. buttonTool3,
  1608. buttonTool11,
  1609. buttonTool13,
  1610. buttonTool17,
  1611. buttonTool15});
  1612. this.barsManagerButon.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.barsManagerButon_ToolClick);
  1613. //
  1614. // _Form1_Toolbars_Dock_Area_Top
  1615. //
  1616. this._Form1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1617. this._Form1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  1618. this._Form1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  1619. this._Form1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  1620. this._Form1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  1621. this._Form1_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1622. this._Form1_Toolbars_Dock_Area_Top.Name = "_Form1_Toolbars_Dock_Area_Top";
  1623. this._Form1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1588, 28);
  1624. this._Form1_Toolbars_Dock_Area_Top.ToolbarsManager = this.barsManagerButon;
  1625. //
  1626. // _Form1_Toolbars_Dock_Area_Bottom
  1627. //
  1628. this._Form1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1629. this._Form1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  1630. this._Form1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  1631. this._Form1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  1632. this._Form1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 624);
  1633. this._Form1_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1634. this._Form1_Toolbars_Dock_Area_Bottom.Name = "_Form1_Toolbars_Dock_Area_Bottom";
  1635. this._Form1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1588, 0);
  1636. this._Form1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.barsManagerButon;
  1637. //
  1638. // _Form1_Toolbars_Dock_Area_Left
  1639. //
  1640. this._Form1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1641. this._Form1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  1642. this._Form1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  1643. this._Form1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  1644. this._Form1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
  1645. this._Form1_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1646. this._Form1_Toolbars_Dock_Area_Left.Name = "_Form1_Toolbars_Dock_Area_Left";
  1647. this._Form1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 596);
  1648. this._Form1_Toolbars_Dock_Area_Left.ToolbarsManager = this.barsManagerButon;
  1649. //
  1650. // _Form1_Toolbars_Dock_Area_Right
  1651. //
  1652. this._Form1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1653. this._Form1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  1654. this._Form1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  1655. this._Form1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  1656. this._Form1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1588, 28);
  1657. this._Form1_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1658. this._Form1_Toolbars_Dock_Area_Right.Name = "_Form1_Toolbars_Dock_Area_Right";
  1659. this._Form1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 596);
  1660. this._Form1_Toolbars_Dock_Area_Right.ToolbarsManager = this.barsManagerButon;
  1661. //
  1662. // dataSet1
  1663. //
  1664. this.dataSet1.DataSetName = "NewDataSet";
  1665. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  1666. this.dataTable2,
  1667. this.dataTable3,
  1668. this.dataTable1});
  1669. //
  1670. // dataTable2
  1671. //
  1672. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  1673. this.dataColumn16,
  1674. this.dataColumn17,
  1675. this.dataColumn18,
  1676. this.dataColumn19,
  1677. this.dataColumn20,
  1678. this.dataColumn21,
  1679. this.dataColumn22,
  1680. this.dataColumn23,
  1681. this.dataColumn24,
  1682. this.dataColumn25,
  1683. this.dataColumn26,
  1684. this.dataColumn27,
  1685. this.dataColumn28,
  1686. this.dataColumn29,
  1687. this.dataColumn30,
  1688. this.dataColumn3,
  1689. this.dataColumn4});
  1690. this.dataTable2.TableName = "Table2";
  1691. //
  1692. // dataColumn16
  1693. //
  1694. this.dataColumn16.Caption = "采购单行号";
  1695. this.dataColumn16.ColumnName = "MRLINEID";
  1696. //
  1697. // dataColumn17
  1698. //
  1699. this.dataColumn17.Caption = "物料编码";
  1700. this.dataColumn17.ColumnName = "ITEMCODE";
  1701. //
  1702. // dataColumn18
  1703. //
  1704. this.dataColumn18.Caption = "物料描述";
  1705. this.dataColumn18.ColumnName = "ITEMDESC";
  1706. //
  1707. // dataColumn19
  1708. //
  1709. this.dataColumn19.Caption = "物料名称";
  1710. this.dataColumn19.ColumnName = "ITEMNAME";
  1711. //
  1712. // dataColumn20
  1713. //
  1714. this.dataColumn20.Caption = "型号规格";
  1715. this.dataColumn20.ColumnName = "ITEMMODEL";
  1716. //
  1717. // dataColumn21
  1718. //
  1719. this.dataColumn21.Caption = "物料材质";
  1720. this.dataColumn21.ColumnName = "ITEMSPEC";
  1721. //
  1722. // dataColumn22
  1723. //
  1724. this.dataColumn22.Caption = "数量";
  1725. this.dataColumn22.ColumnName = "QTY";
  1726. //
  1727. // dataColumn23
  1728. //
  1729. this.dataColumn23.Caption = "重量单位";
  1730. this.dataColumn23.ColumnName = "WEIGHTUNIT";
  1731. //
  1732. // dataColumn24
  1733. //
  1734. this.dataColumn24.Caption = "费用类型";
  1735. this.dataColumn24.ColumnName = "EXPENSETYPE";
  1736. //
  1737. // dataColumn25
  1738. //
  1739. this.dataColumn25.Caption = "预算类型";
  1740. this.dataColumn25.ColumnName = "BUDGETCODE";
  1741. //
  1742. // dataColumn26
  1743. //
  1744. this.dataColumn26.Caption = "备注";
  1745. this.dataColumn26.ColumnName = "REMARK";
  1746. //
  1747. // dataColumn27
  1748. //
  1749. this.dataColumn27.Caption = "采购管理部门代码";
  1750. this.dataColumn27.ColumnName = "BUYERDEPTCODE";
  1751. //
  1752. // dataColumn28
  1753. //
  1754. this.dataColumn28.Caption = "采购管理科室代码";
  1755. this.dataColumn28.ColumnName = "BUYERUNITCODE";
  1756. //
  1757. // dataColumn29
  1758. //
  1759. this.dataColumn29.Caption = "修改人";
  1760. this.dataColumn29.ColumnName = "UPDATENAME";
  1761. //
  1762. // dataColumn30
  1763. //
  1764. this.dataColumn30.Caption = "修改时间";
  1765. this.dataColumn30.ColumnName = "UPDATETIME";
  1766. //
  1767. // dataColumn3
  1768. //
  1769. this.dataColumn3.Caption = "属性名称";
  1770. this.dataColumn3.ColumnName = "ITEMATTR";
  1771. //
  1772. // dataColumn4
  1773. //
  1774. this.dataColumn4.Caption = "属性编号";
  1775. this.dataColumn4.ColumnName = "ITEMATTRID";
  1776. //
  1777. // dataTable3
  1778. //
  1779. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1780. this.dataColumn6,
  1781. this.dataColumn7});
  1782. this.dataTable3.TableName = "Table3";
  1783. //
  1784. // dataColumn6
  1785. //
  1786. this.dataColumn6.Caption = "供应商代码";
  1787. this.dataColumn6.ColumnName = "SUPPCODE";
  1788. //
  1789. // dataColumn7
  1790. //
  1791. this.dataColumn7.Caption = "供应商名称";
  1792. this.dataColumn7.ColumnName = "SUPPNAME";
  1793. //
  1794. // dataTable1
  1795. //
  1796. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  1797. this.dataColumn1,
  1798. this.dataColumn2});
  1799. this.dataTable1.TableName = "Table1";
  1800. //
  1801. // dataColumn1
  1802. //
  1803. this.dataColumn1.Caption = "供应商代码";
  1804. this.dataColumn1.ColumnName = "SUPPCODE";
  1805. //
  1806. // dataColumn2
  1807. //
  1808. this.dataColumn2.Caption = "供应商名称";
  1809. this.dataColumn2.ColumnName = "SUPPNAME";
  1810. //
  1811. // btnSelEvaGroup
  1812. //
  1813. appearance7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1814. appearance7.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
  1815. this.btnSelEvaGroup.Appearance = appearance7;
  1816. this.btnSelEvaGroup.ButtonStyle = Infragistics.Win.UIElementButtonStyle.PopupSoft;
  1817. this.btnSelEvaGroup.Location = new System.Drawing.Point(3, 132);
  1818. this.btnSelEvaGroup.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1819. this.btnSelEvaGroup.Name = "btnSelEvaGroup";
  1820. this.btnSelEvaGroup.Size = new System.Drawing.Size(245, 38);
  1821. this.btnSelEvaGroup.TabIndex = 93;
  1822. this.btnSelEvaGroup.Text = "添加评标人员分组";
  1823. this.btnSelEvaGroup.Click += new System.EventHandler(this.btnSelEvaGroup_Click);
  1824. //
  1825. // ultraButton1
  1826. //
  1827. appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1828. appearance2.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
  1829. this.ultraButton1.Appearance = appearance2;
  1830. this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.PopupSoft;
  1831. this.ultraButton1.Location = new System.Drawing.Point(3, 94);
  1832. this.ultraButton1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1833. this.ultraButton1.Name = "ultraButton1";
  1834. this.ultraButton1.Size = new System.Drawing.Size(245, 32);
  1835. this.ultraButton1.TabIndex = 92;
  1836. this.ultraButton1.Text = "添加单个评标人员";
  1837. this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
  1838. //
  1839. // label9
  1840. //
  1841. this.label9.BackColor = System.Drawing.SystemColors.Highlight;
  1842. this.label9.Location = new System.Drawing.Point(3, 6);
  1843. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1844. this.label9.Name = "label9";
  1845. this.label9.Size = new System.Drawing.Size(44, 26);
  1846. this.label9.TabIndex = 91;
  1847. this.label9.Text = "角色";
  1848. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1849. //
  1850. // ultraGrid3
  1851. //
  1852. this.ultraGrid3.DataMember = "Table3";
  1853. this.ultraGrid3.DataSource = this.dataSet1;
  1854. ultraGridColumn39.Header.VisiblePosition = 0;
  1855. ultraGridColumn39.Width = 152;
  1856. ultraGridColumn40.Header.VisiblePosition = 1;
  1857. ultraGridColumn40.Width = 253;
  1858. ultraGridColumn41.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1859. ultraGridColumn41.Header.Caption = "删除";
  1860. ultraGridColumn41.Header.VisiblePosition = 2;
  1861. ultraGridColumn41.Hidden = true;
  1862. ultraGridColumn41.NullText = "删除";
  1863. ultraGridColumn41.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1864. ultraGridColumn41.Width = 60;
  1865. ultraGridBand3.Columns.AddRange(new object[] {
  1866. ultraGridColumn39,
  1867. ultraGridColumn40,
  1868. ultraGridColumn41});
  1869. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1870. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1871. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  1872. this.ultraGrid3.Location = new System.Drawing.Point(22, 3);
  1873. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1874. this.ultraGrid3.Name = "ultraGrid3";
  1875. this.ultraGrid3.Size = new System.Drawing.Size(679, 178);
  1876. this.ultraGrid3.TabIndex = 2;
  1877. this.ultraGrid3.Text = "ultraGrid3";
  1878. //
  1879. // cmb_EVA_ROLE_NAME
  1880. //
  1881. this.cmb_EVA_ROLE_NAME.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1882. this.cmb_EVA_ROLE_NAME.Location = new System.Drawing.Point(55, 6);
  1883. this.cmb_EVA_ROLE_NAME.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1884. this.cmb_EVA_ROLE_NAME.Name = "cmb_EVA_ROLE_NAME";
  1885. this.cmb_EVA_ROLE_NAME.Size = new System.Drawing.Size(193, 24);
  1886. this.cmb_EVA_ROLE_NAME.TabIndex = 90;
  1887. //
  1888. // txt_EVA_ORG_ID
  1889. //
  1890. this.txt_EVA_ORG_ID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1891. this.txt_EVA_ORG_ID.Location = new System.Drawing.Point(331, 62);
  1892. this.txt_EVA_ORG_ID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1893. this.txt_EVA_ORG_ID.Name = "txt_EVA_ORG_ID";
  1894. this.txt_EVA_ORG_ID.Size = new System.Drawing.Size(14, 25);
  1895. this.txt_EVA_ORG_ID.TabIndex = 89;
  1896. this.txt_EVA_ORG_ID.Visible = false;
  1897. //
  1898. // ultraGroupBox2
  1899. //
  1900. this.ultraGroupBox2.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  1901. this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
  1902. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
  1903. this.ultraGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  1904. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  1905. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1906. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1907. this.ultraGroupBox2.Size = new System.Drawing.Size(704, 184);
  1908. this.ultraGroupBox2.TabIndex = 5;
  1909. this.ultraGroupBox2.Text = "已选供应商";
  1910. this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1911. //
  1912. // dataTable9
  1913. //
  1914. this.dataTable9.Columns.AddRange(new System.Data.DataColumn[] {
  1915. this.dataColumn104,
  1916. this.dataColumn105,
  1917. this.dataColumn106,
  1918. this.dataColumn107,
  1919. this.dataColumn108,
  1920. this.dataColumn109,
  1921. this.dataColumn113});
  1922. this.dataTable9.Constraints.AddRange(new System.Data.Constraint[] {
  1923. new System.Data.UniqueConstraint("Constraint1", new string[] {
  1924. "EVAUSERID"}, true)});
  1925. this.dataTable9.PrimaryKey = new System.Data.DataColumn[] {
  1926. this.dataColumn106};
  1927. this.dataTable9.TableName = "Table2";
  1928. //
  1929. // dataColumn104
  1930. //
  1931. this.dataColumn104.Caption = "角色ID";
  1932. this.dataColumn104.ColumnName = "EVAROLEID";
  1933. //
  1934. // dataColumn105
  1935. //
  1936. this.dataColumn105.Caption = "角色名称";
  1937. this.dataColumn105.ColumnName = "EVAROLENAME";
  1938. //
  1939. // dataColumn106
  1940. //
  1941. this.dataColumn106.AllowDBNull = false;
  1942. this.dataColumn106.Caption = "评标人ID";
  1943. this.dataColumn106.ColumnName = "EVAUSERID";
  1944. //
  1945. // dataColumn107
  1946. //
  1947. this.dataColumn107.Caption = "评标人姓名";
  1948. this.dataColumn107.ColumnName = "EVAUSERNAME";
  1949. //
  1950. // dataColumn108
  1951. //
  1952. this.dataColumn108.Caption = "评标人科室ID";
  1953. this.dataColumn108.ColumnName = "EVAORGID";
  1954. //
  1955. // dataColumn109
  1956. //
  1957. this.dataColumn109.Caption = "评标人科室名称";
  1958. this.dataColumn109.ColumnName = "EVAORGNAME";
  1959. //
  1960. // dataColumn113
  1961. //
  1962. this.dataColumn113.ColumnName = "ID";
  1963. //
  1964. // txt_EVA_USERID
  1965. //
  1966. this.txt_EVA_USERID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1967. this.txt_EVA_USERID.Location = new System.Drawing.Point(331, 34);
  1968. this.txt_EVA_USERID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1969. this.txt_EVA_USERID.Name = "txt_EVA_USERID";
  1970. this.txt_EVA_USERID.Size = new System.Drawing.Size(13, 25);
  1971. this.txt_EVA_USERID.TabIndex = 86;
  1972. this.txt_EVA_USERID.Visible = false;
  1973. //
  1974. // dataSet3
  1975. //
  1976. this.dataSet3.DataSetName = "NewDataSet";
  1977. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  1978. this.dataTable9});
  1979. //
  1980. // tableLayoutPanel1
  1981. //
  1982. this.tableLayoutPanel1.ColumnCount = 1;
  1983. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1984. this.tableLayoutPanel1.Controls.Add(this.ultraPanel1, 0, 2);
  1985. this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox3, 0, 0);
  1986. this.tableLayoutPanel1.Controls.Add(this.ultraPanel3, 0, 1);
  1987. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1988. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 28);
  1989. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  1990. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  1991. this.tableLayoutPanel1.RowCount = 3;
  1992. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1993. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 182F));
  1994. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 192F));
  1995. this.tableLayoutPanel1.Size = new System.Drawing.Size(1588, 596);
  1996. this.tableLayoutPanel1.TabIndex = 5;
  1997. //
  1998. // ultraPanel1
  1999. //
  2000. //
  2001. // ultraPanel1.ClientArea
  2002. //
  2003. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox1);
  2004. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
  2005. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2006. this.ultraPanel1.Location = new System.Drawing.Point(4, 408);
  2007. this.ultraPanel1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2008. this.ultraPanel1.Name = "ultraPanel1";
  2009. this.ultraPanel1.Size = new System.Drawing.Size(1580, 184);
  2010. this.ultraPanel1.TabIndex = 156;
  2011. //
  2012. // ultraGroupBox1
  2013. //
  2014. this.ultraGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  2015. this.ultraGroupBox1.Controls.Add(this.ultraPanel2);
  2016. this.ultraGroupBox1.Controls.Add(this.ultraGrid4);
  2017. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  2018. this.ultraGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
  2019. this.ultraGroupBox1.Location = new System.Drawing.Point(704, 0);
  2020. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2021. this.ultraGroupBox1.Name = "ultraGroupBox1";
  2022. this.ultraGroupBox1.Size = new System.Drawing.Size(876, 184);
  2023. this.ultraGroupBox1.TabIndex = 6;
  2024. this.ultraGroupBox1.Text = "选择评标人员";
  2025. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  2026. //
  2027. // ultraPanel2
  2028. //
  2029. //
  2030. // ultraPanel2.ClientArea
  2031. //
  2032. this.ultraPanel2.ClientArea.Controls.Add(this.btnSelEvaGroup);
  2033. this.ultraPanel2.ClientArea.Controls.Add(this.ultraButton1);
  2034. this.ultraPanel2.ClientArea.Controls.Add(this.label9);
  2035. this.ultraPanel2.ClientArea.Controls.Add(this.cmb_EVA_ROLE_NAME);
  2036. this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_ORG_ID);
  2037. this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_ORG_NAME);
  2038. this.ultraPanel2.ClientArea.Controls.Add(this.label8);
  2039. this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_USERID);
  2040. this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_USERNAME);
  2041. this.ultraPanel2.ClientArea.Controls.Add(this.label6);
  2042. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Right;
  2043. this.ultraPanel2.Location = new System.Drawing.Point(618, 3);
  2044. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2045. this.ultraPanel2.Name = "ultraPanel2";
  2046. this.ultraPanel2.Size = new System.Drawing.Size(255, 178);
  2047. this.ultraPanel2.TabIndex = 2;
  2048. //
  2049. // txt_EVA_ORG_NAME
  2050. //
  2051. this.txt_EVA_ORG_NAME.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2052. this.txt_EVA_ORG_NAME.Enabled = false;
  2053. this.txt_EVA_ORG_NAME.Location = new System.Drawing.Point(55, 62);
  2054. this.txt_EVA_ORG_NAME.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2055. this.txt_EVA_ORG_NAME.Name = "txt_EVA_ORG_NAME";
  2056. this.txt_EVA_ORG_NAME.ReadOnly = true;
  2057. this.txt_EVA_ORG_NAME.Size = new System.Drawing.Size(193, 25);
  2058. this.txt_EVA_ORG_NAME.TabIndex = 88;
  2059. //
  2060. // label8
  2061. //
  2062. this.label8.BackColor = System.Drawing.SystemColors.Highlight;
  2063. this.label8.Location = new System.Drawing.Point(3, 62);
  2064. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2065. this.label8.Name = "label8";
  2066. this.label8.Size = new System.Drawing.Size(44, 26);
  2067. this.label8.TabIndex = 87;
  2068. this.label8.Text = "科室";
  2069. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2070. //
  2071. // txt_EVA_USERNAME
  2072. //
  2073. appearance4.FontData.BoldAsString = "True";
  2074. appearance4.TextHAlignAsString = "Center";
  2075. appearance4.TextVAlignAsString = "Middle";
  2076. editorButton2.Appearance = appearance4;
  2077. editorButton2.Text = "+";
  2078. this.txt_EVA_USERNAME.ButtonsRight.Add(editorButton2);
  2079. this.txt_EVA_USERNAME.Location = new System.Drawing.Point(55, 34);
  2080. this.txt_EVA_USERNAME.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2081. this.txt_EVA_USERNAME.Name = "txt_EVA_USERNAME";
  2082. this.txt_EVA_USERNAME.ReadOnly = true;
  2083. this.txt_EVA_USERNAME.Size = new System.Drawing.Size(193, 24);
  2084. this.txt_EVA_USERNAME.TabIndex = 85;
  2085. this.txt_EVA_USERNAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_EVA_USERNAME_EditorButtonClick);
  2086. //
  2087. // label6
  2088. //
  2089. this.label6.BackColor = System.Drawing.SystemColors.Highlight;
  2090. this.label6.Location = new System.Drawing.Point(3, 34);
  2091. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2092. this.label6.Name = "label6";
  2093. this.label6.Size = new System.Drawing.Size(44, 26);
  2094. this.label6.TabIndex = 84;
  2095. this.label6.Text = "名称";
  2096. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2097. //
  2098. // ultraGrid4
  2099. //
  2100. this.ultraGrid4.DataMember = "Table2";
  2101. this.ultraGrid4.DataSource = this.dataSet3;
  2102. ultraGridColumn31.Header.VisiblePosition = 0;
  2103. ultraGridColumn32.Header.VisiblePosition = 2;
  2104. ultraGridColumn32.Width = 124;
  2105. ultraGridColumn33.Header.VisiblePosition = 3;
  2106. ultraGridColumn33.Hidden = true;
  2107. ultraGridColumn34.Header.VisiblePosition = 1;
  2108. ultraGridColumn34.Width = 114;
  2109. ultraGridColumn35.Header.VisiblePosition = 4;
  2110. ultraGridColumn35.Hidden = true;
  2111. ultraGridColumn36.Header.VisiblePosition = 5;
  2112. ultraGridColumn36.Width = 160;
  2113. ultraGridColumn37.Header.VisiblePosition = 7;
  2114. ultraGridColumn37.Hidden = true;
  2115. ultraGridColumn38.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  2116. appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2117. appearance3.TextHAlignAsString = "Center";
  2118. ultraGridColumn38.CellAppearance = appearance3;
  2119. ultraGridColumn38.Header.Caption = "删除";
  2120. ultraGridColumn38.Header.VisiblePosition = 6;
  2121. ultraGridColumn38.NullText = "删除";
  2122. ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  2123. ultraGridColumn38.Width = 54;
  2124. ultraGridBand2.Columns.AddRange(new object[] {
  2125. ultraGridColumn31,
  2126. ultraGridColumn32,
  2127. ultraGridColumn33,
  2128. ultraGridColumn34,
  2129. ultraGridColumn35,
  2130. ultraGridColumn36,
  2131. ultraGridColumn37,
  2132. ultraGridColumn38});
  2133. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  2134. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2135. this.ultraGrid4.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3DOldStyle;
  2136. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  2137. this.ultraGrid4.Location = new System.Drawing.Point(22, 3);
  2138. this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2139. this.ultraGrid4.Name = "ultraGrid4";
  2140. this.ultraGrid4.Size = new System.Drawing.Size(851, 178);
  2141. this.ultraGrid4.TabIndex = 1;
  2142. this.ultraGrid4.Text = "ultraGrid4";
  2143. this.ultraGrid4.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_ClickCellButton);
  2144. //
  2145. // ultraGroupBox3
  2146. //
  2147. this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
  2148. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  2149. this.ultraGroupBox3.Location = new System.Drawing.Point(4, 4);
  2150. this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  2151. this.ultraGroupBox3.Name = "ultraGroupBox3";
  2152. this.ultraGroupBox3.Size = new System.Drawing.Size(1580, 214);
  2153. this.ultraGroupBox3.TabIndex = 3;
  2154. this.ultraGroupBox3.Text = "已选物料";
  2155. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  2156. //
  2157. // ultraToolTipManager1
  2158. //
  2159. this.ultraToolTipManager1.ContainingControl = this;
  2160. //
  2161. // frm_PurTaskMUpd
  2162. //
  2163. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  2164. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2165. this.ClientSize = new System.Drawing.Size(1588, 624);
  2166. this.Controls.Add(this.tableLayoutPanel1);
  2167. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Left);
  2168. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Right);
  2169. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Top);
  2170. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Bottom);
  2171. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2172. this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
  2173. this.Name = "frm_PurTaskMUpd";
  2174. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  2175. this.Text = "修改任务单";
  2176. this.Load += new System.EventHandler(this.frm_PurTaskMUpd_Load);
  2177. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  2178. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2179. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2180. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  2181. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  2182. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  2183. this.ultraPanel3.ClientArea.ResumeLayout(false);
  2184. this.ultraPanel3.ResumeLayout(false);
  2185. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
  2186. this.ultraGroupBox6.ResumeLayout(false);
  2187. this.ultraGroupBox6.PerformLayout();
  2188. this.panel1.ResumeLayout(false);
  2189. this.panel1.PerformLayout();
  2190. this.ultraPanel21.ClientArea.ResumeLayout(false);
  2191. this.ultraPanel21.ClientArea.PerformLayout();
  2192. this.ultraPanel21.ResumeLayout(false);
  2193. ((System.ComponentModel.ISupportInitialize)(this.jy_type)).EndInit();
  2194. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  2195. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  2196. ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).EndInit();
  2197. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  2198. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  2199. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  2200. this.panel2.ResumeLayout(false);
  2201. this.panel2.PerformLayout();
  2202. ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).EndInit();
  2203. ((System.ComponentModel.ISupportInitialize)(this.jy_RecordId)).EndInit();
  2204. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2205. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2206. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2207. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  2208. this.ultraGroupBox5.ResumeLayout(false);
  2209. this.ultraGroupBox5.PerformLayout();
  2210. ((System.ComponentModel.ISupportInitialize)(this.txt_FUNCTION_VERSION_NO)).EndInit();
  2211. ((System.ComponentModel.ISupportInitialize)(this.cmb_PAYMENT_CODE)).EndInit();
  2212. ((System.ComponentModel.ISupportInitialize)(this.cmb_PACKAGE_TYPE)).EndInit();
  2213. ((System.ComponentModel.ISupportInitialize)(this.cmb_RECEIVE_TYPE)).EndInit();
  2214. ((System.ComponentModel.ISupportInitialize)(this.cmb_DELIVERY_CONDITION)).EndInit();
  2215. ((System.ComponentModel.ISupportInitialize)(this.ultcmb_ELIVERY_TYPE)).EndInit();
  2216. ((System.ComponentModel.ISupportInitialize)(this.ultcmb_FLOW_TYPE)).EndInit();
  2217. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK)).EndInit();
  2218. ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_NAME)).EndInit();
  2219. ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_ID)).EndInit();
  2220. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2221. ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_END)).EndInit();
  2222. ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_START)).EndInit();
  2223. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).EndInit();
  2224. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  2225. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2226. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  2227. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2228. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  2229. ((System.ComponentModel.ISupportInitialize)(this.cmb_EVA_ROLE_NAME)).EndInit();
  2230. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  2231. this.ultraGroupBox2.ResumeLayout(false);
  2232. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
  2233. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  2234. this.tableLayoutPanel1.ResumeLayout(false);
  2235. this.ultraPanel1.ClientArea.ResumeLayout(false);
  2236. this.ultraPanel1.ResumeLayout(false);
  2237. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2238. this.ultraGroupBox1.ResumeLayout(false);
  2239. this.ultraPanel2.ClientArea.ResumeLayout(false);
  2240. this.ultraPanel2.ClientArea.PerformLayout();
  2241. this.ultraPanel2.ResumeLayout(false);
  2242. ((System.ComponentModel.ISupportInitialize)(this.txt_EVA_USERNAME)).EndInit();
  2243. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  2244. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  2245. this.ultraGroupBox3.ResumeLayout(false);
  2246. this.ResumeLayout(false);
  2247. }
  2248. #endregion
  2249. private System.Data.DataTable dataTable7;
  2250. private System.Data.DataColumn dataColumn77;
  2251. private System.Data.DataColumn dataColumn78;
  2252. private System.Data.DataColumn dataColumn79;
  2253. private System.Data.DataColumn dataColumn80;
  2254. private System.Data.DataColumn dataColumn81;
  2255. private System.Data.DataColumn dataColumn82;
  2256. private System.Data.DataColumn dataColumn83;
  2257. private System.Data.DataColumn dataColumn84;
  2258. private System.Data.DataColumn dataColumn85;
  2259. private System.Data.DataColumn dataColumn86;
  2260. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2261. private System.Data.DataSet dataSet2;
  2262. private System.Data.DataTable dataTable4;
  2263. private System.Data.DataColumn dataColumn5;
  2264. private System.Data.DataColumn dataColumn8;
  2265. private System.Data.DataColumn dataColumn9;
  2266. private System.Data.DataColumn dataColumn10;
  2267. private System.Data.DataColumn dataColumn11;
  2268. private System.Data.DataColumn dataColumn12;
  2269. private System.Data.DataColumn dataColumn13;
  2270. private System.Data.DataColumn dataColumn14;
  2271. private System.Data.DataColumn dataColumn15;
  2272. private System.Data.DataColumn dataColumn35;
  2273. private System.Data.DataColumn dataColumn42;
  2274. private System.Data.DataTable dataTable5;
  2275. private System.Data.DataColumn dataColumn31;
  2276. private System.Data.DataColumn dataColumn32;
  2277. private System.Data.DataColumn dataColumn33;
  2278. private System.Data.DataColumn dataColumn34;
  2279. private System.Data.DataColumn dataColumn36;
  2280. private System.Data.DataColumn dataColumn37;
  2281. private System.Data.DataColumn dataColumn38;
  2282. private System.Data.DataColumn dataColumn39;
  2283. private System.Data.DataColumn dataColumn40;
  2284. private System.Data.DataColumn dataColumn41;
  2285. private System.Data.DataColumn dataColumn43;
  2286. private System.Data.DataColumn dataColumn44;
  2287. private System.Data.DataColumn dataColumn45;
  2288. private System.Data.DataColumn dataColumn46;
  2289. private System.Data.DataColumn dataColumn47;
  2290. private System.Data.DataColumn dataColumn48;
  2291. private System.Data.DataColumn dataColumn49;
  2292. private System.Data.DataColumn dataColumn50;
  2293. private System.Data.DataColumn dataColumn51;
  2294. private System.Data.DataColumn dataColumn52;
  2295. private System.Data.DataColumn dataColumn53;
  2296. private System.Data.DataColumn dataColumn54;
  2297. private System.Data.DataColumn dataColumn55;
  2298. private System.Data.DataColumn dataColumn56;
  2299. private System.Data.DataColumn dataColumn57;
  2300. private System.Data.DataColumn dataColumn58;
  2301. private System.Data.DataColumn dataColumn73;
  2302. private System.Data.DataColumn dataColumn74;
  2303. private System.Data.DataColumn dataColumn75;
  2304. private System.Data.DataColumn dataColumn76;
  2305. private System.Data.DataTable dataTable6;
  2306. private System.Data.DataColumn dataColumn59;
  2307. private System.Data.DataColumn dataColumn60;
  2308. private System.Data.DataColumn dataColumn61;
  2309. private System.Data.DataColumn dataColumn62;
  2310. private System.Data.DataColumn dataColumn63;
  2311. private System.Data.DataColumn dataColumn64;
  2312. private System.Data.DataColumn dataColumn65;
  2313. private System.Data.DataColumn dataColumn66;
  2314. private System.Data.DataColumn dataColumn67;
  2315. private System.Data.DataColumn dataColumn68;
  2316. private System.Data.DataColumn dataColumn69;
  2317. private System.Data.DataColumn dataColumn70;
  2318. private System.Data.DataColumn dataColumn71;
  2319. private System.Data.DataColumn dataColumn72;
  2320. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  2321. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
  2322. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_procRecord;
  2323. private Infragistics.Win.Misc.UltraLabel iiii;
  2324. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_RecordId;
  2325. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  2326. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  2327. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  2328. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_PAYMENT_CODE;
  2329. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_PACKAGE_TYPE;
  2330. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2331. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_RECEIVE_TYPE;
  2332. private System.Windows.Forms.Label label4;
  2333. private System.Windows.Forms.Label label2;
  2334. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_DELIVERY_CONDITION;
  2335. private System.Windows.Forms.Label label5;
  2336. private System.Windows.Forms.Label label1;
  2337. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultcmb_ELIVERY_TYPE;
  2338. private System.Windows.Forms.Label lb_ultcmb_PICK_MODE;
  2339. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultcmb_FLOW_TYPE;
  2340. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK;
  2341. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TASK_NAME;
  2342. private System.Windows.Forms.Label lb_ultcmb_FLOW_TYPE;
  2343. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TASK_ID;
  2344. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  2345. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultDt_OFFER_TIME_END;
  2346. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultDt_OFFER_TIME_START;
  2347. private System.Windows.Forms.Label label14;
  2348. private System.Windows.Forms.Label lb_txt_TASK_NAME;
  2349. private System.Windows.Forms.Label label3;
  2350. private System.Windows.Forms.Label lb_TASK_ID;
  2351. private System.Windows.Forms.Label lb_ultDt_OFFER_TIME_START;
  2352. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager barsManagerButon;
  2353. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  2354. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  2355. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2356. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  2357. private System.Data.DataSet dataSet3;
  2358. private System.Data.DataTable dataTable9;
  2359. private System.Data.DataColumn dataColumn104;
  2360. private System.Data.DataColumn dataColumn105;
  2361. private System.Data.DataColumn dataColumn106;
  2362. private System.Data.DataColumn dataColumn107;
  2363. private System.Data.DataColumn dataColumn108;
  2364. private System.Data.DataColumn dataColumn109;
  2365. private System.Data.DataColumn dataColumn113;
  2366. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  2367. private Infragistics.Win.Misc.UltraButton btnSelEvaGroup;
  2368. private Infragistics.Win.Misc.UltraButton ultraButton1;
  2369. private System.Windows.Forms.Label label9;
  2370. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_EVA_ROLE_NAME;
  2371. private System.Windows.Forms.TextBox txt_EVA_ORG_ID;
  2372. private System.Windows.Forms.TextBox txt_EVA_ORG_NAME;
  2373. private System.Windows.Forms.Label label8;
  2374. private System.Windows.Forms.TextBox txt_EVA_USERID;
  2375. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_EVA_USERNAME;
  2376. private System.Windows.Forms.Label label6;
  2377. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  2378. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  2379. private System.Data.DataSet dataSet1;
  2380. private System.Data.DataTable dataTable2;
  2381. private System.Data.DataColumn dataColumn16;
  2382. private System.Data.DataColumn dataColumn17;
  2383. private System.Data.DataColumn dataColumn18;
  2384. private System.Data.DataColumn dataColumn19;
  2385. private System.Data.DataColumn dataColumn20;
  2386. private System.Data.DataColumn dataColumn21;
  2387. private System.Data.DataColumn dataColumn22;
  2388. private System.Data.DataColumn dataColumn23;
  2389. private System.Data.DataColumn dataColumn24;
  2390. private System.Data.DataColumn dataColumn25;
  2391. private System.Data.DataColumn dataColumn26;
  2392. private System.Data.DataColumn dataColumn27;
  2393. private System.Data.DataColumn dataColumn28;
  2394. private System.Data.DataColumn dataColumn29;
  2395. private System.Data.DataColumn dataColumn30;
  2396. private System.Data.DataColumn dataColumn3;
  2397. private System.Data.DataColumn dataColumn4;
  2398. private System.Data.DataTable dataTable3;
  2399. private System.Data.DataColumn dataColumn6;
  2400. private System.Data.DataColumn dataColumn7;
  2401. private System.Data.DataTable dataTable1;
  2402. private System.Data.DataColumn dataColumn1;
  2403. private System.Data.DataColumn dataColumn2;
  2404. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  2405. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Left;
  2406. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Right;
  2407. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Top;
  2408. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Bottom;
  2409. private Infragistics.Win.UltraWinToolTip.UltraToolTipManager ultraToolTipManager1;
  2410. private System.Windows.Forms.Panel panel1;
  2411. private System.Windows.Forms.Panel panel2;
  2412. private Core.Mes.Client.Comm.Control.UltraPanel2 ultraPanel21;
  2413. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  2414. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  2415. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo jy_negDate;
  2416. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  2417. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  2418. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  2419. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_FUNCTION_VERSION_NO;
  2420. private System.Windows.Forms.Label label7;
  2421. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2422. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  2423. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  2424. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  2425. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2426. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  2427. private Infragistics.Win.UltraWinEditors.UltraComboEditor jy_type;
  2428. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  2429. }
  2430. }