| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553 |
- namespace Pur.pur_plan
- {
- partial class frm_PurTaskM
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAROLEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAROLENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAUSERID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAUSERNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAORGID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAORGNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btnDel", 0);
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("isbid");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("canCount");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("useCount");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btn", 0);
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("mrLineId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MRLINEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMDESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMMODEL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QTY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EXPENSETYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUDGETCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERDEPTCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERUNITCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AskDeliverDate");
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PAYMENTCODE");
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACKAGETYPE");
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKQTY");
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TASKQTY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BALANCEBASEPRICEM");
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("releaseqty1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("releaseqty2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("releaseqty3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Relation1");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Relation1", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bidwinqty");
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bidwinwithtaxprice");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUnique");
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("ribbon1");
- Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup1");
- Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup2");
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SelectSupp");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("getTaskList");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("确认");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SelectSupp");
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("getTaskList");
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("addEvaUsers");
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_PurTaskM));
- this.txt_BALANCE_BASEPRICE_M = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet3 = new System.Data.DataSet();
- this.dataTable9 = new System.Data.DataTable();
- this.dataColumn104 = new System.Data.DataColumn();
- this.dataColumn105 = new System.Data.DataColumn();
- this.dataColumn106 = new System.Data.DataColumn();
- this.dataColumn107 = new System.Data.DataColumn();
- this.dataColumn108 = new System.Data.DataColumn();
- this.dataColumn109 = new System.Data.DataColumn();
- this.dataColumn113 = new System.Data.DataColumn();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.label8 = new System.Windows.Forms.Label();
- this.btnSelEvaGroup = new Infragistics.Win.Misc.UltraButton();
- this.txt_EVA_ORG_ID = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.txt_EVA_USERID = new System.Windows.Forms.TextBox();
- this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
- this.txt_EVA_USERNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmb_EVA_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label9 = new System.Windows.Forms.Label();
- this.txt_EVA_ORG_NAME = new System.Windows.Forms.TextBox();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn92 = new System.Data.DataColumn();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataTable33 = new System.Data.DataTable();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- this.dataColumn95 = new System.Data.DataColumn();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn96 = new System.Data.DataColumn();
- this.dataColumn97 = new System.Data.DataColumn();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataColumn66 = new System.Data.DataColumn();
- this.dataColumn67 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn71 = new System.Data.DataColumn();
- this.dataColumn72 = new System.Data.DataColumn();
- this.dataTable7 = new System.Data.DataTable();
- this.dataColumn77 = new System.Data.DataColumn();
- this.dataColumn78 = new System.Data.DataColumn();
- this.dataColumn79 = new System.Data.DataColumn();
- this.dataColumn80 = new System.Data.DataColumn();
- this.dataColumn81 = new System.Data.DataColumn();
- this.dataColumn82 = new System.Data.DataColumn();
- this.dataColumn83 = new System.Data.DataColumn();
- this.dataColumn84 = new System.Data.DataColumn();
- this.dataColumn85 = new System.Data.DataColumn();
- this.dataColumn86 = new System.Data.DataColumn();
- this.dataTable8 = new System.Data.DataTable();
- this.dataColumn87 = new System.Data.DataColumn();
- this.dataColumn88 = new System.Data.DataColumn();
- this.dataColumn89 = new System.Data.DataColumn();
- this.dataColumn90 = new System.Data.DataColumn();
- this.dataColumn91 = new System.Data.DataColumn();
- this.dataColumn93 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.ultraPanel22 = new Core.Mes.Client.Comm.Control.UltraPanel2();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraPanel21 = new Core.Mes.Client.Comm.Control.UltraPanel2();
- this.jy_type = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.jy_negDate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.panel1 = new System.Windows.Forms.Panel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.jy_RecordId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.jy_procRecord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txt_FUNCTION_VERSION_NO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultcmb_ELIVERY_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label7 = new System.Windows.Forms.Label();
- this.lb_ultcmb_PICK_MODE = new System.Windows.Forms.Label();
- this.txt_TASK_NAME1 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_PAYMENT_CODE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmb_PACKAGE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_RECEIVE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label4 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.cmb_DELIVERY_CONDITION = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label5 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.ultcmb_FLOW_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_REMARK = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_TASK_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lb_ultcmb_FLOW_TYPE = new System.Windows.Forms.Label();
- this.txt_TASK_ID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultDt_OFFER_TIME_END = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultDt_OFFER_TIME_START = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.label14 = new System.Windows.Forms.Label();
- this.lb_txt_TASK_NAME = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.lb_TASK_ID = new System.Windows.Forms.Label();
- this.lb_ultDt_OFFER_TIME_START = new System.Windows.Forms.Label();
- this.barsManagerButon = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._Form1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._Form1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolTipManager1 = new Infragistics.Win.UltraWinToolTip.UltraToolTipManager(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.txt_BALANCE_BASEPRICE_M)).BeginInit();
- this.tableLayoutPanel1.SuspendLayout();
- this.ultraPanel1.ClientArea.SuspendLayout();
- this.ultraPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_EVA_USERNAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_EVA_ROLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable33)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- this.ultraPanel22.ClientArea.SuspendLayout();
- this.ultraPanel22.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
- this.ultraGroupBox6.SuspendLayout();
- this.ultraPanel21.ClientArea.SuspendLayout();
- this.ultraPanel21.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_type)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_RecordId)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_FUNCTION_VERSION_NO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultcmb_ELIVERY_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_PAYMENT_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_PACKAGE_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_RECEIVE_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_DELIVERY_CONDITION)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultcmb_FLOW_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_ID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_END)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_START)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).BeginInit();
- this.SuspendLayout();
- //
- // txt_BALANCE_BASEPRICE_M
- //
- this.txt_BALANCE_BASEPRICE_M.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_BALANCE_BASEPRICE_M.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_BALANCE_BASEPRICE_M.Location = new System.Drawing.Point(494, 51);
- this.txt_BALANCE_BASEPRICE_M.Name = "txt_BALANCE_BASEPRICE_M";
- this.txt_BALANCE_BASEPRICE_M.Size = new System.Drawing.Size(25, 21);
- this.txt_BALANCE_BASEPRICE_M.TabIndex = 158;
- this.txt_BALANCE_BASEPRICE_M.Visible = false;
- this.txt_BALANCE_BASEPRICE_M.SelectionChanged += new System.EventHandler(this.txt_BALANCE_BASEPRICE_M_SelectionChanged);
- this.txt_BALANCE_BASEPRICE_M.ValueChanged += new System.EventHandler(this.txt_BALANCE_BASEPRICE_M_ValueChanged);
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 1;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel1.Controls.Add(this.ultraPanel1, 0, 2);
- this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox3, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.ultraPanel3, 0, 1);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 3;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 141F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 160F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(1141, 593);
- this.tableLayoutPanel1.TabIndex = 0;
- //
- // ultraPanel1
- //
- //
- // ultraPanel1.ClientArea
- //
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox1);
- this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox2);
- this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel1.Location = new System.Drawing.Point(3, 436);
- this.ultraPanel1.Name = "ultraPanel1";
- this.ultraPanel1.Size = new System.Drawing.Size(1135, 154);
- this.ultraPanel1.TabIndex = 156;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraGroupBox1.Controls.Add(this.ultraGrid4);
- this.ultraGroupBox1.Controls.Add(this.ultraPanel2);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraGroupBox1.Location = new System.Drawing.Point(526, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(609, 154);
- this.ultraGroupBox1.TabIndex = 6;
- this.ultraGroupBox1.Text = "评标人员";
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table2";
- this.ultraGrid4.DataSource = this.dataSet3;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.Hidden = true;
- ultraGridColumn2.Header.VisiblePosition = 2;
- ultraGridColumn2.Width = 124;
- ultraGridColumn3.Header.VisiblePosition = 3;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.Header.VisiblePosition = 1;
- ultraGridColumn4.Width = 114;
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.Hidden = true;
- ultraGridColumn6.Header.VisiblePosition = 5;
- ultraGridColumn6.Width = 160;
- ultraGridColumn7.Header.VisiblePosition = 7;
- ultraGridColumn7.Hidden = true;
- ultraGridColumn8.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- appearance3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance3.TextHAlignAsString = "Center";
- ultraGridColumn8.CellAppearance = appearance3;
- ultraGridColumn8.Header.Caption = "删除";
- ultraGridColumn8.Header.VisiblePosition = 6;
- ultraGridColumn8.NullText = "删除";
- ultraGridColumn8.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridColumn8.Width = 54;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8});
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3DOldStyle;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Location = new System.Drawing.Point(19, 3);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(398, 148);
- this.ultraGrid4.TabIndex = 1;
- this.ultraGrid4.Text = "ultraGrid4";
- this.ultraGrid4.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid4_ClickCellButton);
- //
- // dataSet3
- //
- this.dataSet3.DataSetName = "NewDataSet";
- this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable9});
- //
- // dataTable9
- //
- this.dataTable9.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn104,
- this.dataColumn105,
- this.dataColumn106,
- this.dataColumn107,
- this.dataColumn108,
- this.dataColumn109,
- this.dataColumn113});
- this.dataTable9.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "EVAUSERID"}, true)});
- this.dataTable9.PrimaryKey = new System.Data.DataColumn[] {
- this.dataColumn106};
- this.dataTable9.TableName = "Table2";
- //
- // dataColumn104
- //
- this.dataColumn104.Caption = "角色ID";
- this.dataColumn104.ColumnName = "EVAROLEID";
- //
- // dataColumn105
- //
- this.dataColumn105.Caption = "角色名称";
- this.dataColumn105.ColumnName = "EVAROLENAME";
- //
- // dataColumn106
- //
- this.dataColumn106.AllowDBNull = false;
- this.dataColumn106.Caption = "评标人ID";
- this.dataColumn106.ColumnName = "EVAUSERID";
- //
- // dataColumn107
- //
- this.dataColumn107.Caption = "评标人姓名";
- this.dataColumn107.ColumnName = "EVAUSERNAME";
- //
- // dataColumn108
- //
- this.dataColumn108.Caption = "评标人科室ID";
- this.dataColumn108.ColumnName = "EVAORGID";
- //
- // dataColumn109
- //
- this.dataColumn109.Caption = "评标人科室名称";
- this.dataColumn109.ColumnName = "EVAORGNAME";
- //
- // dataColumn113
- //
- this.dataColumn113.ColumnName = "ID";
- //
- // ultraPanel2
- //
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.label8);
- this.ultraPanel2.ClientArea.Controls.Add(this.btnSelEvaGroup);
- this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_ORG_ID);
- this.ultraPanel2.ClientArea.Controls.Add(this.label6);
- this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_USERID);
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraButton1);
- this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_USERNAME);
- this.ultraPanel2.ClientArea.Controls.Add(this.cmb_EVA_ROLE_NAME);
- this.ultraPanel2.ClientArea.Controls.Add(this.label9);
- this.ultraPanel2.ClientArea.Controls.Add(this.txt_EVA_ORG_NAME);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Right;
- this.ultraPanel2.Location = new System.Drawing.Point(417, 3);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(189, 148);
- this.ultraPanel2.TabIndex = 2;
- //
- // label8
- //
- this.label8.BackColor = System.Drawing.SystemColors.Highlight;
- this.label8.Location = new System.Drawing.Point(1, 55);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(52, 21);
- this.label8.TabIndex = 87;
- this.label8.Text = "科室";
- this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // btnSelEvaGroup
- //
- appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- appearance2.TextHAlignAsString = "Center";
- appearance2.TextVAlignAsString = "Middle";
- appearance2.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
- this.btnSelEvaGroup.Appearance = appearance2;
- this.btnSelEvaGroup.ButtonStyle = Infragistics.Win.UIElementButtonStyle.PopupSoft;
- this.btnSelEvaGroup.Location = new System.Drawing.Point(1, 112);
- this.btnSelEvaGroup.Name = "btnSelEvaGroup";
- this.btnSelEvaGroup.Size = new System.Drawing.Size(185, 30);
- this.btnSelEvaGroup.TabIndex = 93;
- this.btnSelEvaGroup.Text = "添加评标人员分组";
- this.btnSelEvaGroup.Click += new System.EventHandler(this.btnSelEvaGroup_Click);
- //
- // txt_EVA_ORG_ID
- //
- this.txt_EVA_ORG_ID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txt_EVA_ORG_ID.Location = new System.Drawing.Point(160, 117);
- this.txt_EVA_ORG_ID.Name = "txt_EVA_ORG_ID";
- this.txt_EVA_ORG_ID.Size = new System.Drawing.Size(11, 21);
- this.txt_EVA_ORG_ID.TabIndex = 89;
- this.txt_EVA_ORG_ID.Visible = false;
- //
- // label6
- //
- this.label6.BackColor = System.Drawing.SystemColors.Highlight;
- this.label6.Location = new System.Drawing.Point(1, 31);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(52, 21);
- this.label6.TabIndex = 84;
- this.label6.Text = "人名";
- this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txt_EVA_USERID
- //
- this.txt_EVA_USERID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txt_EVA_USERID.Location = new System.Drawing.Point(160, 83);
- this.txt_EVA_USERID.Name = "txt_EVA_USERID";
- this.txt_EVA_USERID.Size = new System.Drawing.Size(11, 21);
- this.txt_EVA_USERID.TabIndex = 86;
- this.txt_EVA_USERID.Visible = false;
- //
- // ultraButton1
- //
- appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- appearance15.TextHAlignAsString = "Center";
- appearance15.TextVAlignAsString = "Middle";
- appearance15.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
- this.ultraButton1.Appearance = appearance15;
- this.ultraButton1.ButtonStyle = Infragistics.Win.UIElementButtonStyle.PopupSoft;
- this.ultraButton1.Location = new System.Drawing.Point(1, 80);
- this.ultraButton1.Name = "ultraButton1";
- this.ultraButton1.Size = new System.Drawing.Size(185, 28);
- this.ultraButton1.TabIndex = 92;
- this.ultraButton1.Text = "添加单个评标人员";
- this.ultraButton1.Click += new System.EventHandler(this.ultraButton1_Click);
- //
- // txt_EVA_USERNAME
- //
- appearance16.FontData.BoldAsString = "True";
- appearance16.TextHAlignAsString = "Center";
- appearance16.TextVAlignAsString = "Middle";
- editorButton1.Appearance = appearance16;
- editorButton1.Text = "+";
- this.txt_EVA_USERNAME.ButtonsRight.Add(editorButton1);
- this.txt_EVA_USERNAME.Location = new System.Drawing.Point(54, 31);
- this.txt_EVA_USERNAME.Name = "txt_EVA_USERNAME";
- this.txt_EVA_USERNAME.ReadOnly = true;
- this.txt_EVA_USERNAME.Size = new System.Drawing.Size(132, 21);
- this.txt_EVA_USERNAME.TabIndex = 85;
- this.txt_EVA_USERNAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_EVA_USERNAME_EditorButtonClick);
- //
- // cmb_EVA_ROLE_NAME
- //
- this.cmb_EVA_ROLE_NAME.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_EVA_ROLE_NAME.Location = new System.Drawing.Point(54, 6);
- this.cmb_EVA_ROLE_NAME.Name = "cmb_EVA_ROLE_NAME";
- this.cmb_EVA_ROLE_NAME.Size = new System.Drawing.Size(132, 21);
- this.cmb_EVA_ROLE_NAME.TabIndex = 90;
- //
- // label9
- //
- this.label9.BackColor = System.Drawing.SystemColors.Highlight;
- this.label9.Location = new System.Drawing.Point(1, 6);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(52, 21);
- this.label9.TabIndex = 91;
- this.label9.Text = "角色";
- this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txt_EVA_ORG_NAME
- //
- this.txt_EVA_ORG_NAME.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.txt_EVA_ORG_NAME.Enabled = false;
- this.txt_EVA_ORG_NAME.Location = new System.Drawing.Point(54, 55);
- this.txt_EVA_ORG_NAME.Name = "txt_EVA_ORG_NAME";
- this.txt_EVA_ORG_NAME.ReadOnly = true;
- this.txt_EVA_ORG_NAME.Size = new System.Drawing.Size(132, 21);
- this.txt_EVA_ORG_NAME.TabIndex = 88;
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(526, 154);
- this.ultraGroupBox2.TabIndex = 5;
- this.ultraGroupBox2.Text = "已选供应商";
- this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataMember = "Table3";
- this.ultraGrid3.DataSource = this.dataSet1;
- ultraGridColumn9.Header.VisiblePosition = 0;
- ultraGridColumn9.Width = 160;
- ultraGridColumn10.Header.VisiblePosition = 1;
- ultraGridColumn10.Width = 253;
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn12.Header.VisiblePosition = 3;
- ultraGridColumn13.Header.VisiblePosition = 4;
- ultraGridColumn14.Header.VisiblePosition = 6;
- ultraGridColumn15.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn15.Header.Caption = "删除";
- ultraGridColumn15.Header.VisiblePosition = 5;
- ultraGridColumn15.NullText = "删除";
- ultraGridColumn15.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
- ultraGridColumn15.Width = 60;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15});
- ultraGridColumn16.Header.VisiblePosition = 0;
- ultraGridColumn17.Header.VisiblePosition = 1;
- ultraGridColumn18.Header.VisiblePosition = 2;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18});
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(19, 3);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(504, 148);
- this.ultraGrid3.TabIndex = 2;
- this.ultraGrid3.Text = "ultraGrid3";
- this.ultraGrid3.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid3_ClickCellButton);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "Table3", "Table1", new string[] {
- "SUPPCODE"}, new string[] {
- "suppCode"}, false)});
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3,
- this.dataTable33});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn92,
- this.dataColumn1,
- this.dataColumn2});
- this.dataTable3.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "SUPPCODE"}, false)});
- this.dataTable3.TableName = "Table3";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "供应商代码";
- this.dataColumn6.ColumnName = "SUPPCODE";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "供应商名称";
- this.dataColumn7.ColumnName = "SUPPNAME";
- //
- // dataColumn92
- //
- this.dataColumn92.Caption = "是否中标";
- this.dataColumn92.ColumnName = "isbid";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "总物料数";
- this.dataColumn1.ColumnName = "canCount";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "已挂物料数";
- this.dataColumn2.ColumnName = "useCount";
- //
- // dataTable33
- //
- this.dataTable33.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn16});
- this.dataTable33.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "Table3", new string[] {
- "SUPPCODE"}, new string[] {
- "suppCode"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dataTable33.TableName = "Table1";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "采购计划行号";
- this.dataColumn3.ColumnName = "mrLineId";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "物料名称";
- this.dataColumn4.ColumnName = "itemName";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "供应商编号";
- this.dataColumn16.ColumnName = "suppCode";
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox3.Controls.Add(this.ultraPanel22);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.Location = new System.Drawing.Point(3, 3);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1135, 286);
- this.ultraGroupBox3.TabIndex = 3;
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet2;
- ultraGridColumn19.Header.VisiblePosition = 0;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn20.Header.VisiblePosition = 1;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn21.Header.VisiblePosition = 2;
- ultraGridColumn21.Hidden = true;
- ultraGridColumn22.Header.VisiblePosition = 3;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn23.Header.VisiblePosition = 5;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn24.Header.VisiblePosition = 6;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn25.Header.VisiblePosition = 7;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn26.Header.VisiblePosition = 15;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.Header.VisiblePosition = 12;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn28.Header.VisiblePosition = 13;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn29.Header.VisiblePosition = 24;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.Header.VisiblePosition = 16;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn31.Header.VisiblePosition = 18;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn32.Header.VisiblePosition = 27;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn33.Header.VisiblePosition = 28;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- appearance14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn34.CellAppearance = appearance14;
- ultraGridColumn34.Header.VisiblePosition = 17;
- ultraGridColumn34.MaskInput = "";
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn35.Header.VisiblePosition = 4;
- ultraGridColumn35.Hidden = true;
- ultraGridColumn36.Header.VisiblePosition = 14;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn37.Header.VisiblePosition = 19;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn38.Header.VisiblePosition = 20;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn39.Header.VisiblePosition = 21;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn40.Header.VisiblePosition = 22;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn41.Header.VisiblePosition = 23;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn42.Header.VisiblePosition = 25;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn43.Header.VisiblePosition = 26;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn44.Header.VisiblePosition = 29;
- ultraGridColumn44.Hidden = true;
- appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn45.CellAppearance = appearance21;
- ultraGridColumn45.Header.VisiblePosition = 10;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(102, 0);
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn45.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- appearance27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn46.CellAppearance = appearance27;
- ultraGridColumn46.Header.VisiblePosition = 11;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(108, 0);
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn46.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- appearance28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn47.CellAppearance = appearance28;
- ultraGridColumn47.Header.VisiblePosition = 9;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn48.Header.VisiblePosition = 8;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 2;
- appearance31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn49.CellAppearance = appearance31;
- ultraGridColumn49.EditorComponent = this.txt_BALANCE_BASEPRICE_M;
- ultraGridColumn49.Header.VisiblePosition = 30;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn49.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
- ultraGridColumn50.Header.VisiblePosition = 31;
- ultraGridColumn51.Header.VisiblePosition = 32;
- ultraGridColumn52.Header.VisiblePosition = 33;
- ultraGridColumn53.Header.VisiblePosition = 34;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- ultraGridColumn54.Header.VisiblePosition = 0;
- ultraGridColumn55.Header.VisiblePosition = 1;
- ultraGridColumn56.Header.VisiblePosition = 2;
- ultraGridColumn56.Hidden = true;
- appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn57.CellAppearance = appearance32;
- ultraGridColumn57.Header.VisiblePosition = 3;
- appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn58.CellAppearance = appearance34;
- ultraGridColumn58.Header.VisiblePosition = 4;
- ultraGridColumn59.Header.VisiblePosition = 5;
- ultraGridColumn59.Hidden = true;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59});
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Location = new System.Drawing.Point(3, 30);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(1129, 253);
- this.ultraGrid2.TabIndex = 2;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- this.ultraGrid2.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_CellChange);
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Relations.AddRange(new System.Data.DataRelation[] {
- new System.Data.DataRelation("Relation1", "Table2", "Table5", new string[] {
- "ITEMUNIQUE"}, new string[] {
- "ItemUnique"}, false)});
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable5,
- this.dataTable6,
- this.dataTable7,
- this.dataTable8,
- this.dataTable4});
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn56,
- this.dataColumn57,
- this.dataColumn58,
- this.dataColumn73,
- this.dataColumn74,
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn95,
- this.dataColumn94,
- this.dataColumn96,
- this.dataColumn97});
- this.dataTable5.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "ITEMUNIQUE"}, false)});
- this.dataTable5.TableName = "Table2";
- //
- // dataColumn31
- //
- this.dataColumn31.AllowDBNull = false;
- this.dataColumn31.Caption = "采购单行号";
- this.dataColumn31.ColumnName = "MRLINEID";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "物料编码";
- this.dataColumn32.ColumnName = "ITEMCODE";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "物料描述";
- this.dataColumn33.ColumnName = "ITEMDESC";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "物料名称";
- this.dataColumn34.ColumnName = "ITEMNAME";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "型号规格";
- this.dataColumn36.ColumnName = "ITEMMODEL";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "物料材质";
- this.dataColumn37.ColumnName = "ITEMSPEC";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "数量";
- this.dataColumn38.ColumnName = "QTY";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "库存单位";
- this.dataColumn39.ColumnName = "WEIGHTUNIT";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "费用类型";
- this.dataColumn40.ColumnName = "EXPENSETYPE";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "预算类型";
- this.dataColumn41.ColumnName = "BUDGETCODE";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "备注";
- this.dataColumn43.ColumnName = "REMARK";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "采购管理部门代码";
- this.dataColumn44.ColumnName = "BUYERDEPTCODE";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "采购管理科室代码";
- this.dataColumn45.ColumnName = "BUYERUNITCODE";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "修改人";
- this.dataColumn46.ColumnName = "UPDATENAME";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "修改时间";
- this.dataColumn47.ColumnName = "UPDATETIME";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "要求交货日期";
- this.dataColumn48.ColumnName = "AskDeliverDate";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "属性编码Id";
- this.dataColumn49.ColumnName = "ITEMATTRID";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "属性";
- this.dataColumn50.ColumnName = "ITEMATTR";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "单位";
- this.dataColumn51.ColumnName = "ITEMUOM";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "采购单位Id";
- this.dataColumn52.ColumnName = "ITEMUOMID";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "转换系数";
- this.dataColumn53.ColumnName = "ITEMUOMCONEFFICIENT";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "物料标准编号Id";
- this.dataColumn54.ColumnName = "ITEMSTANDARDSID";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "标准";
- this.dataColumn55.ColumnName = "ITEMSTANDARDSCODE";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "创建人";
- this.dataColumn56.ColumnName = "CREATENAME";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "创建时间";
- this.dataColumn57.ColumnName = "CREATETIME";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "物料唯一标识";
- this.dataColumn58.ColumnName = "ITEMUNIQUE";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "付款方式";
- this.dataColumn73.ColumnName = "PAYMENTCODE";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "包装方式";
- this.dataColumn74.ColumnName = "PACKAGETYPE";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "本次任务单数量";
- this.dataColumn75.ColumnName = "PICKQTY";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "已生成任务单数量";
- this.dataColumn76.ColumnName = "TASKQTY";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "价格政策版本";
- this.dataColumn95.ColumnName = "BALANCEBASEPRICEM";
- //
- // dataColumn94
- //
- this.dataColumn94.Caption = "非预采脱单量";
- this.dataColumn94.ColumnName = "releaseqty1";
- //
- // dataColumn96
- //
- this.dataColumn96.Caption = "预采脱单量";
- this.dataColumn96.ColumnName = "releaseqty2";
- //
- // dataColumn97
- //
- this.dataColumn97.Caption = "挂单量";
- this.dataColumn97.ColumnName = "releaseqty3";
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn61,
- this.dataColumn62,
- this.dataColumn63,
- this.dataColumn64,
- this.dataColumn65,
- this.dataColumn66,
- this.dataColumn67,
- this.dataColumn68,
- this.dataColumn69,
- this.dataColumn70,
- this.dataColumn71,
- this.dataColumn72});
- this.dataTable6.TableName = "Table3";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "需求单行号";
- this.dataColumn59.ColumnName = "MRLINEID";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "物料编码";
- this.dataColumn60.ColumnName = "ITEMCODE";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "物料描述";
- this.dataColumn61.ColumnName = "ITEMDESC";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "物料名称";
- this.dataColumn62.ColumnName = "ITEMNAME";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "物料型号规格";
- this.dataColumn63.ColumnName = "ITEMMODEL";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "采购单位";
- this.dataColumn64.ColumnName = "ITEMUOM";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "备注";
- this.dataColumn65.ColumnName = "REMARK";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "采购数量";
- this.dataColumn66.ColumnName = "QTYPUR";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "采购单号";
- this.dataColumn67.ColumnName = "BUYERDEPTCODE";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "申报单位";
- this.dataColumn68.ColumnName = "DELETENAME";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "申报数量";
- this.dataColumn69.ColumnName = "QTY";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "预算单价";
- this.dataColumn70.ColumnName = "BUGPRICE";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "预算金额";
- this.dataColumn71.ColumnName = "BUDGETAMT";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "物料唯一标识";
- this.dataColumn72.ColumnName = "ITEMUNIQUE";
- //
- // dataTable7
- //
- this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82,
- this.dataColumn83,
- this.dataColumn84,
- this.dataColumn85,
- this.dataColumn86});
- this.dataTable7.TableName = "Table4";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "任务单号";
- this.dataColumn77.ColumnName = "TASKID";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "评标人ID";
- this.dataColumn78.ColumnName = "EVAUSERID";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "评标人姓名";
- this.dataColumn79.ColumnName = "EVAUSERNAME";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "角色ID";
- this.dataColumn80.ColumnName = "EVAROLEID";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "角色名称";
- this.dataColumn81.ColumnName = "EVAROLENAME";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "评标人科室ID";
- this.dataColumn82.ColumnName = "EVAORGID";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "评标人科室名称";
- this.dataColumn83.ColumnName = "EVAORGNAME";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "备注";
- this.dataColumn84.ColumnName = "REMARK";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "创建人";
- this.dataColumn85.ColumnName = "CREATENAME";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "创建时间";
- this.dataColumn86.ColumnName = "CREATETIME";
- //
- // dataTable8
- //
- this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn87,
- this.dataColumn88,
- this.dataColumn89,
- this.dataColumn90,
- this.dataColumn91,
- this.dataColumn93});
- this.dataTable8.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.ForeignKeyConstraint("Relation1", "Table2", new string[] {
- "ITEMUNIQUE"}, new string[] {
- "ItemUnique"}, System.Data.AcceptRejectRule.None, System.Data.Rule.Cascade, System.Data.Rule.Cascade)});
- this.dataTable8.TableName = "Table5";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "供应商编码";
- this.dataColumn87.ColumnName = "SUPPCODE";
- //
- // dataColumn88
- //
- this.dataColumn88.Caption = "供应商名称";
- this.dataColumn88.ColumnName = "SUPPNAME";
- //
- // dataColumn89
- //
- this.dataColumn89.AllowDBNull = false;
- this.dataColumn89.Caption = "物料编码";
- this.dataColumn89.ColumnName = "ITEMCODE";
- //
- // dataColumn90
- //
- this.dataColumn90.Caption = "询价数量";
- this.dataColumn90.ColumnName = "bidwinqty";
- //
- // dataColumn91
- //
- this.dataColumn91.Caption = "询价单价";
- this.dataColumn91.ColumnName = "bidwinwithtaxprice";
- //
- // dataColumn93
- //
- this.dataColumn93.AllowDBNull = false;
- this.dataColumn93.ColumnName = "ItemUnique";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn5,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn35,
- this.dataColumn42});
- this.dataTable4.TableName = "Table1";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "采购单号";
- this.dataColumn5.ColumnName = "MRID";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "紧急程度类型";
- this.dataColumn8.ColumnName = "URGENCYTYPE";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "当前状态";
- this.dataColumn9.ColumnName = "STATUS";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "创建人";
- this.dataColumn10.ColumnName = "CREATENAME";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "创建时间";
- this.dataColumn11.ColumnName = "CREATETIME";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "修改人";
- this.dataColumn12.ColumnName = "UPDATENAME";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "修改时间";
- this.dataColumn13.ColumnName = "UPDATETIME";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "计划结束时间";
- this.dataColumn14.ColumnName = "MRPERIODEND";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "计划开始时间";
- this.dataColumn15.ColumnName = "MRPERIODSTART";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "PLANTYPE";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "采购类型";
- this.dataColumn42.ColumnName = "PURTYPE";
- //
- // ultraPanel22
- //
- //
- // ultraPanel22.ClientArea
- //
- this.ultraPanel22.ClientArea.Controls.Add(this.ultraLabel7);
- this.ultraPanel22.ClientArea.Controls.Add(this.ultraDateTimeEditor1);
- this.ultraPanel22.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraPanel22.Location = new System.Drawing.Point(3, 0);
- this.ultraPanel22.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel22.Name = "ultraPanel22";
- this.ultraPanel22.Size = new System.Drawing.Size(1129, 30);
- this.ultraPanel22.TabIndex = 3;
- //
- // ultraLabel7
- //
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(14, 7);
- this.ultraLabel7.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel7.TabIndex = 1;
- this.ultraLabel7.Text = "批量修改交期";
- //
- // ultraDateTimeEditor1
- //
- this.ultraDateTimeEditor1.Location = new System.Drawing.Point(98, 5);
- this.ultraDateTimeEditor1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
- this.ultraDateTimeEditor1.Size = new System.Drawing.Size(108, 21);
- this.ultraDateTimeEditor1.TabIndex = 0;
- this.ultraDateTimeEditor1.ValueChanged += new System.EventHandler(this.ultraDateTimeEditor1_ValueChanged);
- //
- // ultraPanel3
- //
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox6);
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel3.Location = new System.Drawing.Point(3, 295);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(1135, 135);
- this.ultraPanel3.TabIndex = 157;
- //
- // ultraGroupBox6
- //
- this.ultraGroupBox6.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraGroupBox6.Controls.Add(this.ultraPanel21);
- this.ultraGroupBox6.Controls.Add(this.panel1);
- this.ultraGroupBox6.Controls.Add(this.jy_RecordId);
- this.ultraGroupBox6.Controls.Add(this.jy_procRecord);
- this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox6.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraGroupBox6.Location = new System.Drawing.Point(526, 0);
- this.ultraGroupBox6.Name = "ultraGroupBox6";
- this.ultraGroupBox6.Size = new System.Drawing.Size(609, 135);
- this.ultraGroupBox6.TabIndex = 1;
- this.ultraGroupBox6.Text = "采购纪要";
- this.ultraGroupBox6.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraPanel21
- //
- //
- // ultraPanel21.ClientArea
- //
- this.ultraPanel21.ClientArea.Controls.Add(this.jy_type);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraLabel8);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor2);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor6);
- this.ultraPanel21.ClientArea.Controls.Add(this.jy_negDate);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor3);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor5);
- this.ultraPanel21.ClientArea.Controls.Add(this.ultraTextEditor4);
- this.ultraPanel21.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel21.Location = new System.Drawing.Point(110, 3);
- this.ultraPanel21.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel21.Name = "ultraPanel21";
- this.ultraPanel21.Size = new System.Drawing.Size(496, 129);
- this.ultraPanel21.TabIndex = 152;
- //
- // jy_type
- //
- this.jy_type.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem1.DataValue = "2";
- valueListItem1.DisplayText = "采购纪要";
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "价格审批表";
- this.jy_type.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2});
- this.jy_type.Location = new System.Drawing.Point(298, 0);
- this.jy_type.Name = "jy_type";
- this.jy_type.Size = new System.Drawing.Size(198, 21);
- this.jy_type.TabIndex = 153;
- //
- // ultraLabel8
- //
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(239, 2);
- this.ultraLabel8.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel8.TabIndex = 152;
- this.ultraLabel8.Text = "输出类型";
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.AutoSize = false;
- this.ultraTextEditor2.Location = new System.Drawing.Point(4, 22);
- this.ultraTextEditor2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(586, 21);
- this.ultraTextEditor2.TabIndex = 143;
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.Location = new System.Drawing.Point(4, 106);
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(586, 21);
- this.ultraTextEditor6.TabIndex = 151;
- //
- // jy_negDate
- //
- this.jy_negDate.DateButtons.Add(dateButton1);
- this.jy_negDate.Format = "yyyy/MM/dd";
- this.jy_negDate.Location = new System.Drawing.Point(4, 1);
- this.jy_negDate.Margin = new System.Windows.Forms.Padding(3, 3, 15, 3);
- this.jy_negDate.Name = "jy_negDate";
- this.jy_negDate.NonAutoSizeHeight = 21;
- this.jy_negDate.Size = new System.Drawing.Size(227, 21);
- this.jy_negDate.TabIndex = 54;
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(4, 43);
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(586, 21);
- this.ultraTextEditor3.TabIndex = 145;
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.Location = new System.Drawing.Point(4, 85);
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.Size = new System.Drawing.Size(586, 21);
- this.ultraTextEditor5.TabIndex = 149;
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Location = new System.Drawing.Point(4, 64);
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(586, 21);
- this.ultraTextEditor4.TabIndex = 147;
- //
- // panel1
- //
- this.panel1.Controls.Add(this.ultraLabel3);
- this.panel1.Controls.Add(this.ultraLabel6);
- this.panel1.Controls.Add(this.ultraLabel28);
- this.panel1.Controls.Add(this.ultraLabel5);
- this.panel1.Controls.Add(this.ultraLabel2);
- this.panel1.Controls.Add(this.ultraLabel4);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel1.Location = new System.Drawing.Point(19, 3);
- this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(91, 129);
- this.panel1.TabIndex = 152;
- //
- // ultraLabel3
- //
- appearance18.TextHAlignAsString = "Right";
- this.ultraLabel3.Appearance = appearance18;
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(7, 46);
- this.ultraLabel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel3.TabIndex = 144;
- this.ultraLabel3.Text = "市 场 分 析";
- //
- // ultraLabel6
- //
- appearance19.TextHAlignAsString = "Right";
- this.ultraLabel6.Appearance = appearance19;
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(6, 106);
- this.ultraLabel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel6.TabIndex = 150;
- this.ultraLabel6.Text = "其 他 说 明";
- //
- // ultraLabel28
- //
- appearance22.TextHAlignAsString = "Right";
- this.ultraLabel28.Appearance = appearance22;
- this.ultraLabel28.AutoSize = true;
- this.ultraLabel28.Location = new System.Drawing.Point(6, 6);
- this.ultraLabel28.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel28.TabIndex = 50;
- this.ultraLabel28.Text = "谈 判 日 期";
- //
- // ultraLabel5
- //
- appearance24.TextHAlignAsString = "Right";
- this.ultraLabel5.Appearance = appearance24;
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(6, 86);
- this.ultraLabel5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel5.TabIndex = 148;
- this.ultraLabel5.Text = "评 价";
- //
- // ultraLabel2
- //
- appearance25.TextHAlignAsString = "Right";
- this.ultraLabel2.Appearance = appearance25;
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(6, 26);
- this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel2.TabIndex = 56;
- this.ultraLabel2.Text = "成 本 分 析";
- //
- // ultraLabel4
- //
- appearance26.TextHAlignAsString = "Right";
- this.ultraLabel4.Appearance = appearance26;
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(6, 66);
- this.ultraLabel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel4.TabIndex = 146;
- this.ultraLabel4.Text = "物资使用情况";
- //
- // jy_RecordId
- //
- this.jy_RecordId.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.jy_RecordId.Location = new System.Drawing.Point(652, 39);
- this.jy_RecordId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_RecordId.Name = "jy_RecordId";
- this.jy_RecordId.ReadOnly = true;
- this.jy_RecordId.Size = new System.Drawing.Size(114, 21);
- this.jy_RecordId.TabIndex = 43;
- this.jy_RecordId.Visible = false;
- //
- // jy_procRecord
- //
- this.jy_procRecord.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.jy_procRecord.Location = new System.Drawing.Point(718, 46);
- this.jy_procRecord.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_procRecord.Multiline = true;
- this.jy_procRecord.Name = "jy_procRecord";
- this.jy_procRecord.Size = new System.Drawing.Size(114, 23);
- this.jy_procRecord.TabIndex = 55;
- this.jy_procRecord.Visible = false;
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Left;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(526, 135);
- this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.LeftOnBorder;
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(526, 135);
- this.ultraExpandableGroupBox1.TabIndex = 0;
- this.ultraExpandableGroupBox1.Text = "填写任务单";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGroupBox5);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(20, 3);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(503, 129);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraGroupBox5
- //
- this.ultraGroupBox5.Controls.Add(this.txt_FUNCTION_VERSION_NO);
- this.ultraGroupBox5.Controls.Add(this.ultcmb_ELIVERY_TYPE);
- this.ultraGroupBox5.Controls.Add(this.label7);
- this.ultraGroupBox5.Controls.Add(this.lb_ultcmb_PICK_MODE);
- this.ultraGroupBox5.Controls.Add(this.txt_BALANCE_BASEPRICE_M);
- this.ultraGroupBox5.Controls.Add(this.txt_TASK_NAME1);
- this.ultraGroupBox5.Controls.Add(this.cmb_PAYMENT_CODE);
- this.ultraGroupBox5.Controls.Add(this.cmb_PACKAGE_TYPE);
- this.ultraGroupBox5.Controls.Add(this.ultraLabel1);
- this.ultraGroupBox5.Controls.Add(this.cmb_RECEIVE_TYPE);
- this.ultraGroupBox5.Controls.Add(this.label4);
- this.ultraGroupBox5.Controls.Add(this.label2);
- this.ultraGroupBox5.Controls.Add(this.cmb_DELIVERY_CONDITION);
- this.ultraGroupBox5.Controls.Add(this.label5);
- this.ultraGroupBox5.Controls.Add(this.label1);
- this.ultraGroupBox5.Controls.Add(this.ultcmb_FLOW_TYPE);
- this.ultraGroupBox5.Controls.Add(this.txt_REMARK);
- this.ultraGroupBox5.Controls.Add(this.txt_TASK_NAME);
- this.ultraGroupBox5.Controls.Add(this.lb_ultcmb_FLOW_TYPE);
- this.ultraGroupBox5.Controls.Add(this.txt_TASK_ID);
- this.ultraGroupBox5.Controls.Add(this.ultraTextEditor1);
- this.ultraGroupBox5.Controls.Add(this.ultDt_OFFER_TIME_END);
- this.ultraGroupBox5.Controls.Add(this.ultDt_OFFER_TIME_START);
- this.ultraGroupBox5.Controls.Add(this.label14);
- this.ultraGroupBox5.Controls.Add(this.lb_txt_TASK_NAME);
- this.ultraGroupBox5.Controls.Add(this.label3);
- this.ultraGroupBox5.Controls.Add(this.lb_TASK_ID);
- this.ultraGroupBox5.Controls.Add(this.lb_ultDt_OFFER_TIME_START);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox5.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(503, 129);
- this.ultraGroupBox5.TabIndex = 0;
- this.ultraGroupBox5.Click += new System.EventHandler(this.ultraGroupBox5_Click);
- //
- // txt_FUNCTION_VERSION_NO
- //
- appearance12.FontData.BoldAsString = "True";
- appearance12.TextHAlignAsString = "Center";
- appearance12.TextVAlignAsString = "Middle";
- editorButton2.Appearance = appearance12;
- editorButton2.Text = "+";
- this.txt_FUNCTION_VERSION_NO.ButtonsRight.Add(editorButton2);
- this.txt_FUNCTION_VERSION_NO.Location = new System.Drawing.Point(325, 99);
- this.txt_FUNCTION_VERSION_NO.Name = "txt_FUNCTION_VERSION_NO";
- this.txt_FUNCTION_VERSION_NO.ReadOnly = true;
- this.txt_FUNCTION_VERSION_NO.Size = new System.Drawing.Size(165, 21);
- this.txt_FUNCTION_VERSION_NO.TabIndex = 161;
- this.txt_FUNCTION_VERSION_NO.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_FUNCTION_VERSION_NO_EditorButtonClick);
- //
- // ultcmb_ELIVERY_TYPE
- //
- this.ultcmb_ELIVERY_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultcmb_ELIVERY_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultcmb_ELIVERY_TYPE.Location = new System.Drawing.Point(325, 76);
- this.ultcmb_ELIVERY_TYPE.Name = "ultcmb_ELIVERY_TYPE";
- this.ultcmb_ELIVERY_TYPE.Size = new System.Drawing.Size(165, 21);
- this.ultcmb_ELIVERY_TYPE.TabIndex = 147;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(268, 103);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(53, 12);
- this.label7.TabIndex = 159;
- this.label7.Text = "招标方案";
- //
- // lb_ultcmb_PICK_MODE
- //
- this.lb_ultcmb_PICK_MODE.AutoSize = true;
- this.lb_ultcmb_PICK_MODE.Location = new System.Drawing.Point(268, 80);
- this.lb_ultcmb_PICK_MODE.Name = "lb_ultcmb_PICK_MODE";
- this.lb_ultcmb_PICK_MODE.Size = new System.Drawing.Size(53, 12);
- this.lb_ultcmb_PICK_MODE.TabIndex = 5;
- this.lb_ultcmb_PICK_MODE.Text = "运输方式";
- //
- // txt_TASK_NAME1
- //
- appearance23.TextHAlignAsString = "Right";
- appearance23.TextVAlignAsString = "Middle";
- this.txt_TASK_NAME1.Appearance = appearance23;
- this.txt_TASK_NAME1.Location = new System.Drawing.Point(56, 54);
- this.txt_TASK_NAME1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_TASK_NAME1.Name = "txt_TASK_NAME1";
- this.txt_TASK_NAME1.Size = new System.Drawing.Size(188, 18);
- this.txt_TASK_NAME1.TabIndex = 156;
- this.txt_TASK_NAME1.Text = "TPCO-GY耐火材料科1608001";
- //
- // cmb_PAYMENT_CODE
- //
- this.cmb_PAYMENT_CODE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.cmb_PAYMENT_CODE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_PAYMENT_CODE.Location = new System.Drawing.Point(666, 37);
- this.cmb_PAYMENT_CODE.Name = "cmb_PAYMENT_CODE";
- this.cmb_PAYMENT_CODE.Size = new System.Drawing.Size(10, 21);
- this.cmb_PAYMENT_CODE.TabIndex = 155;
- this.cmb_PAYMENT_CODE.Visible = false;
- this.cmb_PAYMENT_CODE.ValueChanged += new System.EventHandler(this.cmb_PAYMENT_CODE_ValueChanged);
- //
- // cmb_PACKAGE_TYPE
- //
- this.cmb_PACKAGE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.cmb_PACKAGE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_PACKAGE_TYPE.Location = new System.Drawing.Point(666, 18);
- this.cmb_PACKAGE_TYPE.Name = "cmb_PACKAGE_TYPE";
- this.cmb_PACKAGE_TYPE.Size = new System.Drawing.Size(10, 21);
- this.cmb_PACKAGE_TYPE.TabIndex = 153;
- this.cmb_PACKAGE_TYPE.Visible = false;
- this.cmb_PACKAGE_TYPE.ValueChanged += new System.EventHandler(this.cmb_PACKAGE_TYPE_ValueChanged);
- //
- // ultraLabel1
- //
- appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance33.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance33.TextHAlignAsString = "Center";
- appearance33.TextVAlignAsString = "Middle";
- this.ultraLabel1.Appearance = appearance33;
- this.ultraLabel1.Location = new System.Drawing.Point(422, 30);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(68, 20);
- this.ultraLabel1.TabIndex = 152;
- this.ultraLabel1.Text = "流程说明";
- this.ultraLabel1.MouseEnter += new System.EventHandler(this.ultraLabel1_MouseEnter);
- //
- // cmb_RECEIVE_TYPE
- //
- this.cmb_RECEIVE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.cmb_RECEIVE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_RECEIVE_TYPE.Location = new System.Drawing.Point(666, 56);
- this.cmb_RECEIVE_TYPE.Name = "cmb_RECEIVE_TYPE";
- this.cmb_RECEIVE_TYPE.Size = new System.Drawing.Size(10, 21);
- this.cmb_RECEIVE_TYPE.TabIndex = 151;
- this.cmb_RECEIVE_TYPE.Visible = false;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(610, 22);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(53, 12);
- this.label4.TabIndex = 152;
- this.label4.Text = "包装方式";
- this.label4.Visible = false;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(610, 61);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 150;
- this.label2.Text = "接收方式";
- this.label2.Visible = false;
- //
- // cmb_DELIVERY_CONDITION
- //
- this.cmb_DELIVERY_CONDITION.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.cmb_DELIVERY_CONDITION.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.cmb_DELIVERY_CONDITION.Location = new System.Drawing.Point(59, 76);
- this.cmb_DELIVERY_CONDITION.Name = "cmb_DELIVERY_CONDITION";
- this.cmb_DELIVERY_CONDITION.Size = new System.Drawing.Size(200, 21);
- this.cmb_DELIVERY_CONDITION.TabIndex = 149;
- this.cmb_DELIVERY_CONDITION.ValueChanged += new System.EventHandler(this.cmb_DELIVERY_CONDITION_ValueChanged);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(614, 39);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(53, 12);
- this.label5.TabIndex = 154;
- this.label5.Text = "付款方式";
- this.label5.Visible = false;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(2, 80);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 148;
- this.label1.Text = "运输条件";
- //
- // ultcmb_FLOW_TYPE
- //
- this.ultcmb_FLOW_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultcmb_FLOW_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.ultcmb_FLOW_TYPE.Location = new System.Drawing.Point(325, 30);
- this.ultcmb_FLOW_TYPE.Name = "ultcmb_FLOW_TYPE";
- this.ultcmb_FLOW_TYPE.Size = new System.Drawing.Size(91, 21);
- this.ultcmb_FLOW_TYPE.TabIndex = 146;
- this.ultcmb_FLOW_TYPE.SelectionChanged += new System.EventHandler(this.rdb_FLOW_TYPE_CheckedChanged);
- //
- // txt_REMARK
- //
- this.txt_REMARK.Location = new System.Drawing.Point(59, 99);
- this.txt_REMARK.Multiline = true;
- this.txt_REMARK.Name = "txt_REMARK";
- this.txt_REMARK.Size = new System.Drawing.Size(200, 21);
- this.txt_REMARK.TabIndex = 143;
- //
- // txt_TASK_NAME
- //
- appearance4.TextHAlignAsString = "Left";
- this.txt_TASK_NAME.Appearance = appearance4;
- this.txt_TASK_NAME.Location = new System.Drawing.Point(249, 53);
- this.txt_TASK_NAME.Name = "txt_TASK_NAME";
- this.txt_TASK_NAME.Size = new System.Drawing.Size(241, 21);
- this.txt_TASK_NAME.TabIndex = 142;
- //
- // lb_ultcmb_FLOW_TYPE
- //
- this.lb_ultcmb_FLOW_TYPE.AutoSize = true;
- this.lb_ultcmb_FLOW_TYPE.Location = new System.Drawing.Point(268, 34);
- this.lb_ultcmb_FLOW_TYPE.Name = "lb_ultcmb_FLOW_TYPE";
- this.lb_ultcmb_FLOW_TYPE.Size = new System.Drawing.Size(53, 12);
- this.lb_ultcmb_FLOW_TYPE.TabIndex = 4;
- this.lb_ultcmb_FLOW_TYPE.Text = "招标流程";
- //
- // txt_TASK_ID
- //
- this.txt_TASK_ID.Enabled = false;
- this.txt_TASK_ID.Location = new System.Drawing.Point(59, 30);
- this.txt_TASK_ID.Name = "txt_TASK_ID";
- this.txt_TASK_ID.ReadOnly = true;
- this.txt_TASK_ID.Size = new System.Drawing.Size(200, 21);
- this.txt_TASK_ID.TabIndex = 141;
- //
- // ultraTextEditor1
- //
- appearance1.TextHAlignAsString = "Center";
- appearance1.TextVAlignAsString = "Middle";
- this.ultraTextEditor1.Appearance = appearance1;
- this.ultraTextEditor1.Enabled = false;
- this.ultraTextEditor1.Location = new System.Drawing.Point(494, 77);
- this.ultraTextEditor1.Multiline = true;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(19, 21);
- this.ultraTextEditor1.TabIndex = 144;
- this.ultraTextEditor1.Visible = false;
- //
- // ultDt_OFFER_TIME_END
- //
- this.ultDt_OFFER_TIME_END.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultDt_OFFER_TIME_END.FormatProvider = new System.Globalization.CultureInfo("zh-CN");
- this.ultDt_OFFER_TIME_END.Location = new System.Drawing.Point(325, 7);
- this.ultDt_OFFER_TIME_END.MaskInput = "{date} {longtime}";
- this.ultDt_OFFER_TIME_END.Name = "ultDt_OFFER_TIME_END";
- this.ultDt_OFFER_TIME_END.Size = new System.Drawing.Size(165, 21);
- this.ultDt_OFFER_TIME_END.TabIndex = 140;
- //
- // ultDt_OFFER_TIME_START
- //
- this.ultDt_OFFER_TIME_START.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.ultDt_OFFER_TIME_START.FormatProvider = new System.Globalization.CultureInfo("zh-CN");
- this.ultDt_OFFER_TIME_START.Location = new System.Drawing.Point(59, 7);
- this.ultDt_OFFER_TIME_START.MaskInput = "{date} {longtime}";
- this.ultDt_OFFER_TIME_START.Name = "ultDt_OFFER_TIME_START";
- this.ultDt_OFFER_TIME_START.Size = new System.Drawing.Size(200, 21);
- this.ultDt_OFFER_TIME_START.TabIndex = 139;
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(286, 11);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(23, 12);
- this.label14.TabIndex = 138;
- this.label14.Text = "---";
- //
- // lb_txt_TASK_NAME
- //
- this.lb_txt_TASK_NAME.AutoSize = true;
- this.lb_txt_TASK_NAME.Location = new System.Drawing.Point(2, 57);
- this.lb_txt_TASK_NAME.Name = "lb_txt_TASK_NAME";
- this.lb_txt_TASK_NAME.Size = new System.Drawing.Size(53, 12);
- this.lb_txt_TASK_NAME.TabIndex = 3;
- this.lb_txt_TASK_NAME.Text = "任务名称";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(2, 103);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 2;
- this.label3.Text = "备 注";
- //
- // lb_TASK_ID
- //
- this.lb_TASK_ID.AutoSize = true;
- this.lb_TASK_ID.Location = new System.Drawing.Point(2, 34);
- this.lb_TASK_ID.Name = "lb_TASK_ID";
- this.lb_TASK_ID.Size = new System.Drawing.Size(53, 12);
- this.lb_TASK_ID.TabIndex = 1;
- this.lb_TASK_ID.Text = "任务编号";
- //
- // lb_ultDt_OFFER_TIME_START
- //
- this.lb_ultDt_OFFER_TIME_START.AutoSize = true;
- this.lb_ultDt_OFFER_TIME_START.Location = new System.Drawing.Point(2, 11);
- this.lb_ultDt_OFFER_TIME_START.Name = "lb_ultDt_OFFER_TIME_START";
- this.lb_ultDt_OFFER_TIME_START.Size = new System.Drawing.Size(53, 12);
- this.lb_ultDt_OFFER_TIME_START.TabIndex = 0;
- this.lb_ultDt_OFFER_TIME_START.Text = "报价时间";
- //
- // barsManagerButon
- //
- this.barsManagerButon.DesignerFlags = 1;
- this.barsManagerButon.DockWithinContainer = this;
- this.barsManagerButon.DockWithinContainerBaseType = typeof(CoreFS.CA06.FrmBase);
- this.barsManagerButon.MiniToolbar.ToolRowCount = 3;
- this.barsManagerButon.Office2007UICompatibility = false;
- ribbonTab1.Caption = "ribbon1";
- ribbonGroup1.Caption = "ribbonGroup1";
- ribbonGroup2.Caption = "ribbonGroup2";
- ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
- ribbonGroup1,
- ribbonGroup2});
- this.barsManagerButon.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
- ribbonTab1});
- this.barsManagerButon.ShowQuickCustomizeButton = false;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool2,
- buttonTool5});
- ultraToolbar1.Text = "UltraToolbar1";
- ultraToolbar1.Visible = false;
- ultraToolbar2.DockedColumn = 0;
- ultraToolbar2.DockedRow = 0;
- ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool4,
- buttonTool16});
- ultraToolbar2.Text = "UltraToolbar2";
- this.barsManagerButon.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1,
- ultraToolbar2});
- buttonTool6.SharedPropsInternal.Caption = "新增";
- buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool7.SharedPropsInternal.Caption = "删除";
- buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool8.SharedPropsInternal.Caption = "修改";
- buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool9.SharedPropsInternal.Caption = "查询";
- buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedPropsInternal.Caption = "关闭";
- buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedPropsInternal.Caption = "恢复";
- buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool3.SharedPropsInternal.Caption = "确认";
- buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
- buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
- buttonTool11.SharedPropsInternal.Caption = "添加供应商";
- buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
- buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
- buttonTool13.SharedPropsInternal.Caption = "关闭";
- buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance8.Image = ((object)(resources.GetObject("appearance8.Image")));
- buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance8;
- buttonTool17.SharedPropsInternal.Caption = "生成任务单";
- buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- appearance6.Image = ((object)(resources.GetObject("appearance6.Image")));
- buttonTool15.SharedPropsInternal.AppearancesSmall.Appearance = appearance6;
- buttonTool15.SharedPropsInternal.Caption = "添加评标人员";
- buttonTool15.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.barsManagerButon.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool6,
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10,
- buttonTool12,
- buttonTool3,
- buttonTool11,
- buttonTool13,
- buttonTool17,
- buttonTool15});
- this.barsManagerButon.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.barsManagerButon_ToolClick);
- //
- // _Form1_Toolbars_Dock_Area_Top
- //
- this._Form1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._Form1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._Form1_Toolbars_Dock_Area_Top.Name = "_Form1_Toolbars_Dock_Area_Top";
- this._Form1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1141, 24);
- this._Form1_Toolbars_Dock_Area_Top.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Bottom
- //
- this._Form1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._Form1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 617);
- this._Form1_Toolbars_Dock_Area_Bottom.Name = "_Form1_Toolbars_Dock_Area_Bottom";
- this._Form1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1141, 0);
- this._Form1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Left
- //
- this._Form1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._Form1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
- this._Form1_Toolbars_Dock_Area_Left.Name = "_Form1_Toolbars_Dock_Area_Left";
- this._Form1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 593);
- this._Form1_Toolbars_Dock_Area_Left.ToolbarsManager = this.barsManagerButon;
- //
- // _Form1_Toolbars_Dock_Area_Right
- //
- this._Form1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._Form1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._Form1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._Form1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._Form1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1141, 24);
- this._Form1_Toolbars_Dock_Area_Right.Name = "_Form1_Toolbars_Dock_Area_Right";
- this._Form1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 593);
- this._Form1_Toolbars_Dock_Area_Right.ToolbarsManager = this.barsManagerButon;
- //
- // ultraToolTipManager1
- //
- this.ultraToolTipManager1.ContainingControl = this;
- //
- // frm_PurTaskM
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.AutoSize = true;
- this.ClientSize = new System.Drawing.Size(1141, 617);
- this.Controls.Add(this.tableLayoutPanel1);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Left);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Right);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Top);
- this.Controls.Add(this._Form1_Toolbars_Dock_Area_Bottom);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.Name = "frm_PurTaskM";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "生成任务单";
- this.Load += new System.EventHandler(this.frm_PurTaskM_Load);
- this.Click += new System.EventHandler(this.frm_PurTaskM_Click);
- ((System.ComponentModel.ISupportInitialize)(this.txt_BALANCE_BASEPRICE_M)).EndInit();
- this.tableLayoutPanel1.ResumeLayout(false);
- this.ultraPanel1.ClientArea.ResumeLayout(false);
- this.ultraPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ClientArea.PerformLayout();
- this.ultraPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_EVA_USERNAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_EVA_ROLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable33)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- this.ultraPanel22.ClientArea.ResumeLayout(false);
- this.ultraPanel22.ClientArea.PerformLayout();
- this.ultraPanel22.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
- this.ultraGroupBox6.ResumeLayout(false);
- this.ultraGroupBox6.PerformLayout();
- this.ultraPanel21.ClientArea.ResumeLayout(false);
- this.ultraPanel21.ClientArea.PerformLayout();
- this.ultraPanel21.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.jy_type)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_RecordId)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- this.ultraGroupBox5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_FUNCTION_VERSION_NO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultcmb_ELIVERY_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_PAYMENT_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_PACKAGE_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_RECEIVE_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_DELIVERY_CONDITION)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultcmb_FLOW_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TASK_ID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_END)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultDt_OFFER_TIME_START)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private System.Windows.Forms.Label lb_ultcmb_PICK_MODE;
- private System.Windows.Forms.Label lb_ultcmb_FLOW_TYPE;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TASK_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TASK_ID;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultDt_OFFER_TIME_END;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultDt_OFFER_TIME_START;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultcmb_FLOW_TYPE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultcmb_ELIVERY_TYPE;
- private System.Windows.Forms.Label lb_txt_TASK_NAME;
- private System.Windows.Forms.Label lb_TASK_ID;
- private System.Windows.Forms.Label lb_ultDt_OFFER_TIME_START;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager barsManagerButon;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Bottom;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private System.Data.DataColumn dataColumn41;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private System.Data.DataColumn dataColumn48;
- private System.Data.DataColumn dataColumn49;
- private System.Data.DataColumn dataColumn50;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private System.Data.DataColumn dataColumn54;
- private System.Data.DataColumn dataColumn55;
- private System.Data.DataColumn dataColumn56;
- private System.Data.DataColumn dataColumn57;
- private System.Data.DataColumn dataColumn58;
- private System.Data.DataTable dataTable6;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private System.Data.DataColumn dataColumn61;
- private System.Data.DataColumn dataColumn62;
- private System.Data.DataColumn dataColumn63;
- private System.Data.DataColumn dataColumn64;
- private System.Data.DataColumn dataColumn65;
- private System.Data.DataColumn dataColumn66;
- private System.Data.DataColumn dataColumn67;
- private System.Data.DataColumn dataColumn68;
- private System.Data.DataColumn dataColumn69;
- private System.Data.DataColumn dataColumn70;
- private System.Data.DataColumn dataColumn71;
- private System.Data.DataColumn dataColumn72;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_DELIVERY_CONDITION;
- private System.Windows.Forms.Label label1;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_RECEIVE_TYPE;
- private System.Windows.Forms.Label label2;
- private System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_PAYMENT_CODE;
- private System.Windows.Forms.Label label5;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_PACKAGE_TYPE;
- private System.Windows.Forms.Label label4;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- private Infragistics.Win.Misc.UltraPanel ultraPanel1;
- private System.Data.DataTable dataTable7;
- private System.Data.DataColumn dataColumn77;
- private System.Data.DataColumn dataColumn78;
- private System.Data.DataColumn dataColumn79;
- private System.Data.DataColumn dataColumn80;
- private System.Data.DataColumn dataColumn81;
- private System.Data.DataColumn dataColumn82;
- private System.Data.DataColumn dataColumn83;
- private System.Data.DataColumn dataColumn84;
- private System.Data.DataColumn dataColumn85;
- private System.Data.DataColumn dataColumn86;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private System.Data.DataSet dataSet3;
- private System.Data.DataTable dataTable9;
- private System.Data.DataColumn dataColumn104;
- private System.Data.DataColumn dataColumn105;
- private System.Data.DataColumn dataColumn106;
- private System.Data.DataColumn dataColumn107;
- private System.Data.DataColumn dataColumn108;
- private System.Data.DataColumn dataColumn109;
- private System.Data.DataColumn dataColumn113;
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private System.Windows.Forms.TextBox txt_EVA_USERID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_EVA_USERNAME;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox txt_EVA_ORG_ID;
- private System.Windows.Forms.TextBox txt_EVA_ORG_NAME;
- private System.Windows.Forms.Label label8;
- private Infragistics.Win.Misc.UltraButton ultraButton1;
- private System.Windows.Forms.Label label9;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_EVA_ROLE_NAME;
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_RecordId;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo jy_negDate;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_procRecord;
- private Infragistics.Win.UltraWinToolTip.UltraToolTipManager ultraToolTipManager1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraButton btnSelEvaGroup;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private System.Data.DataTable dataTable8;
- private System.Data.DataColumn dataColumn87;
- private System.Data.DataColumn dataColumn88;
- private System.Data.DataColumn dataColumn89;
- private System.Data.DataColumn dataColumn90;
- private System.Data.DataColumn dataColumn91;
- private System.Data.DataColumn dataColumn92;
- private Core.Mes.Client.Comm.Control.UltraPanel2 ultraPanel21;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.Misc.UltraLabel txt_TASK_NAME1;
- private System.Data.DataColumn dataColumn93;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_BALANCE_BASEPRICE_M;
- private System.Data.DataColumn dataColumn95;
- private Core.Mes.Client.Comm.Control.UltraPanel2 ultraPanel22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
- private System.Windows.Forms.Label label7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_FUNCTION_VERSION_NO;
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn96;
- private System.Data.DataColumn dataColumn97;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor jy_type;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataTable dataTable33;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn16;
- }
- }
|