frm_PurTaskM.Designer.cs 142 KB

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