| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175 |
- namespace Pur.order
- {
- partial class FrmOrderM
- {
- /// <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()
- {
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton5 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton6 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderLineSqe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReviewLineSqe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaskLineId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemModel");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemSpec");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Qty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUseUom");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUom");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUomConefficient");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CkQty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeTpe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMin");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MeteringFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BatchFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PcFlag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandards");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandardsCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BasePriceNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ChemPriceNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GradePriceNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QuantityPriceNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OtherPriceNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithoutTax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithTax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocationCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocation");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedQty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedQty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedQty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StartDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurLineId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmVersionNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttr");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttrId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "OrderLineSqe", 1, true, "Table2", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "OrderLineSqe", 1, true);
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "WithoutTaxAmt", 33, true, "Table2", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "WithoutTaxAmt", 33, true);
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "WithAmtTax", 34, true, "Table2", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "WithAmtTax", 34, true);
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderLineDSqe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("qty");
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createdQty");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createUserId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateUserId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteUserId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderLineSqe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELIVERYDATEEND");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELIVERYDATESTART");
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "orderLineDSqe", 0, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "orderLineDSqe", 0, true);
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "createdQty", 4, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "createdQty", 4, true);
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "qty", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "qty", 3, true);
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndx");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDefault");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVARESULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAMSG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISLATEST");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deletename");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATEUSERID");
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderVer");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderMoneyType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderTitleCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PorderId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppOrdeId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ImportOrdeId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Currency");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ExchangeRateCur");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMin");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxRateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn138 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt4");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn139 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt5");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn140 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn141 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn142 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn143 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt4");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn144 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt5");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn145 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GuaAmt");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn146 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StartDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn147 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn148 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn149 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn150 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignAddress");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn151 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn152 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrintNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn153 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn154 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn155 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn156 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn157 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn158 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn159 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn160 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn161 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn162 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn163 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn164 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn165 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Status");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn166 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("taskRecordId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn167 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "OrderId", 0, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "OrderId", 0, true);
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings8 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "WithAmtTax", 19, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "WithAmtTax", 19, true);
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings9 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "WithoutTaxAmt", 18, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "WithoutTaxAmt", 18, true);
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton7 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton8 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOrderM));
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_TaxAmt = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_AftPaymentAmt1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_WithAmtTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_WithoutTaxAmt = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_deliveryType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_deliveryCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_OrderMoneyType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_CreateTime = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.currencylabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.currencylabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_TaxRateName = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.currencylabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.currencylabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SignDate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_OrderType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_OrderClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_Currency = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SignAddress = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_TitleName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BuyerName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ExchangeRateCur = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SuppName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ModeName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_TaskRecordId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_OrderId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_TaxAmt2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_WithoutTaxAmt2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_PriceWithTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_PriceWithoutTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_Qty = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_WithAmtTax2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_paymentType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_packType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_purstandardscode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_UNIT = new System.Windows.Forms.Label();
- this.txt_WEIGHTUNIT = new System.Windows.Forms.Label();
- this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_itemAttrName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.currencyLabel63 = new Infragistics.Win.Misc.UltraLabel();
- this.currencyLabel64 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Pur_Clause = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
- this.currencyLabel65 = new Infragistics.Win.Misc.UltraLabel();
- this.currencyLabel66 = new Infragistics.Win.Misc.UltraLabel();
- this.currencyLabel62 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_ItemUomConefficient = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_EndDate2 = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_StartDate2 = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_ReceiveType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_QuantityPriceNum = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_GradePriceNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ChemPriceNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BuyerName2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_DelvryRangeMin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ItemName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ItemCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_OrderLineSqe = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.label4 = new System.Windows.Forms.Label();
- this.txt_askDeliveryDateStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
- this.label2 = new System.Windows.Forms.Label();
- this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_askDeliveryDateEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_CD_Qty = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.label3 = new System.Windows.Forms.Label();
- this.txt_orderCD_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label1 = new System.Windows.Forms.Label();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = 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.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = 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.dataColumn42 = 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.dataColumn127 = new System.Data.DataColumn();
- this.dataColumn158 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- 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.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.dataColumn73 = new System.Data.DataColumn();
- this.dataColumn74 = new System.Data.DataColumn();
- this.dataColumn75 = new System.Data.DataColumn();
- this.dataColumn76 = new System.Data.DataColumn();
- 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.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.dataColumn92 = new System.Data.DataColumn();
- this.dataColumn93 = new System.Data.DataColumn();
- this.dataColumn94 = new System.Data.DataColumn();
- this.dataColumn95 = new System.Data.DataColumn();
- this.dataColumn96 = new System.Data.DataColumn();
- this.dataColumn97 = new System.Data.DataColumn();
- this.dataColumn98 = new System.Data.DataColumn();
- this.dataColumn99 = new System.Data.DataColumn();
- this.dataColumn100 = new System.Data.DataColumn();
- this.dataColumn101 = new System.Data.DataColumn();
- this.dataColumn102 = new System.Data.DataColumn();
- this.dataColumn103 = new System.Data.DataColumn();
- 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.dataColumn110 = new System.Data.DataColumn();
- this.dataColumn111 = new System.Data.DataColumn();
- this.dataColumn128 = new System.Data.DataColumn();
- this.dataColumn129 = new System.Data.DataColumn();
- this.dataColumn130 = new System.Data.DataColumn();
- this.dataColumn131 = new System.Data.DataColumn();
- this.dataColumn132 = new System.Data.DataColumn();
- this.dataColumn133 = new System.Data.DataColumn();
- this.dataColumn134 = new System.Data.DataColumn();
- this.dataColumn152 = new System.Data.DataColumn();
- this.dataColumn153 = new System.Data.DataColumn();
- this.dataColumn154 = new System.Data.DataColumn();
- this.dataColumn155 = new System.Data.DataColumn();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet3 = new System.Data.DataSet();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn135 = new System.Data.DataColumn();
- this.dataColumn136 = new System.Data.DataColumn();
- this.dataColumn137 = new System.Data.DataColumn();
- this.dataColumn138 = new System.Data.DataColumn();
- this.dataColumn139 = new System.Data.DataColumn();
- this.dataColumn140 = new System.Data.DataColumn();
- this.dataColumn141 = new System.Data.DataColumn();
- this.dataColumn142 = new System.Data.DataColumn();
- this.dataColumn143 = new System.Data.DataColumn();
- this.dataColumn144 = new System.Data.DataColumn();
- this.dataColumn145 = new System.Data.DataColumn();
- this.dataColumn146 = new System.Data.DataColumn();
- this.dataColumn147 = new System.Data.DataColumn();
- this.dataColumn148 = new System.Data.DataColumn();
- this.dataColumn149 = new System.Data.DataColumn();
- this.dataColumn150 = new System.Data.DataColumn();
- this.dataColumn151 = new System.Data.DataColumn();
- this.dataColumn156 = new System.Data.DataColumn();
- this.dataColumn157 = new System.Data.DataColumn();
- this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn112 = new System.Data.DataColumn();
- this.dataColumn113 = new System.Data.DataColumn();
- this.dataColumn114 = new System.Data.DataColumn();
- this.dataColumn115 = new System.Data.DataColumn();
- this.dataColumn116 = new System.Data.DataColumn();
- this.dataColumn117 = new System.Data.DataColumn();
- this.dataColumn118 = new System.Data.DataColumn();
- this.dataColumn119 = new System.Data.DataColumn();
- this.dataColumn120 = new System.Data.DataColumn();
- this.dataColumn121 = new System.Data.DataColumn();
- this.dataColumn122 = new System.Data.DataColumn();
- this.dataColumn123 = new System.Data.DataColumn();
- this.dataColumn124 = new System.Data.DataColumn();
- this.dataColumn125 = new System.Data.DataColumn();
- this.dataColumn126 = new System.Data.DataColumn();
- this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.jy_procRecord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet4 = new System.Data.DataSet();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn159 = new System.Data.DataColumn();
- this.dataColumn161 = new System.Data.DataColumn();
- this.dataColumn162 = new System.Data.DataColumn();
- this.dataColumn163 = new System.Data.DataColumn();
- this.dataColumn164 = new System.Data.DataColumn();
- this.dataColumn165 = new System.Data.DataColumn();
- this.dataColumn166 = new System.Data.DataColumn();
- this.dataColumn160 = new System.Data.DataColumn();
- this.panel1 = new System.Windows.Forms.Panel();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.jy_negDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.jy_mngOrgName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
- this.jy_buyerUsername = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.jy_taskName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.jy_taskId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.COP_OrderType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.COP_SuppName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.COP_OrderId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
- this.COPStatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.CK_Ctime = new System.Windows.Forms.CheckBox();
- this.label7 = new System.Windows.Forms.Label();
- this.label6 = new System.Windows.Forms.Label();
- this.txt_createTimeEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_createTimeStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_AftPaymentAmt1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryCondition)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderMoneyType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CreateTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxRateName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SignDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderClass)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Currency)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SignAddress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TitleName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ExchangeRateCur)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SuppName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ModeName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaskRecordId)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderId)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithTax)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithoutTax)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Qty)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_paymentType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_packType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_purstandardscode)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_itemAttrName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Pur_Clause)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemUomConefficient)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_EndDate2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_StartDate2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ReceiveType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_QuantityPriceNum)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GradePriceNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ChemPriceNo)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DelvryRangeMin)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemCode)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderLineSqe)).BeginInit();
- this.ultraTabPageControl7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateStart)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CD_Qty)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderCD_Remark)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- this.ultraTabPageControl5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- this.ultraTabPageControl8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_mngOrgName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_buyerUsername)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_taskName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_taskId)).BeginInit();
- this.ultraTabPageControl6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_OrderType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.COPStatus)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- this.ultraPanel3.ClientArea.SuspendLayout();
- this.ultraPanel3.SuspendLayout();
- this.ultraPanel6.ClientArea.SuspendLayout();
- this.ultraPanel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
- this.ultraTabControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
- this.ultraExpandableGroupBox2.SuspendLayout();
- this.ultraExpandableGroupBoxPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeStart)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.txt_TaxAmt);
- this.ultraTabPageControl1.Controls.Add(this.txt_AftPaymentAmt1);
- this.ultraTabPageControl1.Controls.Add(this.txt_WithAmtTax);
- this.ultraTabPageControl1.Controls.Add(this.txt_WithoutTaxAmt);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel18);
- this.ultraTabPageControl1.Controls.Add(this.txt_deliveryType);
- this.ultraTabPageControl1.Controls.Add(this.txt_deliveryCondition);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel15);
- this.ultraTabPageControl1.Controls.Add(this.txt_OrderMoneyType);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel7);
- this.ultraTabPageControl1.Controls.Add(this.txt_CreateTime);
- this.ultraTabPageControl1.Controls.Add(this.currencylabel1);
- this.ultraTabPageControl1.Controls.Add(this.currencylabel4);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel71);
- this.ultraTabPageControl1.Controls.Add(this.txt_TaxRateName);
- this.ultraTabPageControl1.Controls.Add(this.currencylabel2);
- this.ultraTabPageControl1.Controls.Add(this.currencylabel3);
- this.ultraTabPageControl1.Controls.Add(this.txt_SignDate);
- this.ultraTabPageControl1.Controls.Add(this.txt_OrderType);
- this.ultraTabPageControl1.Controls.Add(this.txt_OrderClass);
- this.ultraTabPageControl1.Controls.Add(this.txt_Currency);
- this.ultraTabPageControl1.Controls.Add(this.txt_SignAddress);
- this.ultraTabPageControl1.Controls.Add(this.txt_TitleName);
- this.ultraTabPageControl1.Controls.Add(this.txt_BuyerName);
- this.ultraTabPageControl1.Controls.Add(this.txt_ExchangeRateCur);
- this.ultraTabPageControl1.Controls.Add(this.txt_SuppName);
- this.ultraTabPageControl1.Controls.Add(this.txt_ModeName);
- this.ultraTabPageControl1.Controls.Add(this.txt_TaskRecordId);
- this.ultraTabPageControl1.Controls.Add(this.txt_OrderId);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel22);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel23);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel16);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel19);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel11);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel12);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel13);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel14);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel6);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel8);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel9);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel10);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel5);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel4);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel3);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel2);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1346, 174);
- //
- // txt_TaxAmt
- //
- this.txt_TaxAmt.Location = new System.Drawing.Point(441, 142);
- this.txt_TaxAmt.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_TaxAmt.MaskInput = "{double:9.2}";
- this.txt_TaxAmt.Name = "txt_TaxAmt";
- this.txt_TaxAmt.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_TaxAmt.ReadOnly = true;
- this.txt_TaxAmt.Size = new System.Drawing.Size(178, 21);
- this.txt_TaxAmt.TabIndex = 119;
- //
- // txt_AftPaymentAmt1
- //
- this.txt_AftPaymentAmt1.Location = new System.Drawing.Point(441, 119);
- this.txt_AftPaymentAmt1.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_AftPaymentAmt1.MaskInput = "{double:9.2}";
- this.txt_AftPaymentAmt1.Name = "txt_AftPaymentAmt1";
- this.txt_AftPaymentAmt1.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_AftPaymentAmt1.ReadOnly = true;
- this.txt_AftPaymentAmt1.Size = new System.Drawing.Size(178, 21);
- this.txt_AftPaymentAmt1.TabIndex = 118;
- //
- // txt_WithAmtTax
- //
- this.txt_WithAmtTax.Location = new System.Drawing.Point(441, 73);
- this.txt_WithAmtTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_WithAmtTax.MaskInput = "{double:9.2}";
- this.txt_WithAmtTax.Name = "txt_WithAmtTax";
- this.txt_WithAmtTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_WithAmtTax.ReadOnly = true;
- this.txt_WithAmtTax.Size = new System.Drawing.Size(178, 21);
- this.txt_WithAmtTax.TabIndex = 117;
- //
- // txt_WithoutTaxAmt
- //
- this.txt_WithoutTaxAmt.Location = new System.Drawing.Point(441, 50);
- this.txt_WithoutTaxAmt.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_WithoutTaxAmt.MaskInput = "{double:9.2}";
- this.txt_WithoutTaxAmt.Name = "txt_WithoutTaxAmt";
- this.txt_WithoutTaxAmt.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_WithoutTaxAmt.ReadOnly = true;
- this.txt_WithoutTaxAmt.Size = new System.Drawing.Size(178, 21);
- this.txt_WithoutTaxAmt.TabIndex = 116;
- //
- // ultraLabel18
- //
- this.ultraLabel18.AutoSize = true;
- this.ultraLabel18.Location = new System.Drawing.Point(713, 52);
- this.ultraLabel18.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel18.TabIndex = 77;
- this.ultraLabel18.Text = "运输类型";
- //
- // txt_deliveryType
- //
- this.txt_deliveryType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_deliveryType.Location = new System.Drawing.Point(771, 50);
- this.txt_deliveryType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_deliveryType.Name = "txt_deliveryType";
- this.txt_deliveryType.Size = new System.Drawing.Size(180, 21);
- this.txt_deliveryType.TabIndex = 76;
- //
- // txt_deliveryCondition
- //
- this.txt_deliveryCondition.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_deliveryCondition.Location = new System.Drawing.Point(771, 27);
- this.txt_deliveryCondition.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_deliveryCondition.Name = "txt_deliveryCondition";
- this.txt_deliveryCondition.Size = new System.Drawing.Size(180, 21);
- this.txt_deliveryCondition.TabIndex = 75;
- //
- // ultraLabel15
- //
- this.ultraLabel15.AutoSize = true;
- this.ultraLabel15.Location = new System.Drawing.Point(713, 29);
- this.ultraLabel15.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel15.TabIndex = 74;
- this.ultraLabel15.Text = "运输条件";
- //
- // txt_OrderMoneyType
- //
- this.txt_OrderMoneyType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_OrderMoneyType.Location = new System.Drawing.Point(441, 96);
- this.txt_OrderMoneyType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_OrderMoneyType.Name = "txt_OrderMoneyType";
- this.txt_OrderMoneyType.Size = new System.Drawing.Size(178, 21);
- this.txt_OrderMoneyType.TabIndex = 71;
- //
- // ultraLabel7
- //
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(356, 98);
- 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 = 70;
- this.ultraLabel7.Text = "合同金额分类";
- //
- // txt_CreateTime
- //
- this.txt_CreateTime.DateButtons.Add(dateButton1);
- this.txt_CreateTime.Location = new System.Drawing.Point(771, 96);
- this.txt_CreateTime.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_CreateTime.Name = "txt_CreateTime";
- this.txt_CreateTime.NonAutoSizeHeight = 25;
- this.txt_CreateTime.ReadOnly = true;
- this.txt_CreateTime.Size = new System.Drawing.Size(180, 21);
- this.txt_CreateTime.TabIndex = 68;
- this.txt_CreateTime.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- //
- // currencylabel1
- //
- appearance39.FontData.BoldAsString = "False";
- this.currencylabel1.Appearance = appearance39;
- this.currencylabel1.AutoSize = true;
- this.currencylabel1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencylabel1.Location = new System.Drawing.Point(624, 150);
- this.currencylabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencylabel1.Name = "currencylabel1";
- this.currencylabel1.Size = new System.Drawing.Size(11, 14);
- this.currencylabel1.TabIndex = 66;
- this.currencylabel1.Text = "-";
- //
- // currencylabel4
- //
- appearance38.FontData.BoldAsString = "False";
- this.currencylabel4.Appearance = appearance38;
- this.currencylabel4.AutoSize = true;
- this.currencylabel4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencylabel4.Location = new System.Drawing.Point(624, 127);
- this.currencylabel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencylabel4.Name = "currencylabel4";
- this.currencylabel4.Size = new System.Drawing.Size(11, 14);
- this.currencylabel4.TabIndex = 65;
- this.currencylabel4.Text = "-";
- //
- // ultraLabel71
- //
- this.ultraLabel71.AutoSize = true;
- this.ultraLabel71.Location = new System.Drawing.Point(381, 144);
- this.ultraLabel71.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel71.Name = "ultraLabel71";
- this.ultraLabel71.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel71.TabIndex = 64;
- this.ultraLabel71.Text = "合同税额";
- //
- // txt_TaxRateName
- //
- this.txt_TaxRateName.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem25.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem25.DataValue = "16%";
- valueListItem25.DisplayText = "16%";
- valueListItem26.DataValue = "13%";
- valueListItem26.DisplayText = "13%";
- valueListItem33.DataValue = "11%";
- valueListItem33.DisplayText = "11%";
- valueListItem34.DataValue = "7%";
- valueListItem34.DisplayText = "7%";
- valueListItem21.DataValue = "6%";
- valueListItem21.DisplayText = "6%";
- valueListItem29.DataValue = "4%";
- valueListItem29.DisplayText = "4%";
- valueListItem30.DataValue = "3%";
- valueListItem30.DisplayText = "3%";
- valueListItem31.DataValue = "2%";
- valueListItem31.DisplayText = "2%";
- valueListItem32.DataValue = "0%";
- valueListItem32.DisplayText = "0%";
- this.txt_TaxRateName.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem25,
- valueListItem26,
- valueListItem33,
- valueListItem34,
- valueListItem21,
- valueListItem29,
- valueListItem30,
- valueListItem31,
- valueListItem32});
- this.txt_TaxRateName.Location = new System.Drawing.Point(441, 27);
- this.txt_TaxRateName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_TaxRateName.Name = "txt_TaxRateName";
- this.txt_TaxRateName.Size = new System.Drawing.Size(178, 21);
- this.txt_TaxRateName.TabIndex = 63;
- //
- // currencylabel2
- //
- appearance4.FontData.BoldAsString = "False";
- this.currencylabel2.Appearance = appearance4;
- this.currencylabel2.AutoSize = true;
- this.currencylabel2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencylabel2.Location = new System.Drawing.Point(624, 52);
- this.currencylabel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencylabel2.Name = "currencylabel2";
- this.currencylabel2.Size = new System.Drawing.Size(11, 14);
- this.currencylabel2.TabIndex = 62;
- this.currencylabel2.Text = "-";
- //
- // currencylabel3
- //
- appearance6.FontData.BoldAsString = "False";
- this.currencylabel3.Appearance = appearance6;
- this.currencylabel3.AutoSize = true;
- this.currencylabel3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencylabel3.Location = new System.Drawing.Point(624, 78);
- this.currencylabel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencylabel3.Name = "currencylabel3";
- this.currencylabel3.Size = new System.Drawing.Size(11, 14);
- this.currencylabel3.TabIndex = 61;
- this.currencylabel3.Text = "-";
- //
- // txt_SignDate
- //
- this.txt_SignDate.DateButtons.Add(dateButton2);
- this.txt_SignDate.Location = new System.Drawing.Point(771, 73);
- this.txt_SignDate.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_SignDate.Name = "txt_SignDate";
- this.txt_SignDate.NonAutoSizeHeight = 25;
- this.txt_SignDate.Size = new System.Drawing.Size(180, 21);
- this.txt_SignDate.TabIndex = 7;
- this.txt_SignDate.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- //
- // txt_OrderType
- //
- this.txt_OrderType.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;
- this.txt_OrderType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_OrderType.Location = new System.Drawing.Point(119, 73);
- this.txt_OrderType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_OrderType.Name = "txt_OrderType";
- this.txt_OrderType.Size = new System.Drawing.Size(180, 21);
- this.txt_OrderType.TabIndex = 4;
- //
- // txt_OrderClass
- //
- this.txt_OrderClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_OrderClass.Location = new System.Drawing.Point(119, 50);
- this.txt_OrderClass.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_OrderClass.Name = "txt_OrderClass";
- this.txt_OrderClass.Size = new System.Drawing.Size(180, 21);
- this.txt_OrderClass.TabIndex = 19;
- //
- // txt_Currency
- //
- this.txt_Currency.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_Currency.Location = new System.Drawing.Point(441, 4);
- this.txt_Currency.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_Currency.Name = "txt_Currency";
- this.txt_Currency.Size = new System.Drawing.Size(178, 21);
- this.txt_Currency.TabIndex = 10;
- this.txt_Currency.ValueChanged += new System.EventHandler(this.txt_Currency_ValueChanged);
- //
- // txt_SignAddress
- //
- this.txt_SignAddress.AcceptsReturn = true;
- this.txt_SignAddress.Location = new System.Drawing.Point(771, 119);
- this.txt_SignAddress.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_SignAddress.Name = "txt_SignAddress";
- this.txt_SignAddress.Size = new System.Drawing.Size(180, 21);
- this.txt_SignAddress.TabIndex = 9;
- //
- // txt_TitleName
- //
- appearance48.FontData.BoldAsString = "True";
- editorButton1.Appearance = appearance48;
- appearance65.FontData.BoldAsString = "True";
- editorButton1.PressedAppearance = appearance65;
- editorButton1.Text = "+";
- this.txt_TitleName.ButtonsRight.Add(editorButton1);
- this.txt_TitleName.Location = new System.Drawing.Point(119, 119);
- this.txt_TitleName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_TitleName.Name = "txt_TitleName";
- this.txt_TitleName.ReadOnly = true;
- this.txt_TitleName.Size = new System.Drawing.Size(180, 21);
- this.txt_TitleName.TabIndex = 18;
- this.txt_TitleName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_TitleName_EditorButtonClick);
- //
- // txt_BuyerName
- //
- this.txt_BuyerName.Location = new System.Drawing.Point(771, 142);
- this.txt_BuyerName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_BuyerName.Name = "txt_BuyerName";
- this.txt_BuyerName.ReadOnly = true;
- this.txt_BuyerName.Size = new System.Drawing.Size(180, 21);
- this.txt_BuyerName.TabIndex = 8;
- //
- // txt_ExchangeRateCur
- //
- this.txt_ExchangeRateCur.Location = new System.Drawing.Point(771, 4);
- this.txt_ExchangeRateCur.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ExchangeRateCur.Name = "txt_ExchangeRateCur";
- this.txt_ExchangeRateCur.ReadOnly = true;
- this.txt_ExchangeRateCur.Size = new System.Drawing.Size(180, 21);
- this.txt_ExchangeRateCur.TabIndex = 11;
- //
- // txt_SuppName
- //
- appearance15.FontData.BoldAsString = "True";
- editorButton2.Appearance = appearance15;
- editorButton2.Text = "+";
- this.txt_SuppName.ButtonsRight.Add(editorButton2);
- this.txt_SuppName.Location = new System.Drawing.Point(119, 142);
- this.txt_SuppName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_SuppName.Name = "txt_SuppName";
- this.txt_SuppName.ReadOnly = true;
- this.txt_SuppName.Size = new System.Drawing.Size(180, 21);
- this.txt_SuppName.TabIndex = 6;
- this.txt_SuppName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_SuppName_EditorButtonClick);
- //
- // txt_ModeName
- //
- this.txt_ModeName.Location = new System.Drawing.Point(119, 96);
- this.txt_ModeName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ModeName.Name = "txt_ModeName";
- this.txt_ModeName.ReadOnly = true;
- this.txt_ModeName.Size = new System.Drawing.Size(180, 21);
- this.txt_ModeName.TabIndex = 1;
- this.txt_ModeName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ModeName_EditorButtonClick);
- //
- // txt_TaskRecordId
- //
- editorButton3.Text = "...";
- this.txt_TaskRecordId.ButtonsRight.Add(editorButton3);
- this.txt_TaskRecordId.Location = new System.Drawing.Point(119, 27);
- this.txt_TaskRecordId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_TaskRecordId.Name = "txt_TaskRecordId";
- this.txt_TaskRecordId.ReadOnly = true;
- this.txt_TaskRecordId.Size = new System.Drawing.Size(180, 21);
- this.txt_TaskRecordId.TabIndex = 5;
- //
- // txt_OrderId
- //
- this.txt_OrderId.Location = new System.Drawing.Point(119, 4);
- this.txt_OrderId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_OrderId.Name = "txt_OrderId";
- this.txt_OrderId.ReadOnly = true;
- this.txt_OrderId.Size = new System.Drawing.Size(180, 21);
- this.txt_OrderId.TabIndex = 0;
- //
- // ultraLabel22
- //
- this.ultraLabel22.AutoSize = true;
- this.ultraLabel22.Location = new System.Drawing.Point(713, 121);
- this.ultraLabel22.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel22.TabIndex = 23;
- this.ultraLabel22.Text = "签订地点";
- //
- // ultraLabel23
- //
- this.ultraLabel23.AutoSize = true;
- this.ultraLabel23.Location = new System.Drawing.Point(61, 75);
- this.ultraLabel23.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel23.TabIndex = 22;
- this.ultraLabel23.Text = "合同类别";
- //
- // ultraLabel16
- //
- this.ultraLabel16.AutoSize = true;
- this.ultraLabel16.Location = new System.Drawing.Point(86, 121);
- this.ultraLabel16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel16.TabIndex = 19;
- this.ultraLabel16.Text = "买方";
- //
- // ultraLabel19
- //
- this.ultraLabel19.AutoSize = true;
- this.ultraLabel19.Location = new System.Drawing.Point(725, 144);
- this.ultraLabel19.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel19.TabIndex = 16;
- this.ultraLabel19.Text = "业务员";
- //
- // ultraLabel11
- //
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(381, 75);
- this.ultraLabel11.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel11.TabIndex = 14;
- this.ultraLabel11.Text = "含税金额";
- //
- // ultraLabel12
- //
- this.ultraLabel12.AutoSize = true;
- this.ultraLabel12.Location = new System.Drawing.Point(393, 121);
- this.ultraLabel12.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel12.TabIndex = 13;
- this.ultraLabel12.Text = "预付款";
- //
- // ultraLabel13
- //
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(713, 98);
- this.ultraLabel13.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel13.TabIndex = 12;
- this.ultraLabel13.Text = "录入日期";
- //
- // ultraLabel14
- //
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(713, 75);
- this.ultraLabel14.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel14.TabIndex = 11;
- this.ultraLabel14.Text = "签订日期";
- //
- // ultraLabel6
- //
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(369, 52);
- this.ultraLabel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel6.TabIndex = 9;
- this.ultraLabel6.Text = "不含税金额";
- //
- // ultraLabel8
- //
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(688, 6);
- this.ultraLabel8.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel8.TabIndex = 7;
- this.ultraLabel8.Text = "当前兑换汇率";
- //
- // ultraLabel9
- //
- this.ultraLabel9.AutoSize = true;
- this.ultraLabel9.Location = new System.Drawing.Point(73, 144);
- this.ultraLabel9.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel9.TabIndex = 6;
- this.ultraLabel9.Text = "供应商";
- //
- // ultraLabel10
- //
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(61, 98);
- this.ultraLabel10.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel10.TabIndex = 5;
- this.ultraLabel10.Text = "合同模板";
- //
- // ultraLabel5
- //
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(61, 52);
- this.ultraLabel5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel5.TabIndex = 4;
- this.ultraLabel5.Text = "合同分类";
- //
- // ultraLabel4
- //
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(381, 29);
- this.ultraLabel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel4.TabIndex = 3;
- this.ultraLabel4.Text = "合同税率";
- //
- // ultraLabel3
- //
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(356, 6);
- 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 = 2;
- this.ultraLabel3.Text = "合同货币代码";
- //
- // ultraLabel2
- //
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(49, 29);
- this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel2.TabIndex = 1;
- this.ultraLabel2.Text = "采购纪要号";
- //
- // ultraLabel1
- //
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(73, 6);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "合同号";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.txt_TaxAmt2);
- this.ultraTabPageControl2.Controls.Add(this.txt_WithoutTaxAmt2);
- this.ultraTabPageControl2.Controls.Add(this.txt_PriceWithTax);
- this.ultraTabPageControl2.Controls.Add(this.txt_PriceWithoutTax);
- this.ultraTabPageControl2.Controls.Add(this.txt_Qty);
- this.ultraTabPageControl2.Controls.Add(this.txt_WithAmtTax2);
- this.ultraTabPageControl2.Controls.Add(this.txt_paymentType);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel21);
- this.ultraTabPageControl2.Controls.Add(this.txt_packType);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel20);
- this.ultraTabPageControl2.Controls.Add(this.txt_purstandardscode);
- this.ultraTabPageControl2.Controls.Add(this.txt_UNIT);
- this.ultraTabPageControl2.Controls.Add(this.txt_WEIGHTUNIT);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel76);
- this.ultraTabPageControl2.Controls.Add(this.txt_Remark);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel75);
- this.ultraTabPageControl2.Controls.Add(this.txt_itemAttrName);
- this.ultraTabPageControl2.Controls.Add(this.currencyLabel63);
- this.ultraTabPageControl2.Controls.Add(this.currencyLabel64);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel72);
- this.ultraTabPageControl2.Controls.Add(this.txt_Pur_Clause);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel70);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel69);
- this.ultraTabPageControl2.Controls.Add(this.currencyLabel65);
- this.ultraTabPageControl2.Controls.Add(this.currencyLabel66);
- this.ultraTabPageControl2.Controls.Add(this.currencyLabel62);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel63);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel57);
- this.ultraTabPageControl2.Controls.Add(this.txt_ItemUomConefficient);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel58);
- this.ultraTabPageControl2.Controls.Add(this.ultraTextEditor6);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel61);
- this.ultraTabPageControl2.Controls.Add(this.txt_EndDate2);
- this.ultraTabPageControl2.Controls.Add(this.txt_StartDate2);
- this.ultraTabPageControl2.Controls.Add(this.txt_ReceiveType);
- this.ultraTabPageControl2.Controls.Add(this.txt_QuantityPriceNum);
- this.ultraTabPageControl2.Controls.Add(this.txt_GradePriceNo);
- this.ultraTabPageControl2.Controls.Add(this.txt_ChemPriceNo);
- this.ultraTabPageControl2.Controls.Add(this.txt_BuyerName2);
- this.ultraTabPageControl2.Controls.Add(this.txt_DelvryRangeMin);
- this.ultraTabPageControl2.Controls.Add(this.txt_ItemName);
- this.ultraTabPageControl2.Controls.Add(this.txt_ItemCode);
- this.ultraTabPageControl2.Controls.Add(this.txt_OrderLineSqe);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel59);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel49);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel51);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel53);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel43);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel44);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel45);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel47);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel36);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel37);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel39);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel33);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel34);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel27);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel25);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel24);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(670, 174);
- //
- // txt_TaxAmt2
- //
- this.txt_TaxAmt2.Location = new System.Drawing.Point(454, 148);
- this.txt_TaxAmt2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_TaxAmt2.MaskInput = "{double:9.2}";
- this.txt_TaxAmt2.Name = "txt_TaxAmt2";
- this.txt_TaxAmt2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_TaxAmt2.ReadOnly = true;
- this.txt_TaxAmt2.Size = new System.Drawing.Size(178, 21);
- this.txt_TaxAmt2.TabIndex = 114;
- //
- // txt_WithoutTaxAmt2
- //
- this.txt_WithoutTaxAmt2.Location = new System.Drawing.Point(454, 100);
- this.txt_WithoutTaxAmt2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_WithoutTaxAmt2.MaskInput = "{double:9.2}";
- this.txt_WithoutTaxAmt2.Name = "txt_WithoutTaxAmt2";
- this.txt_WithoutTaxAmt2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_WithoutTaxAmt2.ReadOnly = true;
- this.txt_WithoutTaxAmt2.Size = new System.Drawing.Size(178, 21);
- this.txt_WithoutTaxAmt2.TabIndex = 113;
- //
- // txt_PriceWithTax
- //
- this.txt_PriceWithTax.Location = new System.Drawing.Point(454, 76);
- this.txt_PriceWithTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_PriceWithTax.MaskInput = "{double:9.2}";
- this.txt_PriceWithTax.Name = "txt_PriceWithTax";
- this.txt_PriceWithTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_PriceWithTax.ReadOnly = true;
- this.txt_PriceWithTax.Size = new System.Drawing.Size(178, 21);
- this.txt_PriceWithTax.TabIndex = 112;
- //
- // txt_PriceWithoutTax
- //
- this.txt_PriceWithoutTax.Location = new System.Drawing.Point(454, 52);
- this.txt_PriceWithoutTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_PriceWithoutTax.MaskInput = "{double:9.2}";
- this.txt_PriceWithoutTax.Name = "txt_PriceWithoutTax";
- this.txt_PriceWithoutTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_PriceWithoutTax.ReadOnly = true;
- this.txt_PriceWithoutTax.Size = new System.Drawing.Size(178, 21);
- this.txt_PriceWithoutTax.TabIndex = 111;
- this.txt_PriceWithoutTax.ValueChanged += new System.EventHandler(this.txt_PriceWithoutTax_ValueChanged);
- //
- // txt_Qty
- //
- this.txt_Qty.Location = new System.Drawing.Point(454, 4);
- this.txt_Qty.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_Qty.MaskInput = "{double:9.2}";
- this.txt_Qty.Name = "txt_Qty";
- this.txt_Qty.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_Qty.Size = new System.Drawing.Size(178, 21);
- this.txt_Qty.TabIndex = 110;
- this.txt_Qty.ValueChanged += new System.EventHandler(this.txt_QtyOrder_ValueChanged);
- //
- // txt_WithAmtTax2
- //
- this.txt_WithAmtTax2.Location = new System.Drawing.Point(454, 124);
- this.txt_WithAmtTax2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
- this.txt_WithAmtTax2.MaskInput = "{double:9.2}";
- this.txt_WithAmtTax2.Name = "txt_WithAmtTax2";
- this.txt_WithAmtTax2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_WithAmtTax2.ReadOnly = true;
- this.txt_WithAmtTax2.Size = new System.Drawing.Size(178, 21);
- this.txt_WithAmtTax2.TabIndex = 109;
- //
- // txt_paymentType
- //
- this.txt_paymentType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_paymentType.Location = new System.Drawing.Point(819, 76);
- this.txt_paymentType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_paymentType.Name = "txt_paymentType";
- this.txt_paymentType.Size = new System.Drawing.Size(180, 21);
- this.txt_paymentType.TabIndex = 107;
- //
- // ultraLabel21
- //
- this.ultraLabel21.AutoSize = true;
- this.ultraLabel21.Location = new System.Drawing.Point(758, 78);
- this.ultraLabel21.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel21.TabIndex = 108;
- this.ultraLabel21.Text = "付款方式";
- //
- // txt_packType
- //
- this.txt_packType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_packType.Location = new System.Drawing.Point(819, 52);
- this.txt_packType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_packType.Name = "txt_packType";
- this.txt_packType.Size = new System.Drawing.Size(180, 21);
- this.txt_packType.TabIndex = 105;
- //
- // ultraLabel20
- //
- this.ultraLabel20.AutoSize = true;
- this.ultraLabel20.Location = new System.Drawing.Point(758, 54);
- this.ultraLabel20.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel20.TabIndex = 106;
- this.ultraLabel20.Text = "包装类型";
- //
- // txt_purstandardscode
- //
- this.txt_purstandardscode.Location = new System.Drawing.Point(112, 100);
- this.txt_purstandardscode.Name = "txt_purstandardscode";
- this.txt_purstandardscode.ReadOnly = true;
- this.txt_purstandardscode.Size = new System.Drawing.Size(178, 21);
- this.txt_purstandardscode.TabIndex = 104;
- //
- // txt_UNIT
- //
- this.txt_UNIT.AutoSize = true;
- this.txt_UNIT.Location = new System.Drawing.Point(642, 7);
- this.txt_UNIT.Name = "txt_UNIT";
- this.txt_UNIT.Size = new System.Drawing.Size(11, 12);
- this.txt_UNIT.TabIndex = 103;
- this.txt_UNIT.Text = "-";
- //
- // txt_WEIGHTUNIT
- //
- this.txt_WEIGHTUNIT.AutoSize = true;
- this.txt_WEIGHTUNIT.Location = new System.Drawing.Point(642, 34);
- this.txt_WEIGHTUNIT.Name = "txt_WEIGHTUNIT";
- this.txt_WEIGHTUNIT.Size = new System.Drawing.Size(11, 12);
- this.txt_WEIGHTUNIT.TabIndex = 102;
- this.txt_WEIGHTUNIT.Text = "-";
- //
- // ultraLabel76
- //
- this.ultraLabel76.AutoSize = true;
- this.ultraLabel76.Location = new System.Drawing.Point(783, 102);
- this.ultraLabel76.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel76.Name = "ultraLabel76";
- this.ultraLabel76.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel76.TabIndex = 101;
- this.ultraLabel76.Text = "备注";
- //
- // txt_Remark
- //
- this.txt_Remark.Location = new System.Drawing.Point(819, 101);
- this.txt_Remark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_Remark.Multiline = true;
- this.txt_Remark.Name = "txt_Remark";
- this.txt_Remark.Size = new System.Drawing.Size(180, 68);
- this.txt_Remark.TabIndex = 100;
- //
- // ultraLabel75
- //
- this.ultraLabel75.AutoSize = true;
- this.ultraLabel75.Location = new System.Drawing.Point(51, 78);
- this.ultraLabel75.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel75.Name = "ultraLabel75";
- this.ultraLabel75.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel75.TabIndex = 97;
- this.ultraLabel75.Text = "属性名称";
- //
- // txt_itemAttrName
- //
- this.txt_itemAttrName.Location = new System.Drawing.Point(112, 76);
- this.txt_itemAttrName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_itemAttrName.Name = "txt_itemAttrName";
- this.txt_itemAttrName.ReadOnly = true;
- this.txt_itemAttrName.Size = new System.Drawing.Size(178, 21);
- this.txt_itemAttrName.TabIndex = 96;
- //
- // currencyLabel63
- //
- appearance43.FontData.BoldAsString = "False";
- this.currencyLabel63.Appearance = appearance43;
- this.currencyLabel63.AutoSize = true;
- this.currencyLabel63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencyLabel63.Location = new System.Drawing.Point(642, 81);
- this.currencyLabel63.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencyLabel63.Name = "currencyLabel63";
- this.currencyLabel63.Size = new System.Drawing.Size(11, 14);
- this.currencyLabel63.TabIndex = 95;
- this.currencyLabel63.Text = "-";
- //
- // currencyLabel64
- //
- appearance42.FontData.BoldAsString = "False";
- this.currencyLabel64.Appearance = appearance42;
- this.currencyLabel64.AutoSize = true;
- this.currencyLabel64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencyLabel64.Location = new System.Drawing.Point(642, 106);
- this.currencyLabel64.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencyLabel64.Name = "currencyLabel64";
- this.currencyLabel64.Size = new System.Drawing.Size(11, 14);
- this.currencyLabel64.TabIndex = 94;
- this.currencyLabel64.Text = "-";
- //
- // ultraLabel72
- //
- this.ultraLabel72.AutoSize = true;
- this.ultraLabel72.Location = new System.Drawing.Point(394, 78);
- this.ultraLabel72.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel72.Name = "ultraLabel72";
- this.ultraLabel72.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel72.TabIndex = 93;
- this.ultraLabel72.Text = "含税单价";
- //
- // txt_Pur_Clause
- //
- this.txt_Pur_Clause.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_Pur_Clause.Location = new System.Drawing.Point(819, 4);
- this.txt_Pur_Clause.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_Pur_Clause.Name = "txt_Pur_Clause";
- this.txt_Pur_Clause.Size = new System.Drawing.Size(180, 21);
- this.txt_Pur_Clause.TabIndex = 92;
- //
- // ultraLabel70
- //
- this.ultraLabel70.AutoSize = true;
- this.ultraLabel70.Location = new System.Drawing.Point(758, 6);
- this.ultraLabel70.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel70.Name = "ultraLabel70";
- this.ultraLabel70.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel70.TabIndex = 91;
- this.ultraLabel70.Text = "结算条款";
- //
- // ultraLabel69
- //
- this.ultraLabel69.AutoSize = true;
- this.ultraLabel69.Location = new System.Drawing.Point(51, 102);
- this.ultraLabel69.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel69.Name = "ultraLabel69";
- this.ultraLabel69.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel69.TabIndex = 89;
- this.ultraLabel69.Text = "标准名称";
- //
- // currencyLabel65
- //
- appearance41.FontData.BoldAsString = "False";
- this.currencyLabel65.Appearance = appearance41;
- this.currencyLabel65.AutoSize = true;
- this.currencyLabel65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencyLabel65.Location = new System.Drawing.Point(642, 128);
- this.currencyLabel65.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencyLabel65.Name = "currencyLabel65";
- this.currencyLabel65.Size = new System.Drawing.Size(11, 14);
- this.currencyLabel65.TabIndex = 88;
- this.currencyLabel65.Text = "-";
- //
- // currencyLabel66
- //
- appearance40.FontData.BoldAsString = "False";
- this.currencyLabel66.Appearance = appearance40;
- this.currencyLabel66.AutoSize = true;
- this.currencyLabel66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencyLabel66.Location = new System.Drawing.Point(642, 151);
- this.currencyLabel66.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencyLabel66.Name = "currencyLabel66";
- this.currencyLabel66.Size = new System.Drawing.Size(11, 14);
- this.currencyLabel66.TabIndex = 87;
- this.currencyLabel66.Text = "-";
- //
- // currencyLabel62
- //
- appearance44.FontData.BoldAsString = "False";
- this.currencyLabel62.Appearance = appearance44;
- this.currencyLabel62.AutoSize = true;
- this.currencyLabel62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.currencyLabel62.Location = new System.Drawing.Point(642, 55);
- this.currencyLabel62.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.currencyLabel62.Name = "currencyLabel62";
- this.currencyLabel62.Size = new System.Drawing.Size(11, 14);
- this.currencyLabel62.TabIndex = 86;
- this.currencyLabel62.Text = "-";
- //
- // ultraLabel63
- //
- this.ultraLabel63.AutoSize = true;
- this.ultraLabel63.Location = new System.Drawing.Point(1048, 49);
- this.ultraLabel63.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel63.Name = "ultraLabel63";
- this.ultraLabel63.Size = new System.Drawing.Size(0, 0);
- this.ultraLabel63.TabIndex = 84;
- //
- // ultraLabel57
- //
- this.ultraLabel57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel57.Location = new System.Drawing.Point(550, 34);
- this.ultraLabel57.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel57.Name = "ultraLabel57";
- this.ultraLabel57.Size = new System.Drawing.Size(13, 13);
- this.ultraLabel57.TabIndex = 79;
- this.ultraLabel57.Text = "=";
- //
- // txt_ItemUomConefficient
- //
- appearance23.TextHAlignAsString = "Right";
- this.txt_ItemUomConefficient.Appearance = appearance23;
- this.txt_ItemUomConefficient.Location = new System.Drawing.Point(487, 28);
- this.txt_ItemUomConefficient.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ItemUomConefficient.Name = "txt_ItemUomConefficient";
- this.txt_ItemUomConefficient.ReadOnly = true;
- this.txt_ItemUomConefficient.Size = new System.Drawing.Size(52, 21);
- this.txt_ItemUomConefficient.TabIndex = 78;
- //
- // ultraLabel58
- //
- this.ultraLabel58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraLabel58.Location = new System.Drawing.Point(459, 33);
- this.ultraLabel58.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel58.Name = "ultraLabel58";
- this.ultraLabel58.Size = new System.Drawing.Size(17, 13);
- this.ultraLabel58.TabIndex = 77;
- this.ultraLabel58.Text = "×";
- //
- // ultraTextEditor6
- //
- appearance24.TextHAlignAsString = "Right";
- this.ultraTextEditor6.Appearance = appearance24;
- this.ultraTextEditor6.Location = new System.Drawing.Point(575, 28);
- this.ultraTextEditor6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.ReadOnly = true;
- this.ultraTextEditor6.Size = new System.Drawing.Size(57, 21);
- this.ultraTextEditor6.TabIndex = 76;
- //
- // ultraLabel61
- //
- this.ultraLabel61.AutoSize = true;
- this.ultraLabel61.Location = new System.Drawing.Point(393, 30);
- this.ultraLabel61.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel61.Name = "ultraLabel61";
- this.ultraLabel61.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel61.TabIndex = 75;
- this.ultraLabel61.Text = "库存数量";
- //
- // txt_EndDate2
- //
- this.txt_EndDate2.DateButtons.Add(dateButton3);
- this.txt_EndDate2.Location = new System.Drawing.Point(112, 124);
- this.txt_EndDate2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_EndDate2.Name = "txt_EndDate2";
- this.txt_EndDate2.NonAutoSizeHeight = 25;
- this.txt_EndDate2.Size = new System.Drawing.Size(178, 21);
- this.txt_EndDate2.TabIndex = 13;
- this.txt_EndDate2.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- //
- // txt_StartDate2
- //
- this.txt_StartDate2.DateButtons.Add(dateButton4);
- this.txt_StartDate2.Location = new System.Drawing.Point(1116, 33);
- this.txt_StartDate2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_StartDate2.Name = "txt_StartDate2";
- this.txt_StartDate2.NonAutoSizeHeight = 25;
- this.txt_StartDate2.Size = new System.Drawing.Size(178, 21);
- this.txt_StartDate2.TabIndex = 12;
- this.txt_StartDate2.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- this.txt_StartDate2.Visible = false;
- //
- // txt_ReceiveType
- //
- this.txt_ReceiveType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_ReceiveType.Location = new System.Drawing.Point(819, 28);
- this.txt_ReceiveType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ReceiveType.Name = "txt_ReceiveType";
- this.txt_ReceiveType.Size = new System.Drawing.Size(180, 21);
- this.txt_ReceiveType.TabIndex = 3;
- //
- // txt_QuantityPriceNum
- //
- this.txt_QuantityPriceNum.Location = new System.Drawing.Point(1897, 2);
- this.txt_QuantityPriceNum.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_QuantityPriceNum.Name = "txt_QuantityPriceNum";
- this.txt_QuantityPriceNum.Size = new System.Drawing.Size(80, 21);
- this.txt_QuantityPriceNum.TabIndex = 66;
- this.txt_QuantityPriceNum.Visible = false;
- //
- // txt_GradePriceNo
- //
- this.txt_GradePriceNo.Location = new System.Drawing.Point(1694, 0);
- this.txt_GradePriceNo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_GradePriceNo.Name = "txt_GradePriceNo";
- this.txt_GradePriceNo.Size = new System.Drawing.Size(86, 21);
- this.txt_GradePriceNo.TabIndex = 60;
- this.txt_GradePriceNo.Visible = false;
- //
- // txt_ChemPriceNo
- //
- this.txt_ChemPriceNo.Location = new System.Drawing.Point(1495, 2);
- this.txt_ChemPriceNo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ChemPriceNo.Name = "txt_ChemPriceNo";
- this.txt_ChemPriceNo.Size = new System.Drawing.Size(88, 21);
- this.txt_ChemPriceNo.TabIndex = 54;
- this.txt_ChemPriceNo.Visible = false;
- //
- // txt_BuyerName2
- //
- this.txt_BuyerName2.Location = new System.Drawing.Point(112, 148);
- this.txt_BuyerName2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_BuyerName2.Name = "txt_BuyerName2";
- this.txt_BuyerName2.ReadOnly = true;
- this.txt_BuyerName2.Size = new System.Drawing.Size(178, 21);
- this.txt_BuyerName2.TabIndex = 2;
- //
- // txt_DelvryRangeMin
- //
- this.txt_DelvryRangeMin.Location = new System.Drawing.Point(1460, 114);
- this.txt_DelvryRangeMin.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_DelvryRangeMin.Name = "txt_DelvryRangeMin";
- this.txt_DelvryRangeMin.Size = new System.Drawing.Size(81, 21);
- this.txt_DelvryRangeMin.TabIndex = 52;
- this.txt_DelvryRangeMin.Visible = false;
- //
- // txt_ItemName
- //
- this.txt_ItemName.Location = new System.Drawing.Point(112, 52);
- this.txt_ItemName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ItemName.Name = "txt_ItemName";
- this.txt_ItemName.ReadOnly = true;
- this.txt_ItemName.Size = new System.Drawing.Size(178, 21);
- this.txt_ItemName.TabIndex = 1;
- //
- // txt_ItemCode
- //
- appearance16.FontData.BoldAsString = "True";
- editorButton4.Appearance = appearance16;
- editorButton4.Text = "+";
- this.txt_ItemCode.ButtonsRight.Add(editorButton4);
- this.txt_ItemCode.Location = new System.Drawing.Point(112, 28);
- this.txt_ItemCode.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_ItemCode.Name = "txt_ItemCode";
- this.txt_ItemCode.Size = new System.Drawing.Size(178, 21);
- this.txt_ItemCode.TabIndex = 5;
- this.txt_ItemCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemCode_EditorButtonClick);
- //
- // txt_OrderLineSqe
- //
- this.txt_OrderLineSqe.Location = new System.Drawing.Point(112, 4);
- this.txt_OrderLineSqe.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_OrderLineSqe.Name = "txt_OrderLineSqe";
- this.txt_OrderLineSqe.ReadOnly = true;
- this.txt_OrderLineSqe.Size = new System.Drawing.Size(178, 21);
- this.txt_OrderLineSqe.TabIndex = 0;
- //
- // ultraLabel59
- //
- this.ultraLabel59.AutoSize = true;
- this.ultraLabel59.Location = new System.Drawing.Point(1790, 3);
- this.ultraLabel59.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel59.Name = "ultraLabel59";
- this.ultraLabel59.Size = new System.Drawing.Size(103, 16);
- this.ultraLabel59.TabIndex = 30;
- this.ultraLabel59.Text = "保量加价标准编号";
- this.ultraLabel59.Visible = false;
- //
- // ultraLabel49
- //
- this.ultraLabel49.AutoSize = true;
- this.ultraLabel49.Location = new System.Drawing.Point(26, 126);
- this.ultraLabel49.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel49.Name = "ultraLabel49";
- this.ultraLabel49.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel49.TabIndex = 28;
- this.ultraLabel49.Text = "要求到货时间";
- //
- // ultraLabel51
- //
- this.ultraLabel51.AutoSize = true;
- this.ultraLabel51.Location = new System.Drawing.Point(382, 126);
- this.ultraLabel51.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel51.Name = "ultraLabel51";
- this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel51.TabIndex = 26;
- this.ultraLabel51.Text = "含税总金额";
- //
- // ultraLabel53
- //
- this.ultraLabel53.AutoSize = true;
- this.ultraLabel53.Location = new System.Drawing.Point(1593, 2);
- this.ultraLabel53.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel53.Name = "ultraLabel53";
- this.ultraLabel53.Size = new System.Drawing.Size(103, 16);
- this.ultraLabel53.TabIndex = 24;
- this.ultraLabel53.Text = "品级计价标准编号";
- this.ultraLabel53.Visible = false;
- //
- // ultraLabel43
- //
- this.ultraLabel43.AutoSize = true;
- this.ultraLabel43.Location = new System.Drawing.Point(1030, 35);
- this.ultraLabel43.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel43.TabIndex = 22;
- this.ultraLabel43.Text = "要求发货时间";
- this.ultraLabel43.Visible = false;
- //
- // ultraLabel44
- //
- this.ultraLabel44.AutoSize = true;
- this.ultraLabel44.Location = new System.Drawing.Point(758, 30);
- this.ultraLabel44.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel44.TabIndex = 21;
- this.ultraLabel44.Text = "接收方式";
- //
- // ultraLabel45
- //
- this.ultraLabel45.AutoSize = true;
- this.ultraLabel45.Location = new System.Drawing.Point(382, 102);
- this.ultraLabel45.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel45.TabIndex = 20;
- this.ultraLabel45.Text = "不含总金额";
- //
- // ultraLabel47
- //
- this.ultraLabel47.AutoSize = true;
- this.ultraLabel47.Location = new System.Drawing.Point(1391, 5);
- this.ultraLabel47.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(103, 16);
- this.ultraLabel47.TabIndex = 18;
- this.ultraLabel47.Text = "成分计价标准编号";
- this.ultraLabel47.Visible = false;
- //
- // ultraLabel36
- //
- this.ultraLabel36.AutoSize = true;
- this.ultraLabel36.Location = new System.Drawing.Point(63, 150);
- this.ultraLabel36.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel36.Name = "ultraLabel36";
- this.ultraLabel36.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel36.TabIndex = 17;
- this.ultraLabel36.Text = "业务员";
- //
- // ultraLabel37
- //
- this.ultraLabel37.AutoSize = true;
- this.ultraLabel37.Location = new System.Drawing.Point(1380, 115);
- this.ultraLabel37.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel37.TabIndex = 16;
- this.ultraLabel37.Text = "交货量差下限";
- this.ultraLabel37.Visible = false;
- //
- // ultraLabel39
- //
- this.ultraLabel39.AutoSize = true;
- this.ultraLabel39.Location = new System.Drawing.Point(394, 150);
- this.ultraLabel39.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel39.TabIndex = 14;
- this.ultraLabel39.Text = "合同税额";
- //
- // ultraLabel33
- //
- this.ultraLabel33.AutoSize = true;
- this.ultraLabel33.Location = new System.Drawing.Point(393, 6);
- this.ultraLabel33.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel33.Name = "ultraLabel33";
- this.ultraLabel33.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel33.TabIndex = 8;
- this.ultraLabel33.Text = "采购数量";
- //
- // ultraLabel34
- //
- this.ultraLabel34.AutoSize = true;
- this.ultraLabel34.Location = new System.Drawing.Point(51, 54);
- this.ultraLabel34.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel34.Name = "ultraLabel34";
- this.ultraLabel34.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel34.TabIndex = 7;
- this.ultraLabel34.Text = "物料名称";
- //
- // ultraLabel27
- //
- this.ultraLabel27.AutoSize = true;
- this.ultraLabel27.Location = new System.Drawing.Point(382, 54);
- this.ultraLabel27.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel27.TabIndex = 3;
- this.ultraLabel27.Text = "不含税单价";
- //
- // ultraLabel25
- //
- this.ultraLabel25.AutoSize = true;
- this.ultraLabel25.Location = new System.Drawing.Point(51, 30);
- this.ultraLabel25.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel25.TabIndex = 1;
- this.ultraLabel25.Text = "物料编码";
- //
- // ultraLabel24
- //
- this.ultraLabel24.AutoSize = true;
- this.ultraLabel24.Location = new System.Drawing.Point(51, 6);
- this.ultraLabel24.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel24.TabIndex = 0;
- this.ultraLabel24.Text = "合同行号";
- //
- // ultraTabPageControl7
- //
- this.ultraTabPageControl7.Controls.Add(this.label4);
- this.ultraTabPageControl7.Controls.Add(this.txt_askDeliveryDateStart);
- this.ultraTabPageControl7.Controls.Add(this.ultraLabel30);
- this.ultraTabPageControl7.Controls.Add(this.label2);
- this.ultraTabPageControl7.Controls.Add(this.ultraLabel29);
- this.ultraTabPageControl7.Controls.Add(this.txt_askDeliveryDateEnd);
- this.ultraTabPageControl7.Controls.Add(this.ultraLabel17);
- this.ultraTabPageControl7.Controls.Add(this.txt_CD_Qty);
- this.ultraTabPageControl7.Controls.Add(this.label3);
- this.ultraTabPageControl7.Controls.Add(this.txt_orderCD_Remark);
- this.ultraTabPageControl7.Controls.Add(this.label1);
- this.ultraTabPageControl7.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl7.Name = "ultraTabPageControl7";
- this.ultraTabPageControl7.Size = new System.Drawing.Size(670, 174);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.ForeColor = System.Drawing.Color.Red;
- this.label4.Location = new System.Drawing.Point(320, 48);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(53, 12);
- this.label4.TabIndex = 23;
- this.label4.Text = "无效交期";
- //
- // txt_askDeliveryDateStart
- //
- appearance45.TextHAlignAsString = "Right";
- this.txt_askDeliveryDateStart.Appearance = appearance45;
- this.txt_askDeliveryDateStart.DateButtons.Add(dateButton5);
- this.txt_askDeliveryDateStart.Location = new System.Drawing.Point(133, 45);
- this.txt_askDeliveryDateStart.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_askDeliveryDateStart.Name = "txt_askDeliveryDateStart";
- this.txt_askDeliveryDateStart.NonAutoSizeHeight = 25;
- this.txt_askDeliveryDateStart.Size = new System.Drawing.Size(180, 21);
- this.txt_askDeliveryDateStart.TabIndex = 22;
- this.txt_askDeliveryDateStart.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- this.txt_askDeliveryDateStart.ValueChanged += new System.EventHandler(this.txt_askDeliveryDateStart_ValueChanged);
- //
- // ultraLabel30
- //
- this.ultraLabel30.AutoSize = true;
- this.ultraLabel30.Location = new System.Drawing.Point(50, 47);
- this.ultraLabel30.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel30.Name = "ultraLabel30";
- this.ultraLabel30.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel30.TabIndex = 21;
- this.ultraLabel30.Text = "要求发货时间";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.ForeColor = System.Drawing.Color.Red;
- this.label2.Location = new System.Drawing.Point(320, 77);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 20;
- this.label2.Text = "无效交期";
- //
- // ultraLabel29
- //
- this.ultraLabel29.AutoSize = true;
- this.ultraLabel29.Location = new System.Drawing.Point(75, 101);
- this.ultraLabel29.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel29.Name = "ultraLabel29";
- this.ultraLabel29.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel29.TabIndex = 19;
- this.ultraLabel29.Text = "备 注";
- //
- // txt_askDeliveryDateEnd
- //
- appearance46.TextHAlignAsString = "Right";
- this.txt_askDeliveryDateEnd.Appearance = appearance46;
- this.txt_askDeliveryDateEnd.DateButtons.Add(dateButton6);
- this.txt_askDeliveryDateEnd.Location = new System.Drawing.Point(133, 72);
- this.txt_askDeliveryDateEnd.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_askDeliveryDateEnd.Name = "txt_askDeliveryDateEnd";
- this.txt_askDeliveryDateEnd.NonAutoSizeHeight = 25;
- this.txt_askDeliveryDateEnd.Size = new System.Drawing.Size(180, 21);
- this.txt_askDeliveryDateEnd.TabIndex = 18;
- this.txt_askDeliveryDateEnd.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
- this.txt_askDeliveryDateEnd.ValueChanged += new System.EventHandler(this.txt_askDeliveryDateEnd_ValueChanged);
- //
- // ultraLabel17
- //
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(50, 75);
- this.ultraLabel17.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(79, 16);
- this.ultraLabel17.TabIndex = 17;
- this.ultraLabel17.Text = "要求到货时间";
- //
- // txt_CD_Qty
- //
- this.txt_CD_Qty.Location = new System.Drawing.Point(133, 18);
- this.txt_CD_Qty.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiteralsWithPadding;
- this.txt_CD_Qty.MaskInput = "{double:9.2}";
- this.txt_CD_Qty.MinValue = 0D;
- this.txt_CD_Qty.Name = "txt_CD_Qty";
- this.txt_CD_Qty.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_CD_Qty.Size = new System.Drawing.Size(180, 21);
- this.txt_CD_Qty.TabIndex = 10;
- this.txt_CD_Qty.ValueChanged += new System.EventHandler(this.txt_CD_Qty_ValueChanged);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.ForeColor = System.Drawing.Color.Red;
- this.label3.Location = new System.Drawing.Point(320, 22);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(89, 12);
- this.label3.TabIndex = 9;
- this.label3.Text = "剩余可编制数量";
- //
- // txt_orderCD_Remark
- //
- this.txt_orderCD_Remark.Location = new System.Drawing.Point(133, 99);
- this.txt_orderCD_Remark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_orderCD_Remark.Multiline = true;
- this.txt_orderCD_Remark.Name = "txt_orderCD_Remark";
- this.txt_orderCD_Remark.Size = new System.Drawing.Size(180, 69);
- this.txt_orderCD_Remark.TabIndex = 7;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(76, 23);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(53, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "编制数量";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(670, 174);
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.ultraGroupBox2);
- this.ultraTabPageControl4.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 23);
- this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(1344, 129);
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(748, 129);
- this.ultraGroupBox2.TabIndex = 3;
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- appearance22.BackColor = System.Drawing.SystemColors.Window;
- appearance22.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance22;
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.Hidden = true;
- ultraGridColumn2.Header.VisiblePosition = 7;
- ultraGridColumn3.Header.VisiblePosition = 9;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn4.Header.VisiblePosition = 10;
- ultraGridColumn4.Hidden = true;
- ultraGridColumn5.Header.VisiblePosition = 11;
- ultraGridColumn6.Header.VisiblePosition = 30;
- ultraGridColumn6.Hidden = true;
- ultraGridColumn7.Header.Caption = "物料名称";
- ultraGridColumn7.Header.VisiblePosition = 1;
- ultraGridColumn7.Width = 161;
- ultraGridColumn8.Header.VisiblePosition = 60;
- ultraGridColumn8.Hidden = true;
- ultraGridColumn9.Header.VisiblePosition = 31;
- ultraGridColumn9.Hidden = true;
- ultraGridColumn10.Header.VisiblePosition = 24;
- ultraGridColumn10.Hidden = true;
- ultraGridColumn11.Header.Caption = "采购数量";
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn11.Width = 89;
- ultraGridColumn12.Header.VisiblePosition = 29;
- ultraGridColumn12.Hidden = true;
- ultraGridColumn13.Header.VisiblePosition = 15;
- ultraGridColumn14.Header.VisiblePosition = 26;
- ultraGridColumn15.Header.VisiblePosition = 16;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn16.Header.VisiblePosition = 25;
- ultraGridColumn17.Header.VisiblePosition = 27;
- ultraGridColumn17.Hidden = true;
- ultraGridColumn18.Header.VisiblePosition = 28;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn19.Header.VisiblePosition = 32;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn20.Header.VisiblePosition = 33;
- ultraGridColumn21.Header.VisiblePosition = 34;
- ultraGridColumn22.Header.VisiblePosition = 35;
- ultraGridColumn23.Header.VisiblePosition = 17;
- ultraGridColumn24.Header.VisiblePosition = 14;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn25.Header.VisiblePosition = 36;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn26.Header.VisiblePosition = 37;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn27.Header.VisiblePosition = 38;
- ultraGridColumn27.Hidden = true;
- ultraGridColumn28.Header.VisiblePosition = 39;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn29.Header.VisiblePosition = 40;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn30.Header.VisiblePosition = 41;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn31.Header.VisiblePosition = 18;
- ultraGridColumn32.Header.VisiblePosition = 3;
- ultraGridColumn32.Width = 88;
- ultraGridColumn33.Header.VisiblePosition = 21;
- ultraGridColumn34.Header.VisiblePosition = 19;
- ultraGridColumn35.Header.VisiblePosition = 20;
- ultraGridColumn36.Header.VisiblePosition = 22;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.Header.VisiblePosition = 23;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 44;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn39.Header.VisiblePosition = 45;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn40.Header.VisiblePosition = 49;
- ultraGridColumn41.Header.VisiblePosition = 55;
- ultraGridColumn41.Hidden = true;
- ultraGridColumn42.Header.VisiblePosition = 47;
- ultraGridColumn43.Header.VisiblePosition = 48;
- ultraGridColumn44.Header.VisiblePosition = 51;
- ultraGridColumn45.Header.VisiblePosition = 52;
- ultraGridColumn46.Format = "yyyy/MM/dd";
- ultraGridColumn46.Header.VisiblePosition = 5;
- ultraGridColumn46.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Date;
- ultraGridColumn47.Format = "yyyy/MM/dd";
- ultraGridColumn47.Header.VisiblePosition = 6;
- ultraGridColumn47.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Date;
- ultraGridColumn48.Header.VisiblePosition = 42;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn49.Header.VisiblePosition = 43;
- ultraGridColumn49.Hidden = true;
- ultraGridColumn50.Header.VisiblePosition = 46;
- ultraGridColumn51.Header.VisiblePosition = 54;
- ultraGridColumn51.Hidden = true;
- ultraGridColumn52.Header.VisiblePosition = 56;
- ultraGridColumn52.Hidden = true;
- ultraGridColumn53.Header.VisiblePosition = 57;
- ultraGridColumn53.Hidden = true;
- ultraGridColumn54.Header.VisiblePosition = 58;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn55.Header.VisiblePosition = 59;
- ultraGridColumn55.Hidden = true;
- ultraGridColumn56.Header.VisiblePosition = 61;
- ultraGridColumn57.Header.VisiblePosition = 62;
- ultraGridColumn58.Header.VisiblePosition = 63;
- ultraGridColumn59.Header.VisiblePosition = 64;
- ultraGridColumn60.Header.VisiblePosition = 65;
- ultraGridColumn60.Hidden = true;
- ultraGridColumn61.Header.VisiblePosition = 66;
- ultraGridColumn61.Hidden = true;
- ultraGridColumn62.Header.VisiblePosition = 8;
- ultraGridColumn63.Header.VisiblePosition = 67;
- ultraGridColumn64.Header.VisiblePosition = 50;
- ultraGridColumn65.Header.VisiblePosition = 68;
- ultraGridColumn65.Hidden = true;
- ultraGridColumn66.Header.VisiblePosition = 12;
- ultraGridColumn67.Header.Caption = "属性编码";
- ultraGridColumn67.Header.VisiblePosition = 13;
- ultraGridColumn67.Hidden = true;
- ultraGridColumn68.Header.VisiblePosition = 53;
- ultraGridColumn69.Header.VisiblePosition = 69;
- ultraGridColumn69.Hidden = true;
- ultraGridColumn70.Header.VisiblePosition = 70;
- ultraGridColumn70.Hidden = true;
- ultraGridColumn71.Header.VisiblePosition = 4;
- ultraGridColumn71.Width = 72;
- ultraGridColumn72.Header.VisiblePosition = 71;
- ultraGridColumn72.Hidden = true;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- 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,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64,
- ultraGridColumn65,
- ultraGridColumn66,
- ultraGridColumn67,
- ultraGridColumn68,
- ultraGridColumn69,
- ultraGridColumn70,
- ultraGridColumn71,
- ultraGridColumn72});
- summarySettings1.DisplayFormat = "{0}";
- summarySettings1.GroupBySummaryValueAppearance = appearance1;
- summarySettings2.DisplayFormat = "{0}";
- summarySettings2.GroupBySummaryValueAppearance = appearance2;
- summarySettings3.DisplayFormat = "{0}";
- summarySettings3.GroupBySummaryValueAppearance = appearance3;
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1,
- summarySettings2,
- summarySettings3});
- ultraGridBand1.SummaryFooterCaption = "统计";
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance29.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance29.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance29.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance29;
- appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance30;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
- appearance32.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance32.BackColor2 = System.Drawing.SystemColors.Control;
- appearance32.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance32.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance32;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance33.BackColor = System.Drawing.SystemColors.Window;
- appearance33.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance33;
- appearance34.BackColor = System.Drawing.SystemColors.Highlight;
- appearance34.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance34;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance35.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance35;
- appearance66.BorderColor = System.Drawing.Color.Silver;
- appearance66.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance66;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance67.BackColor = System.Drawing.SystemColors.Control;
- appearance67.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance67.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance67.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance67.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance67;
- appearance90.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance90;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance91.BackColor = System.Drawing.SystemColors.Window;
- appearance91.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance91;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance92.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance92;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(3, 0);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(742, 126);
- this.ultraGrid2.TabIndex = 1;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
- this.ultraGrid2.Click += new System.EventHandler(this.ultraGrid2_Click);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn27,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn28,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn36,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn127,
- this.dataColumn158});
- this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
- new System.Data.UniqueConstraint("Constraint1", new string[] {
- "OrderId"}, false)});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "合同号";
- this.dataColumn1.ColumnName = "OrderId";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "合同版本编号";
- this.dataColumn2.ColumnName = "OrderVer";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "合同类别";
- this.dataColumn3.ColumnName = "OrderType";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "合同金额类别";
- this.dataColumn4.ColumnName = "OrderMoneyType";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "模板编号";
- this.dataColumn5.ColumnName = "ModeId";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "模板名称";
- this.dataColumn6.ColumnName = "ModeName";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "买方编号";
- this.dataColumn7.ColumnName = "OrderTitleCode";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "供应商代码";
- this.dataColumn8.ColumnName = "SuppCode";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "供应商名称";
- this.dataColumn9.ColumnName = "SuppName";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "打印合同号";
- this.dataColumn10.ColumnName = "PorderId";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "供应商合同编号";
- this.dataColumn11.ColumnName = "SuppOrdeId";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "进口合同编号";
- this.dataColumn12.ColumnName = "ImportOrdeId";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "合同货币代码";
- this.dataColumn13.ColumnName = "Currency";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "当前兑换汇率";
- this.dataColumn14.ColumnName = "ExchangeRateCur";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "最小金额";
- this.dataColumn15.ColumnName = "AmtMin";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "最大金额";
- this.dataColumn16.ColumnName = "AmtMax";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "税率名称";
- this.dataColumn17.ColumnName = "TaxRateName";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "合同税额";
- this.dataColumn18.ColumnName = "TaxAmt";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "不含税金额";
- this.dataColumn19.ColumnName = "WithoutTaxAmt";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "含税金额";
- this.dataColumn20.ColumnName = "WithAmtTax";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "预付款1";
- this.dataColumn21.ColumnName = "PrePaymentAmt1";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "预付款2";
- this.dataColumn22.ColumnName = "PrePaymentAmt2";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "预付款3";
- this.dataColumn23.ColumnName = "PrePaymentAmt3";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "预付款4";
- this.dataColumn24.ColumnName = "PrePaymentAmt4";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "预付款5";
- this.dataColumn25.ColumnName = "PrePaymentAmt5";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "尾款1";
- this.dataColumn26.ColumnName = "AftPaymentAmt1";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "尾款2 ";
- this.dataColumn27.ColumnName = "AftPaymentAmt2";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "尾款3";
- this.dataColumn29.ColumnName = "AftPaymentAmt3";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "尾款4";
- this.dataColumn30.ColumnName = "AftPaymentAmt4";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "尾款5";
- this.dataColumn31.ColumnName = "AftPaymentAmt5";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "履约保证金";
- this.dataColumn32.ColumnName = "GuaAmt";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "开始日期";
- this.dataColumn28.ColumnName = "StartDate";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "结束日期";
- this.dataColumn33.ColumnName = "EndDate";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "允许提早天数";
- this.dataColumn34.ColumnName = "DaysEarly";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "允许延迟天数";
- this.dataColumn35.ColumnName = "DaysLate";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "签订地点";
- this.dataColumn36.ColumnName = "SignAddress";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "签订日期";
- this.dataColumn37.ColumnName = "SignDate";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "打印次数";
- this.dataColumn38.ColumnName = "PrintNum";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "采购员";
- this.dataColumn39.ColumnName = "BuyerName";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "采购管理部门代码";
- this.dataColumn40.ColumnName = "BuyerDeptCode";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "采购管理部门描叙";
- this.dataColumn41.ColumnName = "BuyerDeptDesc";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "采购管理科室代码";
- this.dataColumn42.ColumnName = "BuyerUnitCode";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "采购管理科室描叙";
- this.dataColumn43.ColumnName = "BuyerUnitDesc";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "数据状态(有效、无效)";
- this.dataColumn44.ColumnName = "Validflag";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "创建人";
- this.dataColumn45.ColumnName = "CreateName";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "创建时间";
- this.dataColumn46.ColumnName = "CreateTime";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "修改人";
- this.dataColumn47.ColumnName = "UpdateName";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "修改时间";
- this.dataColumn48.ColumnName = "UpdateTime";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "买方";
- this.dataColumn49.ColumnName = "DeleteName";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "废除时间";
- this.dataColumn50.ColumnName = "DeleteTime";
- //
- // dataColumn127
- //
- this.dataColumn127.Caption = "状态";
- this.dataColumn127.ColumnName = "Status";
- //
- // dataColumn158
- //
- this.dataColumn158.Caption = "采购纪要号";
- this.dataColumn158.ColumnName = "taskRecordId";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn56,
- this.dataColumn57,
- this.dataColumn58,
- 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.dataColumn73,
- this.dataColumn74,
- this.dataColumn75,
- this.dataColumn76,
- this.dataColumn77,
- this.dataColumn78,
- this.dataColumn79,
- this.dataColumn80,
- this.dataColumn81,
- this.dataColumn82,
- this.dataColumn83,
- this.dataColumn84,
- this.dataColumn85,
- this.dataColumn86,
- this.dataColumn87,
- this.dataColumn88,
- this.dataColumn89,
- this.dataColumn90,
- this.dataColumn91,
- this.dataColumn92,
- this.dataColumn93,
- this.dataColumn94,
- this.dataColumn95,
- this.dataColumn96,
- this.dataColumn97,
- this.dataColumn98,
- this.dataColumn99,
- this.dataColumn100,
- this.dataColumn101,
- this.dataColumn102,
- this.dataColumn103,
- this.dataColumn104,
- this.dataColumn105,
- this.dataColumn106,
- this.dataColumn107,
- this.dataColumn108,
- this.dataColumn109,
- this.dataColumn110,
- this.dataColumn111,
- this.dataColumn128,
- this.dataColumn129,
- this.dataColumn130,
- this.dataColumn131,
- this.dataColumn132,
- this.dataColumn133,
- this.dataColumn134,
- this.dataColumn152,
- this.dataColumn153,
- this.dataColumn154,
- this.dataColumn155});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "合同号";
- this.dataColumn51.ColumnName = "OrderId";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "合同行号";
- this.dataColumn52.ColumnName = "OrderLineSqe";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "评单行号";
- this.dataColumn53.ColumnName = "ReviewLineSqe";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "任务单行号";
- this.dataColumn54.ColumnName = "TaskLineId";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "物料编码";
- this.dataColumn55.ColumnName = "ItemCode";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "物料描述";
- this.dataColumn56.ColumnName = "ItemDesc";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "物料简称";
- this.dataColumn57.ColumnName = "ItemName";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "物料英文名称";
- this.dataColumn58.ColumnName = "ItemDescE";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "物料型号规格";
- this.dataColumn59.ColumnName = "ItemModel";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "物料材质";
- this.dataColumn60.ColumnName = "ItemSpec";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "合同采购数量";
- this.dataColumn61.ColumnName = "Qty";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "是否使用采购单位";
- this.dataColumn62.ColumnName = "ItemUseUom";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "采购单位";
- this.dataColumn63.ColumnName = "ItemUom";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "转换系数";
- this.dataColumn64.ColumnName = "ItemUomConefficient";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "库存单位";
- this.dataColumn65.ColumnName = "WeightUnit";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "库存转换数量";
- this.dataColumn66.ColumnName = "CkQty";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "交货量差方式";
- this.dataColumn67.ColumnName = "DelvryRangeTpe";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "交货量差下限";
- this.dataColumn68.ColumnName = "DelvryRangeMin";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "交货量差上限";
- this.dataColumn69.ColumnName = "DelvryRangeMax";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "是否计量";
- this.dataColumn70.ColumnName = "MeteringFlag";
- //
- // dataColumn71
- //
- this.dataColumn71.Caption = "是否批次控制";
- this.dataColumn71.ColumnName = "BatchFlag";
- //
- // dataColumn72
- //
- this.dataColumn72.Caption = "是否理化检验";
- this.dataColumn72.ColumnName = "PcFlag";
- //
- // dataColumn73
- //
- this.dataColumn73.Caption = "入库类型";
- this.dataColumn73.ColumnName = "ReceiveType";
- //
- // dataColumn74
- //
- this.dataColumn74.Caption = "采购标准";
- this.dataColumn74.ColumnName = "PurStandards";
- //
- // dataColumn75
- //
- this.dataColumn75.Caption = "采购标准编号";
- this.dataColumn75.ColumnName = "PurStandardsCode";
- //
- // dataColumn76
- //
- this.dataColumn76.Caption = "基础价格编号";
- this.dataColumn76.ColumnName = "BasePriceNo";
- //
- // dataColumn77
- //
- this.dataColumn77.Caption = "成分计价标准编号";
- this.dataColumn77.ColumnName = "ChemPriceNo";
- //
- // dataColumn78
- //
- this.dataColumn78.Caption = "品级计价标准编号";
- this.dataColumn78.ColumnName = "GradePriceNo";
- //
- // dataColumn79
- //
- this.dataColumn79.Caption = "保量加价标准编号";
- this.dataColumn79.ColumnName = "QuantityPriceNum";
- //
- // dataColumn80
- //
- this.dataColumn80.Caption = "其它计价标准编号";
- this.dataColumn80.ColumnName = "OtherPriceNum";
- //
- // dataColumn81
- //
- this.dataColumn81.Caption = "不含税单价";
- this.dataColumn81.ColumnName = "PriceWithoutTax";
- //
- // dataColumn82
- //
- this.dataColumn82.Caption = "含税单价";
- this.dataColumn82.ColumnName = "PriceWithTax";
- //
- // dataColumn83
- //
- this.dataColumn83.Caption = "合同税额";
- this.dataColumn83.ColumnName = "TaxAmt";
- //
- // dataColumn84
- //
- this.dataColumn84.Caption = "不含总金额税金额";
- this.dataColumn84.ColumnName = "WithoutTaxAmt";
- //
- // dataColumn85
- //
- this.dataColumn85.Caption = "含税总金额金额";
- this.dataColumn85.ColumnName = "WithAmtTax";
- //
- // dataColumn86
- //
- this.dataColumn86.Caption = "供应商代码";
- this.dataColumn86.ColumnName = "SuppCode";
- //
- // dataColumn87
- //
- this.dataColumn87.Caption = "供应商名称";
- this.dataColumn87.ColumnName = "SuppName";
- //
- // dataColumn88
- //
- this.dataColumn88.Caption = "交付地点编码";
- this.dataColumn88.ColumnName = "DeliveryLocationCode";
- //
- // dataColumn89
- //
- this.dataColumn89.Caption = "交付地点";
- this.dataColumn89.ColumnName = "DeliveryLocation";
- //
- // dataColumn90
- //
- this.dataColumn90.Caption = "累计入库量";
- this.dataColumn90.ColumnName = "ReceivedQty";
- //
- // dataColumn91
- //
- this.dataColumn91.Caption = "累计入库金额";
- this.dataColumn91.ColumnName = "ReceivedAmt";
- //
- // dataColumn92
- //
- this.dataColumn92.Caption = "累计订单量";
- this.dataColumn92.ColumnName = "OrderedQty";
- //
- // dataColumn93
- //
- this.dataColumn93.Caption = "累计订单金额";
- this.dataColumn93.ColumnName = "OrderedAmt";
- //
- // dataColumn94
- //
- this.dataColumn94.Caption = "已结算量";
- this.dataColumn94.ColumnName = "InvoicedQty";
- //
- // dataColumn95
- //
- this.dataColumn95.Caption = "已结算金额";
- this.dataColumn95.ColumnName = "InvoicedAmt";
- //
- // dataColumn96
- //
- this.dataColumn96.Caption = "交货开始日期";
- this.dataColumn96.ColumnName = "StartDate";
- //
- // dataColumn97
- //
- this.dataColumn97.Caption = "交货结束日期";
- this.dataColumn97.ColumnName = "EndDate";
- //
- // dataColumn98
- //
- this.dataColumn98.Caption = "允许提早天数";
- this.dataColumn98.ColumnName = "DaysEarly";
- //
- // dataColumn99
- //
- this.dataColumn99.Caption = "允许延迟天数";
- this.dataColumn99.ColumnName = "DaysLate";
- //
- // dataColumn100
- //
- this.dataColumn100.Caption = "采购员";
- this.dataColumn100.ColumnName = "BuyerName";
- //
- // dataColumn101
- //
- this.dataColumn101.Caption = "采购管理部门代码";
- this.dataColumn101.ColumnName = "BuyerDeptCode";
- //
- // dataColumn102
- //
- this.dataColumn102.Caption = "采购管理部门描叙";
- this.dataColumn102.ColumnName = "BuyerDeptDesc";
- //
- // dataColumn103
- //
- this.dataColumn103.Caption = "采购管理科室代码";
- this.dataColumn103.ColumnName = "BuyerUnitCode";
- //
- // dataColumn104
- //
- this.dataColumn104.Caption = "采购管理科室描叙";
- this.dataColumn104.ColumnName = "BuyerUnitDesc";
- //
- // dataColumn105
- //
- this.dataColumn105.Caption = "数据状态(有效、无效)";
- this.dataColumn105.ColumnName = "Validflag";
- //
- // dataColumn106
- //
- this.dataColumn106.Caption = "创建人";
- this.dataColumn106.ColumnName = "CreateName";
- //
- // dataColumn107
- //
- this.dataColumn107.Caption = "创建时间";
- this.dataColumn107.ColumnName = "CreateTime";
- //
- // dataColumn108
- //
- this.dataColumn108.Caption = "修改人";
- this.dataColumn108.ColumnName = "UpdateName";
- //
- // dataColumn109
- //
- this.dataColumn109.Caption = "修改时间";
- this.dataColumn109.ColumnName = "UpdateTime";
- //
- // dataColumn110
- //
- this.dataColumn110.Caption = "废除人";
- this.dataColumn110.ColumnName = "DeleteName";
- //
- // dataColumn111
- //
- this.dataColumn111.Caption = "废除时间";
- this.dataColumn111.ColumnName = "DeleteTime";
- //
- // dataColumn128
- //
- this.dataColumn128.Caption = "采购计划行";
- this.dataColumn128.ColumnName = "PurLineId";
- //
- // dataColumn129
- //
- this.dataColumn129.Caption = "结算条款ID";
- this.dataColumn129.ColumnName = "BcmID";
- //
- // dataColumn130
- //
- this.dataColumn130.Caption = "结算条款名称";
- this.dataColumn130.ColumnName = "BcmName";
- //
- // dataColumn131
- //
- this.dataColumn131.Caption = "结算条款版本号";
- this.dataColumn131.ColumnName = "BcmVersionNo";
- //
- // dataColumn132
- //
- this.dataColumn132.Caption = "物料属性";
- this.dataColumn132.ColumnName = "itemAttr";
- //
- // dataColumn133
- //
- this.dataColumn133.Caption = "物料属性编码";
- this.dataColumn133.ColumnName = "itemAttrId";
- //
- // dataColumn134
- //
- this.dataColumn134.Caption = "备注";
- this.dataColumn134.ColumnName = "remark";
- //
- // dataColumn152
- //
- this.dataColumn152.Caption = "单位换算编码";
- this.dataColumn152.ColumnName = "ITEMUOMID";
- //
- // dataColumn153
- //
- this.dataColumn153.Caption = "唯一值编码";
- this.dataColumn153.ColumnName = "ITEMUNIQUE";
- //
- // dataColumn154
- //
- this.dataColumn154.Caption = "标准";
- this.dataColumn154.ColumnName = "ITEMSTANDARDSCODE";
- //
- // dataColumn155
- //
- this.dataColumn155.Caption = "标准编码";
- this.dataColumn155.ColumnName = "ITEMSTANDARDSID";
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Right;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(596, 129);
- this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightInsideBorder;
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(748, 0);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(596, 129);
- this.ultraExpandableGroupBox1.TabIndex = 2;
- this.ultraExpandableGroupBox1.Text = "发货行";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid4);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 3);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(569, 123);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataSource = this.dataSet3;
- appearance5.BackColor = System.Drawing.SystemColors.Window;
- appearance5.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance5;
- ultraGridColumn73.Header.VisiblePosition = 7;
- ultraGridColumn73.Width = 216;
- ultraGridColumn74.Header.VisiblePosition = 2;
- ultraGridColumn74.Hidden = true;
- ultraGridColumn75.Header.VisiblePosition = 0;
- appearance13.BackColor = System.Drawing.Color.Yellow;
- ultraGridColumn76.FilterCellAppearance = appearance13;
- ultraGridColumn76.Header.VisiblePosition = 1;
- ultraGridColumn76.Width = 85;
- ultraGridColumn77.Header.VisiblePosition = 4;
- ultraGridColumn77.Width = 90;
- ultraGridColumn78.Header.VisiblePosition = 8;
- ultraGridColumn78.Width = 186;
- ultraGridColumn79.Header.VisiblePosition = 9;
- ultraGridColumn79.Width = 91;
- ultraGridColumn80.Header.VisiblePosition = 10;
- ultraGridColumn80.Width = 87;
- ultraGridColumn81.Format = "yyyy/MM/dd";
- ultraGridColumn81.Header.VisiblePosition = 11;
- ultraGridColumn81.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
- ultraGridColumn82.Header.VisiblePosition = 12;
- ultraGridColumn82.Hidden = true;
- ultraGridColumn83.Header.VisiblePosition = 13;
- ultraGridColumn83.Hidden = true;
- ultraGridColumn84.Format = "yyyy/MM/dd";
- ultraGridColumn84.Header.VisiblePosition = 14;
- ultraGridColumn84.Hidden = true;
- ultraGridColumn84.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
- ultraGridColumn85.Header.VisiblePosition = 15;
- ultraGridColumn85.Hidden = true;
- ultraGridColumn86.Header.VisiblePosition = 16;
- ultraGridColumn86.Hidden = true;
- ultraGridColumn87.Format = "yyyy/MM/dd";
- ultraGridColumn87.Header.VisiblePosition = 17;
- ultraGridColumn87.Hidden = true;
- ultraGridColumn87.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
- ultraGridColumn88.Header.VisiblePosition = 18;
- ultraGridColumn88.Hidden = true;
- ultraGridColumn89.Header.VisiblePosition = 3;
- ultraGridColumn89.Hidden = true;
- ultraGridColumn90.Format = "yyyy/MM/dd";
- ultraGridColumn90.Header.VisiblePosition = 6;
- ultraGridColumn90.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
- ultraGridColumn91.Format = "yyyy/MM/dd";
- ultraGridColumn91.Header.VisiblePosition = 5;
- ultraGridColumn91.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76,
- ultraGridColumn77,
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84,
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91});
- summarySettings4.DisplayFormat = "{0}";
- summarySettings4.GroupBySummaryValueAppearance = appearance17;
- summarySettings5.DisplayFormat = "{0}";
- summarySettings5.GroupBySummaryValueAppearance = appearance18;
- summarySettings6.DisplayFormat = "{0}";
- summarySettings6.GroupBySummaryValueAppearance = appearance19;
- ultraGridBand2.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings4,
- summarySettings5,
- summarySettings6});
- ultraGridBand2.SummaryFooterCaption = "统计";
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance7.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance7.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance7.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance7;
- appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance8;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
- appearance9.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance9.BackColor2 = System.Drawing.SystemColors.Control;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance9;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance10.BackColor = System.Drawing.SystemColors.Window;
- appearance10.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance10;
- appearance11.BackColor = System.Drawing.SystemColors.Highlight;
- appearance11.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance11;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance12.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance12;
- appearance14.BorderColor = System.Drawing.Color.Silver;
- appearance14.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance14;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- appearance27.BackColor = System.Drawing.SystemColors.Control;
- appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance27.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance27.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance27;
- appearance28.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance28;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance36.BackColor = System.Drawing.SystemColors.Window;
- appearance36.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance36;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance37.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance37;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(569, 123);
- this.ultraGrid4.TabIndex = 0;
- this.ultraGrid4.Text = "ultraGrid4";
- this.ultraGrid4.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid4_ClickCell);
- this.ultraGrid4.Click += new System.EventHandler(this.ultraGrid4_Click);
- //
- // dataSet3
- //
- this.dataSet3.DataSetName = "NewDataSet";
- this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable4});
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn135,
- this.dataColumn136,
- this.dataColumn137,
- this.dataColumn138,
- this.dataColumn139,
- this.dataColumn140,
- this.dataColumn141,
- this.dataColumn142,
- this.dataColumn143,
- this.dataColumn144,
- this.dataColumn145,
- this.dataColumn146,
- this.dataColumn147,
- this.dataColumn148,
- this.dataColumn149,
- this.dataColumn150,
- this.dataColumn151,
- this.dataColumn156,
- this.dataColumn157});
- this.dataTable4.TableName = "Table1";
- //
- // dataColumn135
- //
- this.dataColumn135.Caption = "发货行号";
- this.dataColumn135.ColumnName = "orderLineDSqe";
- //
- // dataColumn136
- //
- this.dataColumn136.Caption = "合同号";
- this.dataColumn136.ColumnName = "orderId";
- //
- // dataColumn137
- //
- this.dataColumn137.Caption = "状态";
- this.dataColumn137.ColumnName = "status";
- //
- // dataColumn138
- //
- this.dataColumn138.Caption = "数量";
- this.dataColumn138.ColumnName = "qty";
- //
- // dataColumn139
- //
- this.dataColumn139.Caption = "已生成量";
- this.dataColumn139.ColumnName = "createdQty";
- //
- // dataColumn140
- //
- this.dataColumn140.Caption = "备注";
- this.dataColumn140.ColumnName = "remark";
- //
- // dataColumn141
- //
- this.dataColumn141.Caption = "是否有效";
- this.dataColumn141.ColumnName = "validflag";
- //
- // dataColumn142
- //
- this.dataColumn142.Caption = "创建人";
- this.dataColumn142.ColumnName = "createName";
- //
- // dataColumn143
- //
- this.dataColumn143.Caption = "创建时间";
- this.dataColumn143.ColumnName = "createTime";
- //
- // dataColumn144
- //
- this.dataColumn144.Caption = "创建人ID";
- this.dataColumn144.ColumnName = "createUserId";
- //
- // dataColumn145
- //
- this.dataColumn145.Caption = "修改人";
- this.dataColumn145.ColumnName = "updateName";
- //
- // dataColumn146
- //
- this.dataColumn146.Caption = "修改时间";
- this.dataColumn146.ColumnName = "updateTime";
- //
- // dataColumn147
- //
- this.dataColumn147.Caption = "修改人ID";
- this.dataColumn147.ColumnName = "updateUserId";
- //
- // dataColumn148
- //
- this.dataColumn148.Caption = "删除人";
- this.dataColumn148.ColumnName = "deleteName";
- //
- // dataColumn149
- //
- this.dataColumn149.Caption = "删除时间";
- this.dataColumn149.ColumnName = "deleteTime";
- //
- // dataColumn150
- //
- this.dataColumn150.Caption = "删除人ID";
- this.dataColumn150.ColumnName = "deleteUserId";
- //
- // dataColumn151
- //
- this.dataColumn151.Caption = "合同行号";
- this.dataColumn151.ColumnName = "orderLineSqe";
- //
- // dataColumn156
- //
- this.dataColumn156.Caption = "发货结束时间";
- this.dataColumn156.ColumnName = "DELIVERYDATEEND";
- //
- // dataColumn157
- //
- this.dataColumn157.Caption = "发货开始时间";
- this.dataColumn157.ColumnName = "DELIVERYDATESTART";
- //
- // ultraTabPageControl5
- //
- this.ultraTabPageControl5.Controls.Add(this.ultraGrid3);
- this.ultraTabPageControl5.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl5.Name = "ultraTabPageControl5";
- this.ultraTabPageControl5.Size = new System.Drawing.Size(668, 9);
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataSource = this.dataSet2;
- appearance93.BackColor = System.Drawing.SystemColors.Window;
- appearance93.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance93;
- ultraGridColumn92.Header.VisiblePosition = 0;
- ultraGridColumn92.Hidden = true;
- ultraGridColumn93.Header.VisiblePosition = 1;
- ultraGridColumn93.Hidden = true;
- ultraGridColumn94.Header.VisiblePosition = 4;
- ultraGridColumn95.Header.VisiblePosition = 2;
- ultraGridColumn95.Width = 149;
- ultraGridColumn96.Header.VisiblePosition = 3;
- ultraGridColumn96.Width = 263;
- ultraGridColumn97.Header.VisiblePosition = 5;
- ultraGridColumn98.Header.VisiblePosition = 6;
- ultraGridColumn99.Header.VisiblePosition = 7;
- ultraGridColumn99.Width = 81;
- ultraGridColumn100.Header.VisiblePosition = 8;
- ultraGridColumn100.Width = 78;
- ultraGridColumn101.Header.VisiblePosition = 9;
- ultraGridColumn102.Header.VisiblePosition = 10;
- ultraGridColumn102.Width = 67;
- ultraGridColumn103.Header.VisiblePosition = 11;
- ultraGridColumn104.Header.VisiblePosition = 12;
- ultraGridColumn104.Hidden = true;
- ultraGridColumn105.Header.VisiblePosition = 13;
- ultraGridColumn105.Hidden = true;
- ultraGridColumn106.Header.VisiblePosition = 14;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94,
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98,
- ultraGridColumn99,
- ultraGridColumn100,
- ultraGridColumn101,
- ultraGridColumn102,
- ultraGridColumn103,
- ultraGridColumn104,
- ultraGridColumn105,
- ultraGridColumn106});
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance94.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance94.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance94.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance94.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance94;
- appearance95.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance95;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
- appearance96.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance96.BackColor2 = System.Drawing.SystemColors.Control;
- appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance96.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance96;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance97.BackColor = System.Drawing.SystemColors.Window;
- appearance97.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance97;
- appearance98.BackColor = System.Drawing.SystemColors.Highlight;
- appearance98.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance98;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance99.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance99;
- appearance100.BorderColor = System.Drawing.Color.Silver;
- appearance100.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance100;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- appearance101.BackColor = System.Drawing.SystemColors.Control;
- appearance101.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance101.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance101.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance101.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance101;
- appearance102.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance102;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance103.BackColor = System.Drawing.SystemColors.Window;
- appearance103.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance103;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance104.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance104;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(668, 9);
- this.ultraGrid3.TabIndex = 2;
- this.ultraGrid3.Text = "ultraGrid3";
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn112,
- this.dataColumn113,
- this.dataColumn114,
- this.dataColumn115,
- this.dataColumn116,
- this.dataColumn117,
- this.dataColumn118,
- this.dataColumn119,
- this.dataColumn120,
- this.dataColumn121,
- this.dataColumn122,
- this.dataColumn123,
- this.dataColumn124,
- this.dataColumn125,
- this.dataColumn126});
- this.dataTable3.TableName = "Table1";
- //
- // dataColumn112
- //
- this.dataColumn112.Caption = "模板编号";
- this.dataColumn112.ColumnName = "ModeId";
- //
- // dataColumn113
- //
- this.dataColumn113.Caption = "模板名称";
- this.dataColumn113.ColumnName = "ModeName";
- //
- // dataColumn114
- //
- this.dataColumn114.Caption = "条款代码标识";
- this.dataColumn114.ColumnName = "ClauseId";
- //
- // dataColumn115
- //
- this.dataColumn115.Caption = "条款名称";
- this.dataColumn115.ColumnName = "ClauseName";
- //
- // dataColumn116
- //
- this.dataColumn116.Caption = "条款内容";
- this.dataColumn116.ColumnName = "ClauseDesc";
- //
- // dataColumn117
- //
- this.dataColumn117.Caption = "条款顺序号";
- this.dataColumn117.ColumnName = "ClauseIndx";
- //
- // dataColumn118
- //
- this.dataColumn118.Caption = "条款分类";
- this.dataColumn118.ColumnName = "ClauseType";
- //
- // dataColumn119
- //
- this.dataColumn119.Caption = "是否必选";
- this.dataColumn119.ColumnName = "ClauseDefault";
- //
- // dataColumn120
- //
- this.dataColumn120.Caption = "创建人";
- this.dataColumn120.ColumnName = "CreateName";
- //
- // dataColumn121
- //
- this.dataColumn121.Caption = "创建时间";
- this.dataColumn121.ColumnName = "CreateTime";
- //
- // dataColumn122
- //
- this.dataColumn122.Caption = "修改人";
- this.dataColumn122.ColumnName = "UpdateName";
- //
- // dataColumn123
- //
- this.dataColumn123.Caption = "修改时间";
- this.dataColumn123.ColumnName = "UpdateTime";
- //
- // dataColumn124
- //
- this.dataColumn124.Caption = "废除人";
- this.dataColumn124.ColumnName = "DeleteName";
- //
- // dataColumn125
- //
- this.dataColumn125.Caption = "废除时间";
- this.dataColumn125.ColumnName = "DeleteTime";
- //
- // dataColumn126
- //
- this.dataColumn126.Caption = "合同模板条款行号";
- this.dataColumn126.ColumnName = "ID";
- //
- // ultraTabPageControl8
- //
- this.ultraTabPageControl8.Controls.Add(this.splitContainer1);
- this.ultraTabPageControl8.Controls.Add(this.panel1);
- this.ultraTabPageControl8.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl8.Name = "ultraTabPageControl8";
- this.ultraTabPageControl8.Size = new System.Drawing.Size(668, 9);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.Location = new System.Drawing.Point(278, 0);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.jy_procRecord);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ultraGrid6);
- this.splitContainer1.Size = new System.Drawing.Size(390, 9);
- this.splitContainer1.SplitterDistance = 205;
- this.splitContainer1.TabIndex = 29;
- //
- // jy_procRecord
- //
- this.jy_procRecord.Dock = System.Windows.Forms.DockStyle.Fill;
- this.jy_procRecord.Location = new System.Drawing.Point(0, 0);
- 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.ReadOnly = true;
- this.jy_procRecord.Size = new System.Drawing.Size(205, 9);
- this.jy_procRecord.TabIndex = 25;
- //
- // ultraGrid6
- //
- this.ultraGrid6.DataMember = "Table1";
- this.ultraGrid6.DataSource = this.dataSet4;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- appearance31.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid6.DisplayLayout.Appearance = appearance31;
- ultraGridColumn107.Header.VisiblePosition = 6;
- ultraGridColumn108.Header.VisiblePosition = 2;
- ultraGridColumn108.Width = 76;
- ultraGridColumn109.Header.VisiblePosition = 3;
- ultraGridColumn109.Width = 186;
- ultraGridColumn110.Header.VisiblePosition = 4;
- ultraGridColumn111.Header.VisiblePosition = 0;
- ultraGridColumn111.Width = 70;
- ultraGridColumn112.Header.VisiblePosition = 5;
- ultraGridColumn113.Header.VisiblePosition = 1;
- ultraGridColumn113.Width = 167;
- ultraGridColumn114.Header.VisiblePosition = 7;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn107,
- ultraGridColumn108,
- ultraGridColumn109,
- ultraGridColumn110,
- ultraGridColumn111,
- ultraGridColumn112,
- ultraGridColumn113,
- ultraGridColumn114});
- this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance47.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance47.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance47.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance47.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance47;
- appearance68.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance68;
- this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid6.DisplayLayout.GroupByBox.Hidden = true;
- appearance61.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance61.BackColor2 = System.Drawing.SystemColors.Control;
- appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance61;
- this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
- appearance71.BackColor = System.Drawing.SystemColors.Window;
- appearance71.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance71;
- appearance74.BackColor = System.Drawing.SystemColors.Highlight;
- appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance74;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance76.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance76;
- appearance72.BorderColor = System.Drawing.Color.Silver;
- appearance72.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance72;
- this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
- appearance70.BackColor = System.Drawing.SystemColors.Control;
- appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance70.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance70.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance70;
- appearance69.TextHAlignAsString = "Left";
- this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance69;
- this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance75.BackColor = System.Drawing.SystemColors.Window;
- appearance75.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance75;
- this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance73.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance73;
- this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid6.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid6.Name = "ultraGrid6";
- this.ultraGrid6.Size = new System.Drawing.Size(181, 9);
- this.ultraGrid6.TabIndex = 28;
- this.ultraGrid6.Text = "ultraGrid6";
- //
- // dataSet4
- //
- this.dataSet4.DataSetName = "NewDataSet";
- this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable5});
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn159,
- this.dataColumn161,
- this.dataColumn162,
- this.dataColumn163,
- this.dataColumn164,
- this.dataColumn165,
- this.dataColumn166,
- this.dataColumn160});
- this.dataTable5.TableName = "Table1";
- //
- // dataColumn159
- //
- this.dataColumn159.Caption = "主键";
- this.dataColumn159.ColumnName = "EVAID";
- //
- // dataColumn161
- //
- this.dataColumn161.Caption = "评标结果";
- this.dataColumn161.ColumnName = "EVARESULT";
- //
- // dataColumn162
- //
- this.dataColumn162.Caption = "评标意见";
- this.dataColumn162.ColumnName = "EVAMSG";
- //
- // dataColumn163
- //
- this.dataColumn163.Caption = "是否最新";
- this.dataColumn163.ColumnName = "ISLATEST";
- //
- // dataColumn164
- //
- this.dataColumn164.Caption = "评标人";
- this.dataColumn164.ColumnName = "CREATENAME";
- //
- // dataColumn165
- //
- this.dataColumn165.Caption = "创建时间";
- this.dataColumn165.ColumnName = "CREATETIME";
- //
- // dataColumn166
- //
- this.dataColumn166.Caption = "评标人部门";
- this.dataColumn166.ColumnName = "deletename";
- //
- // dataColumn160
- //
- this.dataColumn160.Caption = "评标人ID";
- this.dataColumn160.ColumnName = "CREATEUSERID";
- //
- // panel1
- //
- this.panel1.Controls.Add(this.ultraLabel38);
- this.panel1.Controls.Add(this.jy_negDate);
- this.panel1.Controls.Add(this.ultraLabel35);
- this.panel1.Controls.Add(this.ultraLabel32);
- this.panel1.Controls.Add(this.jy_mngOrgName);
- this.panel1.Controls.Add(this.ultraLabel31);
- this.panel1.Controls.Add(this.jy_buyerUsername);
- this.panel1.Controls.Add(this.ultraLabel28);
- this.panel1.Controls.Add(this.jy_taskName);
- this.panel1.Controls.Add(this.jy_taskId);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(278, 9);
- this.panel1.TabIndex = 27;
- //
- // ultraLabel38
- //
- this.ultraLabel38.AutoSize = true;
- this.ultraLabel38.Location = new System.Drawing.Point(24, 14);
- this.ultraLabel38.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel38.TabIndex = 15;
- this.ultraLabel38.Text = "任务单号";
- //
- // jy_negDate
- //
- this.jy_negDate.FormatProvider = new System.Globalization.CultureInfo("en-GB");
- this.jy_negDate.Location = new System.Drawing.Point(82, 130);
- this.jy_negDate.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_negDate.MaskInput = "{LOC}yyyy/mm/dd";
- this.jy_negDate.Name = "jy_negDate";
- this.jy_negDate.ReadOnly = true;
- this.jy_negDate.Size = new System.Drawing.Size(186, 21);
- this.jy_negDate.TabIndex = 26;
- //
- // ultraLabel35
- //
- this.ultraLabel35.AutoSize = true;
- this.ultraLabel35.Location = new System.Drawing.Point(24, 44);
- this.ultraLabel35.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel35.Name = "ultraLabel35";
- this.ultraLabel35.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel35.TabIndex = 16;
- this.ultraLabel35.Text = "任务名称";
- //
- // ultraLabel32
- //
- this.ultraLabel32.AutoSize = true;
- this.ultraLabel32.Location = new System.Drawing.Point(36, 74);
- this.ultraLabel32.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel32.TabIndex = 17;
- this.ultraLabel32.Text = "业务员";
- //
- // jy_mngOrgName
- //
- this.jy_mngOrgName.Location = new System.Drawing.Point(82, 101);
- this.jy_mngOrgName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_mngOrgName.Name = "jy_mngOrgName";
- this.jy_mngOrgName.ReadOnly = true;
- this.jy_mngOrgName.Size = new System.Drawing.Size(186, 21);
- this.jy_mngOrgName.TabIndex = 24;
- this.jy_mngOrgName.Text = " ";
- //
- // ultraLabel31
- //
- this.ultraLabel31.AutoSize = true;
- this.ultraLabel31.Location = new System.Drawing.Point(24, 104);
- this.ultraLabel31.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel31.Name = "ultraLabel31";
- this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel31.TabIndex = 18;
- this.ultraLabel31.Text = "主管科室";
- //
- // jy_buyerUsername
- //
- this.jy_buyerUsername.Location = new System.Drawing.Point(82, 72);
- this.jy_buyerUsername.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_buyerUsername.Name = "jy_buyerUsername";
- this.jy_buyerUsername.ReadOnly = true;
- this.jy_buyerUsername.Size = new System.Drawing.Size(186, 21);
- this.jy_buyerUsername.TabIndex = 23;
- //
- // ultraLabel28
- //
- this.ultraLabel28.AutoSize = true;
- this.ultraLabel28.Location = new System.Drawing.Point(24, 134);
- this.ultraLabel28.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel28.TabIndex = 19;
- this.ultraLabel28.Text = "谈判日期";
- //
- // jy_taskName
- //
- this.jy_taskName.Location = new System.Drawing.Point(82, 43);
- this.jy_taskName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_taskName.Name = "jy_taskName";
- this.jy_taskName.ReadOnly = true;
- this.jy_taskName.Size = new System.Drawing.Size(186, 21);
- this.jy_taskName.TabIndex = 22;
- this.jy_taskName.Text = " ";
- //
- // jy_taskId
- //
- this.jy_taskId.Location = new System.Drawing.Point(82, 14);
- this.jy_taskId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.jy_taskId.Name = "jy_taskId";
- this.jy_taskId.ReadOnly = true;
- this.jy_taskId.Size = new System.Drawing.Size(186, 21);
- this.jy_taskId.TabIndex = 21;
- this.jy_taskId.Text = " ";
- //
- // ultraTabPageControl6
- //
- this.ultraTabPageControl6.Controls.Add(this.ultraGrid5);
- this.ultraTabPageControl6.Location = new System.Drawing.Point(-7500, -8000);
- this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabPageControl6.Name = "ultraTabPageControl6";
- this.ultraTabPageControl6.Size = new System.Drawing.Size(668, 9);
- //
- // ultraGrid5
- //
- appearance52.BackColor = System.Drawing.SystemColors.Window;
- appearance52.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance52;
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance49.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance49.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance49.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance49.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance49;
- appearance50.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance50;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.GroupByBox.Hidden = true;
- appearance51.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance51.BackColor2 = System.Drawing.SystemColors.Control;
- appearance51.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance51;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance60.BackColor = System.Drawing.SystemColors.Window;
- appearance60.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance60;
- appearance55.BackColor = System.Drawing.SystemColors.Highlight;
- appearance55.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance55;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance54.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance54;
- appearance53.BorderColor = System.Drawing.Color.Silver;
- appearance53.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance53;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- appearance57.BackColor = System.Drawing.SystemColors.Control;
- appearance57.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance57.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance57.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance57;
- appearance59.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance59;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance58.BackColor = System.Drawing.SystemColors.Window;
- appearance58.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance58;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance56.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance56;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(668, 9);
- this.ultraGrid5.TabIndex = 1;
- this.ultraGrid5.Text = "ultraGrid5";
- //
- // COP_OrderType
- //
- this.COP_OrderType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.COP_OrderType.Location = new System.Drawing.Point(585, 6);
- this.COP_OrderType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.COP_OrderType.Name = "COP_OrderType";
- this.COP_OrderType.Size = new System.Drawing.Size(108, 21);
- this.COP_OrderType.TabIndex = 1;
- //
- // COP_SuppName
- //
- this.COP_SuppName.Location = new System.Drawing.Point(237, 6);
- this.COP_SuppName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.COP_SuppName.Name = "COP_SuppName";
- this.COP_SuppName.Size = new System.Drawing.Size(108, 21);
- this.COP_SuppName.TabIndex = 3;
- //
- // COP_OrderId
- //
- this.COP_OrderId.Location = new System.Drawing.Point(63, 6);
- this.COP_OrderId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.COP_OrderId.Name = "COP_OrderId";
- this.COP_OrderId.Size = new System.Drawing.Size(108, 21);
- this.COP_OrderId.TabIndex = 2;
- //
- // ultraLabel60
- //
- this.ultraLabel60.AutoSize = true;
- this.ultraLabel60.Location = new System.Drawing.Point(179, 9);
- this.ultraLabel60.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel60.Name = "ultraLabel60";
- this.ultraLabel60.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel60.TabIndex = 4;
- this.ultraLabel60.Text = "供应商名";
- //
- // ultraLabel56
- //
- this.ultraLabel56.AutoSize = true;
- this.ultraLabel56.Location = new System.Drawing.Point(17, 9);
- this.ultraLabel56.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel56.Name = "ultraLabel56";
- this.ultraLabel56.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel56.TabIndex = 3;
- this.ultraLabel56.Text = "合同号";
- //
- // ultraLabel55
- //
- this.ultraLabel55.AutoSize = true;
- this.ultraLabel55.Location = new System.Drawing.Point(527, 8);
- this.ultraLabel55.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel55.Name = "ultraLabel55";
- this.ultraLabel55.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel55.TabIndex = 2;
- this.ultraLabel55.Text = "合同类别";
- //
- // ultraLabel54
- //
- this.ultraLabel54.AutoSize = true;
- this.ultraLabel54.Location = new System.Drawing.Point(353, 9);
- this.ultraLabel54.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraLabel54.Name = "ultraLabel54";
- this.ultraLabel54.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel54.TabIndex = 1;
- this.ultraLabel54.Text = "合同状态";
- //
- // COPStatus
- //
- this.COPStatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem5.DataValue = " ";
- valueListItem5.DisplayText = "全部";
- valueListItem20.DataValue = "1";
- valueListItem20.DisplayText = "待提报";
- valueListItem43.DataValue = "2";
- valueListItem43.DisplayText = "审批中";
- valueListItem44.DataValue = "3";
- valueListItem44.DisplayText = "已审批";
- valueListItem45.DataValue = "4";
- valueListItem45.DisplayText = "已入库";
- valueListItem24.DataValue = "5";
- valueListItem24.DisplayText = "已结算";
- this.COPStatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem5,
- valueListItem20,
- valueListItem43,
- valueListItem44,
- valueListItem45,
- valueListItem24});
- this.COPStatus.Location = new System.Drawing.Point(411, 6);
- this.COPStatus.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.COPStatus.Name = "COPStatus";
- this.COPStatus.Size = new System.Drawing.Size(108, 21);
- this.COPStatus.TabIndex = 0;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl7);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1350, 200);
- this.ultraTabControl1.TabIndex = 0;
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "合同头";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "合同行";
- ultraTab9.TabPage = this.ultraTabPageControl7;
- ultraTab9.Text = "发货行";
- ultraTab3.Key = "3";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "附件";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab9,
- ultraTab3});
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1346, 174);
- //
- // ultraPanel3
- //
- //
- // ultraPanel3.ClientArea
- //
- this.ultraPanel3.ClientArea.Controls.Add(this.ultraPanel6);
- this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel3.Location = new System.Drawing.Point(0, 32);
- this.ultraPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel3.Name = "ultraPanel3";
- this.ultraPanel3.Size = new System.Drawing.Size(1354, 550);
- this.ultraPanel3.TabIndex = 2;
- //
- // ultraPanel6
- //
- //
- // ultraPanel6.ClientArea
- //
- this.ultraPanel6.ClientArea.Controls.Add(this.splitContainer2);
- this.ultraPanel6.ClientArea.Controls.Add(this.ultraExpandableGroupBox2);
- this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraPanel6.Name = "ultraPanel6";
- this.ultraPanel6.Size = new System.Drawing.Size(1354, 550);
- this.ultraPanel6.TabIndex = 2;
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox3);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.ultraGroupBox4);
- this.splitContainer2.Size = new System.Drawing.Size(1354, 328);
- this.splitContainer2.SplitterDistance = 148;
- this.splitContainer2.TabIndex = 1;
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1354, 148);
- this.ultraGroupBox3.TabIndex = 2;
- this.ultraGroupBox3.Text = "合同头";
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance105.BackColor = System.Drawing.SystemColors.Window;
- appearance105.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance105;
- ultraGridColumn115.Header.VisiblePosition = 1;
- ultraGridColumn116.Header.VisiblePosition = 3;
- ultraGridColumn116.Hidden = true;
- ultraGridColumn117.Header.VisiblePosition = 4;
- ultraGridColumn117.Width = 82;
- ultraGridColumn118.Header.VisiblePosition = 14;
- ultraGridColumn119.Header.VisiblePosition = 18;
- ultraGridColumn119.Width = 68;
- ultraGridColumn120.Header.VisiblePosition = 9;
- ultraGridColumn120.Width = 155;
- ultraGridColumn121.Header.VisiblePosition = 19;
- ultraGridColumn121.Width = 69;
- ultraGridColumn122.Header.VisiblePosition = 5;
- ultraGridColumn122.Width = 89;
- ultraGridColumn123.Header.VisiblePosition = 6;
- ultraGridColumn123.Width = 174;
- ultraGridColumn124.Header.VisiblePosition = 15;
- ultraGridColumn124.Hidden = true;
- ultraGridColumn125.Header.VisiblePosition = 16;
- ultraGridColumn125.Hidden = true;
- ultraGridColumn126.Header.VisiblePosition = 17;
- ultraGridColumn126.Hidden = true;
- ultraGridColumn127.Header.Caption = "合同货币";
- ultraGridColumn127.Header.VisiblePosition = 12;
- ultraGridColumn127.Width = 70;
- ultraGridColumn128.Header.VisiblePosition = 20;
- ultraGridColumn129.Header.VisiblePosition = 21;
- ultraGridColumn129.Hidden = true;
- ultraGridColumn130.Header.VisiblePosition = 22;
- ultraGridColumn130.Hidden = true;
- ultraGridColumn131.Header.Caption = "税率";
- ultraGridColumn131.Header.VisiblePosition = 10;
- ultraGridColumn131.Width = 68;
- ultraGridColumn132.Header.VisiblePosition = 13;
- ultraGridColumn132.Width = 103;
- ultraGridColumn133.Header.VisiblePosition = 8;
- ultraGridColumn134.Header.VisiblePosition = 7;
- ultraGridColumn135.Header.VisiblePosition = 24;
- ultraGridColumn136.Header.VisiblePosition = 25;
- ultraGridColumn136.Hidden = true;
- ultraGridColumn137.Header.VisiblePosition = 26;
- ultraGridColumn137.Hidden = true;
- ultraGridColumn138.Header.VisiblePosition = 27;
- ultraGridColumn138.Hidden = true;
- ultraGridColumn139.Header.VisiblePosition = 28;
- ultraGridColumn139.Hidden = true;
- ultraGridColumn140.Header.VisiblePosition = 29;
- ultraGridColumn141.Header.VisiblePosition = 30;
- ultraGridColumn141.Hidden = true;
- ultraGridColumn142.Header.VisiblePosition = 31;
- ultraGridColumn142.Hidden = true;
- ultraGridColumn143.Header.VisiblePosition = 32;
- ultraGridColumn143.Hidden = true;
- ultraGridColumn144.Header.VisiblePosition = 33;
- ultraGridColumn144.Hidden = true;
- ultraGridColumn145.Header.VisiblePosition = 34;
- ultraGridColumn146.Header.VisiblePosition = 35;
- ultraGridColumn146.Hidden = true;
- ultraGridColumn147.Header.VisiblePosition = 36;
- ultraGridColumn147.Hidden = true;
- ultraGridColumn148.Header.VisiblePosition = 37;
- ultraGridColumn148.Hidden = true;
- ultraGridColumn149.Header.VisiblePosition = 38;
- ultraGridColumn149.Hidden = true;
- ultraGridColumn150.Header.VisiblePosition = 39;
- ultraGridColumn151.Header.VisiblePosition = 40;
- ultraGridColumn152.Header.VisiblePosition = 41;
- ultraGridColumn153.Header.Caption = "业务员";
- ultraGridColumn153.Header.VisiblePosition = 42;
- ultraGridColumn154.Header.VisiblePosition = 43;
- ultraGridColumn155.Header.VisiblePosition = 44;
- ultraGridColumn156.Header.VisiblePosition = 45;
- ultraGridColumn156.Hidden = true;
- ultraGridColumn157.Header.VisiblePosition = 46;
- ultraGridColumn157.Hidden = true;
- ultraGridColumn158.Header.VisiblePosition = 47;
- ultraGridColumn158.Hidden = true;
- ultraGridColumn159.Header.VisiblePosition = 48;
- ultraGridColumn160.Header.VisiblePosition = 49;
- ultraGridColumn161.Header.VisiblePosition = 50;
- ultraGridColumn162.Header.VisiblePosition = 51;
- ultraGridColumn163.Header.VisiblePosition = 11;
- ultraGridColumn163.Width = 180;
- ultraGridColumn164.Header.VisiblePosition = 52;
- ultraGridColumn164.Hidden = true;
- ultraGridColumn165.Header.VisiblePosition = 2;
- ultraGridColumn165.Width = 71;
- ultraGridColumn166.Header.VisiblePosition = 23;
- ultraGridColumn167.DataType = typeof(bool);
- ultraGridColumn167.DefaultCellValue = false;
- ultraGridColumn167.Header.Caption = "";
- ultraGridColumn167.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
- ultraGridColumn167.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
- ultraGridColumn167.Header.VisiblePosition = 0;
- ultraGridColumn167.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn115,
- ultraGridColumn116,
- ultraGridColumn117,
- ultraGridColumn118,
- ultraGridColumn119,
- ultraGridColumn120,
- ultraGridColumn121,
- ultraGridColumn122,
- ultraGridColumn123,
- ultraGridColumn124,
- ultraGridColumn125,
- ultraGridColumn126,
- ultraGridColumn127,
- ultraGridColumn128,
- ultraGridColumn129,
- ultraGridColumn130,
- ultraGridColumn131,
- ultraGridColumn132,
- ultraGridColumn133,
- ultraGridColumn134,
- ultraGridColumn135,
- ultraGridColumn136,
- ultraGridColumn137,
- ultraGridColumn138,
- ultraGridColumn139,
- ultraGridColumn140,
- ultraGridColumn141,
- ultraGridColumn142,
- ultraGridColumn143,
- ultraGridColumn144,
- ultraGridColumn145,
- ultraGridColumn146,
- ultraGridColumn147,
- ultraGridColumn148,
- ultraGridColumn149,
- ultraGridColumn150,
- ultraGridColumn151,
- ultraGridColumn152,
- ultraGridColumn153,
- ultraGridColumn154,
- ultraGridColumn155,
- ultraGridColumn156,
- ultraGridColumn157,
- ultraGridColumn158,
- ultraGridColumn159,
- ultraGridColumn160,
- ultraGridColumn161,
- ultraGridColumn162,
- ultraGridColumn163,
- ultraGridColumn164,
- ultraGridColumn165,
- ultraGridColumn166,
- ultraGridColumn167});
- summarySettings7.DisplayFormat = "{0}";
- summarySettings7.GroupBySummaryValueAppearance = appearance20;
- summarySettings8.DisplayFormat = "{0}";
- summarySettings8.GroupBySummaryValueAppearance = appearance21;
- summarySettings9.DisplayFormat = "{0}";
- summarySettings9.GroupBySummaryValueAppearance = appearance25;
- ultraGridBand5.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings7,
- summarySettings8,
- summarySettings9});
- ultraGridBand5.SummaryFooterCaption = "统计";
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance106.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance106.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance106.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance106.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance106;
- appearance107.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance107;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
- appearance108.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance108.BackColor2 = System.Drawing.SystemColors.Control;
- appearance108.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance108.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance108;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance109.BackColor = System.Drawing.SystemColors.Window;
- appearance109.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance109;
- appearance110.BackColor = System.Drawing.SystemColors.Highlight;
- appearance110.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance110;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance111.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance111;
- appearance112.BorderColor = System.Drawing.Color.Silver;
- appearance112.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance112;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance113.BackColor = System.Drawing.SystemColors.Control;
- appearance113.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance113.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance113.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance113.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance113;
- appearance114.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance114;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance115.BackColor = System.Drawing.SystemColors.Window;
- appearance115.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance115;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance116.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance116;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1348, 127);
- this.ultraGrid1.TabIndex = 0;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
- this.ultraGrid1.Click += new System.EventHandler(this.ultraGrid1_Click);
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.ultraTabControl2);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(1354, 176);
- this.ultraGroupBox4.TabIndex = 0;
- this.ultraGroupBox4.Text = "合同明细";
- this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraTabControl2
- //
- this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl6);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl8);
- this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl2.Location = new System.Drawing.Point(3, 18);
- this.ultraTabControl2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabControl2.Name = "ultraTabControl2";
- this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.ultraTabControl2.Size = new System.Drawing.Size(1348, 155);
- this.ultraTabControl2.TabIndex = 2;
- this.ultraTabControl2.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
- ultraTab4.TabPage = this.ultraTabPageControl4;
- ultraTab4.Text = "合同行";
- ultraTab5.TabPage = this.ultraTabPageControl5;
- ultraTab5.Text = "合同条款";
- ultraTab7.TabPage = this.ultraTabPageControl8;
- ultraTab7.Text = "采购纪要";
- ultraTab6.TabPage = this.ultraTabPageControl6;
- ultraTab6.Text = "附件";
- this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab4,
- ultraTab5,
- ultraTab7,
- ultraTab6});
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1344, 129);
- //
- // ultraExpandableGroupBox2
- //
- this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
- this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(1354, 222);
- this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 328);
- this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
- this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1354, 222);
- this.ultraExpandableGroupBox2.TabIndex = 3;
- this.ultraExpandableGroupBox2.Text = "编辑区";
- this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel2
- //
- this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTabControl1);
- this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(2, 20);
- this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
- this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1350, 200);
- this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.CK_Ctime);
- this.ultraGroupBox1.Controls.Add(this.label7);
- this.ultraGroupBox1.Controls.Add(this.label6);
- this.ultraGroupBox1.Controls.Add(this.txt_createTimeEnd);
- this.ultraGroupBox1.Controls.Add(this.txt_createTimeStart);
- this.ultraGroupBox1.Controls.Add(this.COP_OrderType);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel56);
- this.ultraGroupBox1.Controls.Add(this.COP_SuppName);
- this.ultraGroupBox1.Controls.Add(this.COPStatus);
- this.ultraGroupBox1.Controls.Add(this.COP_OrderId);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel54);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel60);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel55);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1354, 32);
- this.ultraGroupBox1.TabIndex = 3;
- //
- // CK_Ctime
- //
- this.CK_Ctime.AutoSize = true;
- this.CK_Ctime.Location = new System.Drawing.Point(711, 9);
- this.CK_Ctime.Name = "CK_Ctime";
- this.CK_Ctime.Size = new System.Drawing.Size(15, 14);
- this.CK_Ctime.TabIndex = 44;
- this.CK_Ctime.UseVisualStyleBackColor = true;
- this.CK_Ctime.CheckedChanged += new System.EventHandler(this.CK_Ctime_CheckedChanged);
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(941, 9);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(17, 12);
- this.label7.TabIndex = 43;
- this.label7.Text = "至";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(733, 10);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(53, 12);
- this.label6.TabIndex = 42;
- this.label6.Text = "创建时间";
- //
- // txt_createTimeEnd
- //
- this.txt_createTimeEnd.DateButtons.Add(dateButton7);
- this.txt_createTimeEnd.Format = "yyyy/MM/dd";
- this.txt_createTimeEnd.Location = new System.Drawing.Point(962, 5);
- this.txt_createTimeEnd.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_createTimeEnd.Name = "txt_createTimeEnd";
- this.txt_createTimeEnd.NonAutoSizeHeight = 25;
- this.txt_createTimeEnd.Size = new System.Drawing.Size(144, 21);
- this.txt_createTimeEnd.TabIndex = 41;
- this.txt_createTimeEnd.Value = "2020/9/30 0:00:00";
- //
- // txt_createTimeStart
- //
- dateButton8.Date = new System.DateTime(((long)(0)));
- this.txt_createTimeStart.DateButtons.Add(dateButton8);
- this.txt_createTimeStart.Format = "yyyy/MM/dd";
- this.txt_createTimeStart.Location = new System.Drawing.Point(791, 5);
- this.txt_createTimeStart.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.txt_createTimeStart.Name = "txt_createTimeStart";
- this.txt_createTimeStart.NonAutoSizeHeight = 25;
- this.txt_createTimeStart.Size = new System.Drawing.Size(144, 21);
- this.txt_createTimeStart.TabIndex = 40;
- this.txt_createTimeStart.Value = "2020/9/17 0:00:00";
- //
- // FrmOrderM
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1354, 582);
- this.Controls.Add(this.ultraPanel3);
- this.Controls.Add(this.ultraGroupBox1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
- this.Name = "FrmOrderM";
- this.Text = "FrmOrderM";
- this.Load += new System.EventHandler(this.FrmOrderM_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.ultraTabPageControl1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_AftPaymentAmt1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryCondition)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderMoneyType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CreateTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxRateName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SignDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderClass)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Currency)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SignAddress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TitleName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ExchangeRateCur)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SuppName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ModeName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaskRecordId)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderId)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraTabPageControl2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithTax)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithoutTax)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Qty)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_paymentType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_packType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_purstandardscode)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_itemAttrName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Pur_Clause)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemUomConefficient)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_EndDate2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_StartDate2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ReceiveType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_QuantityPriceNum)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GradePriceNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ChemPriceNo)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DelvryRangeMin)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemCode)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderLineSqe)).EndInit();
- this.ultraTabPageControl7.ResumeLayout(false);
- this.ultraTabPageControl7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateStart)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CD_Qty)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_orderCD_Remark)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- this.ultraTabPageControl5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- this.ultraTabPageControl8.ResumeLayout(false);
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel1.PerformLayout();
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_mngOrgName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_buyerUsername)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_taskName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.jy_taskId)).EndInit();
- this.ultraTabPageControl6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_OrderType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.COPStatus)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- this.ultraPanel3.ClientArea.ResumeLayout(false);
- this.ultraPanel3.ResumeLayout(false);
- this.ultraPanel6.ClientArea.ResumeLayout(false);
- this.ultraPanel6.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
- this.ultraTabControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
- this.ultraExpandableGroupBox2.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeStart)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.Misc.UltraPanel ultraPanel3;
- private Infragistics.Win.Misc.UltraPanel ultraPanel6;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BuyerName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ExchangeRateCur;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SuppName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ModeName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TaskRecordId;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderId;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SignAddress;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel59;
- private Infragistics.Win.Misc.UltraLabel ultraLabel49;
- private Infragistics.Win.Misc.UltraLabel ultraLabel51;
- private Infragistics.Win.Misc.UltraLabel ultraLabel53;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private Infragistics.Win.Misc.UltraLabel ultraLabel36;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.Misc.UltraLabel ultraLabel33;
- private Infragistics.Win.Misc.UltraLabel ultraLabel34;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_QuantityPriceNum;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GradePriceNo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ChemPriceNo;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BuyerName2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DelvryRangeMin;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemCode;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderLineSqe;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderClass;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_Currency;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderType;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ReceiveType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel60;
- private Infragistics.Win.Misc.UltraLabel ultraLabel56;
- private Infragistics.Win.Misc.UltraLabel ultraLabel55;
- private Infragistics.Win.Misc.UltraLabel ultraLabel54;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor COPStatus;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_SuppName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_OrderId;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- 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 dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- 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 dataColumn42;
- 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.DataTable dataTable2;
- 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.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 System.Data.DataColumn dataColumn73;
- private System.Data.DataColumn dataColumn74;
- private System.Data.DataColumn dataColumn75;
- private System.Data.DataColumn dataColumn76;
- 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 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 System.Data.DataColumn dataColumn93;
- private System.Data.DataColumn dataColumn94;
- private System.Data.DataColumn dataColumn95;
- private System.Data.DataColumn dataColumn96;
- private System.Data.DataColumn dataColumn97;
- private System.Data.DataColumn dataColumn98;
- private System.Data.DataColumn dataColumn99;
- private System.Data.DataColumn dataColumn100;
- private System.Data.DataColumn dataColumn101;
- private System.Data.DataColumn dataColumn102;
- private System.Data.DataColumn dataColumn103;
- 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 dataColumn110;
- private System.Data.DataColumn dataColumn111;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn112;
- private System.Data.DataColumn dataColumn113;
- private System.Data.DataColumn dataColumn114;
- private System.Data.DataColumn dataColumn115;
- private System.Data.DataColumn dataColumn116;
- private System.Data.DataColumn dataColumn117;
- private System.Data.DataColumn dataColumn118;
- private System.Data.DataColumn dataColumn119;
- private System.Data.DataColumn dataColumn120;
- private System.Data.DataColumn dataColumn121;
- private System.Data.DataColumn dataColumn122;
- private System.Data.DataColumn dataColumn123;
- private System.Data.DataColumn dataColumn124;
- private System.Data.DataColumn dataColumn125;
- private System.Data.DataColumn dataColumn126;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_StartDate2;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_EndDate2;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor COP_OrderType;
- private System.Data.DataColumn dataColumn127;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SignDate;
- private Infragistics.Win.Misc.UltraLabel ultraLabel57;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemUomConefficient;
- private Infragistics.Win.Misc.UltraLabel ultraLabel58;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel61;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TitleName;
- private Infragistics.Win.Misc.UltraLabel ultraLabel63;
- private Infragistics.Win.Misc.UltraLabel currencylabel2;
- private Infragistics.Win.Misc.UltraLabel currencylabel3;
- private Infragistics.Win.Misc.UltraLabel currencyLabel62;
- private Infragistics.Win.Misc.UltraLabel currencyLabel65;
- private Infragistics.Win.Misc.UltraLabel currencyLabel66;
- private System.Data.DataColumn dataColumn128;
- private Infragistics.Win.Misc.UltraLabel ultraLabel69;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_Pur_Clause;
- private Infragistics.Win.Misc.UltraLabel ultraLabel70;
- private System.Data.DataColumn dataColumn129;
- private System.Data.DataColumn dataColumn130;
- private System.Data.DataColumn dataColumn131;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_TaxRateName;
- private Infragistics.Win.Misc.UltraLabel ultraLabel71;
- private Infragistics.Win.Misc.UltraLabel currencyLabel63;
- private Infragistics.Win.Misc.UltraLabel currencyLabel64;
- private Infragistics.Win.Misc.UltraLabel ultraLabel72;
- private Infragistics.Win.Misc.UltraLabel ultraLabel75;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_itemAttrName;
- private System.Data.DataColumn dataColumn132;
- private System.Data.DataColumn dataColumn133;
- private Infragistics.Win.Misc.UltraLabel ultraLabel76;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
- private System.Data.DataColumn dataColumn134;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private System.Data.DataSet dataSet3;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn135;
- private System.Data.DataColumn dataColumn136;
- private System.Data.DataColumn dataColumn137;
- private System.Data.DataColumn dataColumn138;
- private System.Data.DataColumn dataColumn139;
- private System.Data.DataColumn dataColumn140;
- private System.Data.DataColumn dataColumn141;
- private System.Data.DataColumn dataColumn142;
- private System.Data.DataColumn dataColumn143;
- private System.Data.DataColumn dataColumn144;
- private System.Data.DataColumn dataColumn145;
- private System.Data.DataColumn dataColumn146;
- private System.Data.DataColumn dataColumn147;
- private System.Data.DataColumn dataColumn148;
- private System.Data.DataColumn dataColumn149;
- private System.Data.DataColumn dataColumn150;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
- private System.Windows.Forms.Label label1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderCD_Remark;
- private System.Data.DataColumn dataColumn151;
- private System.Windows.Forms.Label label3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CD_Qty;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private System.Data.DataColumn dataColumn152;
- private System.Data.DataColumn dataColumn153;
- private System.Data.DataColumn dataColumn154;
- private System.Data.DataColumn dataColumn155;
- private Infragistics.Win.Misc.UltraLabel currencylabel1;
- private Infragistics.Win.Misc.UltraLabel currencylabel4;
- private System.Windows.Forms.Label txt_UNIT;
- private System.Windows.Forms.Label txt_WEIGHTUNIT;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_purstandardscode;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_askDeliveryDateEnd;
- private Infragistics.Win.Misc.UltraLabel ultraLabel29;
- private System.Windows.Forms.Label label2;
- private System.Data.DataColumn dataColumn156;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CreateTime;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_askDeliveryDateStart;
- private Infragistics.Win.Misc.UltraLabel ultraLabel30;
- private System.Windows.Forms.Label label4;
- private System.Data.DataColumn dataColumn157;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderMoneyType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_deliveryCondition;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_deliveryType;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_paymentType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_packType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private System.Windows.Forms.CheckBox CK_Ctime;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Label label6;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_createTimeEnd;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_createTimeStart;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithAmtTax2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Qty;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_TaxAmt2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithoutTaxAmt2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_PriceWithTax;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_PriceWithoutTax;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_TaxAmt;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_AftPaymentAmt1;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithAmtTax;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithoutTaxAmt;
- private System.Data.DataColumn dataColumn158;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor jy_negDate;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_procRecord;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_mngOrgName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_buyerUsername;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_taskName;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_taskId;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel31;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.Misc.UltraLabel ultraLabel35;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
- private System.Data.DataSet dataSet4;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn159;
- private System.Data.DataColumn dataColumn161;
- private System.Data.DataColumn dataColumn162;
- private System.Data.DataColumn dataColumn163;
- private System.Data.DataColumn dataColumn164;
- private System.Data.DataColumn dataColumn165;
- private System.Data.DataColumn dataColumn166;
- private System.Data.DataColumn dataColumn160;
- private System.Windows.Forms.SplitContainer splitContainer1;
- }
- }
|