FrmOrderM.Designer.cs 298 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175
  1. namespace Pur.order
  2. {
  3. partial class FrmOrderM
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  29. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  31. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  32. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  33. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  34. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  35. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  36. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  37. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  38. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  39. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  40. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  41. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  43. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  44. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
  47. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
  49. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  57. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  58. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
  59. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton5 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  62. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton6 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  64. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderLineSqe");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReviewLineSqe");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaskLineId");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemCode");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDesc");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemName");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemModel");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemSpec");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Qty");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUseUom");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUom");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUomConefficient");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CkQty");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeTpe");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMin");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMax");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MeteringFlag");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BatchFlag");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PcFlag");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveType");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandards");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandardsCode");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BasePriceNo");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ChemPriceNo");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GradePriceNo");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QuantityPriceNum");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OtherPriceNum");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithoutTax");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithTax");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocationCode");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocation");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedQty");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedAmt");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedQty");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedAmt");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedQty");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedAmt");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StartDate");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurLineId");
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmID");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmName");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmVersionNo");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttr");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttrId");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSCODE");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
  138. 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);
  139. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  140. 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);
  141. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  142. 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);
  143. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  156. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderLineDSqe");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderId");
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("qty");
  161. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createdQty");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
  164. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validflag");
  165. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createName");
  166. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  167. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createUserId");
  168. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateName");
  169. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
  170. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateUserId");
  171. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteName");
  172. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteTime");
  173. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteUserId");
  174. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderLineSqe");
  175. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELIVERYDATEEND");
  176. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DELIVERYDATESTART");
  177. 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);
  178. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  179. 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);
  180. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  181. 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);
  182. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  183. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  184. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  195. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  196. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
  197. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
  198. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseId");
  199. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseName");
  200. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDesc");
  201. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndx");
  202. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseType");
  203. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDefault");
  204. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  205. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  206. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  207. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  208. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  209. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  210. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  211. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  218. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  219. Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  221. Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
  222. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  223. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  224. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAID");
  225. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVARESULT");
  226. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EVAMSG");
  227. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISLATEST");
  228. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  229. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  230. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deletename");
  231. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATEUSERID");
  232. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  233. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  234. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  235. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  236. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  237. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  238. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  239. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  240. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  241. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  242. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  243. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  244. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  245. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  246. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  247. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  248. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  249. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  250. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  251. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  252. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  253. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  254. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  255. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  256. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  257. Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
  258. Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
  259. Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
  260. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  261. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  262. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  263. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  264. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  265. Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
  266. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  267. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
  268. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderVer");
  269. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderType");
  270. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderMoneyType");
  271. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
  272. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
  273. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderTitleCode");
  274. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
  275. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
  276. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PorderId");
  277. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppOrdeId");
  278. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ImportOrdeId");
  279. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Currency");
  280. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ExchangeRateCur");
  281. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMin");
  282. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMax");
  283. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxRateName");
  284. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
  285. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
  286. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
  287. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt1");
  288. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt2");
  289. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt3");
  290. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn138 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt4");
  291. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn139 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt5");
  292. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn140 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt1");
  293. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn141 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt2");
  294. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn142 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt3");
  295. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn143 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt4");
  296. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn144 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt5");
  297. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn145 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GuaAmt");
  298. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn146 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StartDate");
  299. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn147 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
  300. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn148 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
  301. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn149 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
  302. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn150 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignAddress");
  303. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn151 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignDate");
  304. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn152 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrintNum");
  305. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn153 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
  306. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn154 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  307. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn155 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  308. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn156 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  309. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn157 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  310. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn158 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  311. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn159 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  312. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn160 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  313. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn161 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  314. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn162 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  315. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn163 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  316. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn164 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  317. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn165 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Status");
  318. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn166 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("taskRecordId");
  319. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn167 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
  320. 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);
  321. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  322. 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);
  323. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  324. 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);
  325. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  326. Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
  327. Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
  328. Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
  329. Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
  330. Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
  331. Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
  332. Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
  333. Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
  334. Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
  335. Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
  336. Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
  337. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  338. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  339. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  340. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  341. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton7 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  342. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton8 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  343. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOrderM));
  344. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  345. this.txt_TaxAmt = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  346. this.txt_AftPaymentAmt1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  347. this.txt_WithAmtTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  348. this.txt_WithoutTaxAmt = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  349. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  350. this.txt_deliveryType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  351. this.txt_deliveryCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  352. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  353. this.txt_OrderMoneyType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  354. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  355. this.txt_CreateTime = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  356. this.currencylabel1 = new Infragistics.Win.Misc.UltraLabel();
  357. this.currencylabel4 = new Infragistics.Win.Misc.UltraLabel();
  358. this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
  359. this.txt_TaxRateName = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  360. this.currencylabel2 = new Infragistics.Win.Misc.UltraLabel();
  361. this.currencylabel3 = new Infragistics.Win.Misc.UltraLabel();
  362. this.txt_SignDate = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  363. this.txt_OrderType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  364. this.txt_OrderClass = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  365. this.txt_Currency = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  366. this.txt_SignAddress = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  367. this.txt_TitleName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  368. this.txt_BuyerName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  369. this.txt_ExchangeRateCur = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  370. this.txt_SuppName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  371. this.txt_ModeName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  372. this.txt_TaskRecordId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  373. this.txt_OrderId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  374. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  375. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  376. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  377. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  378. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  379. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  380. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  381. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  382. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  383. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  384. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  385. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  386. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  387. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  388. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  389. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  390. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  391. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  392. this.txt_TaxAmt2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  393. this.txt_WithoutTaxAmt2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  394. this.txt_PriceWithTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  395. this.txt_PriceWithoutTax = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  396. this.txt_Qty = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  397. this.txt_WithAmtTax2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  398. this.txt_paymentType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  399. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  400. this.txt_packType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  401. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  402. this.txt_purstandardscode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  403. this.txt_UNIT = new System.Windows.Forms.Label();
  404. this.txt_WEIGHTUNIT = new System.Windows.Forms.Label();
  405. this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
  406. this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  407. this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
  408. this.txt_itemAttrName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  409. this.currencyLabel63 = new Infragistics.Win.Misc.UltraLabel();
  410. this.currencyLabel64 = new Infragistics.Win.Misc.UltraLabel();
  411. this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
  412. this.txt_Pur_Clause = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  413. this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
  414. this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
  415. this.currencyLabel65 = new Infragistics.Win.Misc.UltraLabel();
  416. this.currencyLabel66 = new Infragistics.Win.Misc.UltraLabel();
  417. this.currencyLabel62 = new Infragistics.Win.Misc.UltraLabel();
  418. this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
  419. this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
  420. this.txt_ItemUomConefficient = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  421. this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
  422. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  423. this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
  424. this.txt_EndDate2 = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  425. this.txt_StartDate2 = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  426. this.txt_ReceiveType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  427. this.txt_QuantityPriceNum = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  428. this.txt_GradePriceNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  429. this.txt_ChemPriceNo = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  430. this.txt_BuyerName2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  431. this.txt_DelvryRangeMin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  432. this.txt_ItemName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  433. this.txt_ItemCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  434. this.txt_OrderLineSqe = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  435. this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
  436. this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
  437. this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
  438. this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
  439. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  440. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  441. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  442. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  443. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  444. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  445. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  446. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  447. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  448. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  449. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  450. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  451. this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  452. this.label4 = new System.Windows.Forms.Label();
  453. this.txt_askDeliveryDateStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  454. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  455. this.label2 = new System.Windows.Forms.Label();
  456. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  457. this.txt_askDeliveryDateEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  458. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  459. this.txt_CD_Qty = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  460. this.label3 = new System.Windows.Forms.Label();
  461. this.txt_orderCD_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  462. this.label1 = new System.Windows.Forms.Label();
  463. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  464. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  465. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  466. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  467. this.dataSet1 = new System.Data.DataSet();
  468. this.dataTable1 = new System.Data.DataTable();
  469. this.dataColumn1 = new System.Data.DataColumn();
  470. this.dataColumn2 = new System.Data.DataColumn();
  471. this.dataColumn3 = new System.Data.DataColumn();
  472. this.dataColumn4 = new System.Data.DataColumn();
  473. this.dataColumn5 = new System.Data.DataColumn();
  474. this.dataColumn6 = new System.Data.DataColumn();
  475. this.dataColumn7 = new System.Data.DataColumn();
  476. this.dataColumn8 = new System.Data.DataColumn();
  477. this.dataColumn9 = new System.Data.DataColumn();
  478. this.dataColumn10 = new System.Data.DataColumn();
  479. this.dataColumn11 = new System.Data.DataColumn();
  480. this.dataColumn12 = new System.Data.DataColumn();
  481. this.dataColumn13 = new System.Data.DataColumn();
  482. this.dataColumn14 = new System.Data.DataColumn();
  483. this.dataColumn15 = new System.Data.DataColumn();
  484. this.dataColumn16 = new System.Data.DataColumn();
  485. this.dataColumn17 = new System.Data.DataColumn();
  486. this.dataColumn18 = new System.Data.DataColumn();
  487. this.dataColumn19 = new System.Data.DataColumn();
  488. this.dataColumn20 = new System.Data.DataColumn();
  489. this.dataColumn21 = new System.Data.DataColumn();
  490. this.dataColumn22 = new System.Data.DataColumn();
  491. this.dataColumn23 = new System.Data.DataColumn();
  492. this.dataColumn24 = new System.Data.DataColumn();
  493. this.dataColumn25 = new System.Data.DataColumn();
  494. this.dataColumn26 = new System.Data.DataColumn();
  495. this.dataColumn27 = new System.Data.DataColumn();
  496. this.dataColumn29 = new System.Data.DataColumn();
  497. this.dataColumn30 = new System.Data.DataColumn();
  498. this.dataColumn31 = new System.Data.DataColumn();
  499. this.dataColumn32 = new System.Data.DataColumn();
  500. this.dataColumn28 = new System.Data.DataColumn();
  501. this.dataColumn33 = new System.Data.DataColumn();
  502. this.dataColumn34 = new System.Data.DataColumn();
  503. this.dataColumn35 = new System.Data.DataColumn();
  504. this.dataColumn36 = new System.Data.DataColumn();
  505. this.dataColumn37 = new System.Data.DataColumn();
  506. this.dataColumn38 = new System.Data.DataColumn();
  507. this.dataColumn39 = new System.Data.DataColumn();
  508. this.dataColumn40 = new System.Data.DataColumn();
  509. this.dataColumn41 = new System.Data.DataColumn();
  510. this.dataColumn42 = new System.Data.DataColumn();
  511. this.dataColumn43 = new System.Data.DataColumn();
  512. this.dataColumn44 = new System.Data.DataColumn();
  513. this.dataColumn45 = new System.Data.DataColumn();
  514. this.dataColumn46 = new System.Data.DataColumn();
  515. this.dataColumn47 = new System.Data.DataColumn();
  516. this.dataColumn48 = new System.Data.DataColumn();
  517. this.dataColumn49 = new System.Data.DataColumn();
  518. this.dataColumn50 = new System.Data.DataColumn();
  519. this.dataColumn127 = new System.Data.DataColumn();
  520. this.dataColumn158 = new System.Data.DataColumn();
  521. this.dataTable2 = new System.Data.DataTable();
  522. this.dataColumn51 = new System.Data.DataColumn();
  523. this.dataColumn52 = new System.Data.DataColumn();
  524. this.dataColumn53 = new System.Data.DataColumn();
  525. this.dataColumn54 = new System.Data.DataColumn();
  526. this.dataColumn55 = new System.Data.DataColumn();
  527. this.dataColumn56 = new System.Data.DataColumn();
  528. this.dataColumn57 = new System.Data.DataColumn();
  529. this.dataColumn58 = new System.Data.DataColumn();
  530. this.dataColumn59 = new System.Data.DataColumn();
  531. this.dataColumn60 = new System.Data.DataColumn();
  532. this.dataColumn61 = new System.Data.DataColumn();
  533. this.dataColumn62 = new System.Data.DataColumn();
  534. this.dataColumn63 = new System.Data.DataColumn();
  535. this.dataColumn64 = new System.Data.DataColumn();
  536. this.dataColumn65 = new System.Data.DataColumn();
  537. this.dataColumn66 = new System.Data.DataColumn();
  538. this.dataColumn67 = new System.Data.DataColumn();
  539. this.dataColumn68 = new System.Data.DataColumn();
  540. this.dataColumn69 = new System.Data.DataColumn();
  541. this.dataColumn70 = new System.Data.DataColumn();
  542. this.dataColumn71 = new System.Data.DataColumn();
  543. this.dataColumn72 = new System.Data.DataColumn();
  544. this.dataColumn73 = new System.Data.DataColumn();
  545. this.dataColumn74 = new System.Data.DataColumn();
  546. this.dataColumn75 = new System.Data.DataColumn();
  547. this.dataColumn76 = new System.Data.DataColumn();
  548. this.dataColumn77 = new System.Data.DataColumn();
  549. this.dataColumn78 = new System.Data.DataColumn();
  550. this.dataColumn79 = new System.Data.DataColumn();
  551. this.dataColumn80 = new System.Data.DataColumn();
  552. this.dataColumn81 = new System.Data.DataColumn();
  553. this.dataColumn82 = new System.Data.DataColumn();
  554. this.dataColumn83 = new System.Data.DataColumn();
  555. this.dataColumn84 = new System.Data.DataColumn();
  556. this.dataColumn85 = new System.Data.DataColumn();
  557. this.dataColumn86 = new System.Data.DataColumn();
  558. this.dataColumn87 = new System.Data.DataColumn();
  559. this.dataColumn88 = new System.Data.DataColumn();
  560. this.dataColumn89 = new System.Data.DataColumn();
  561. this.dataColumn90 = new System.Data.DataColumn();
  562. this.dataColumn91 = new System.Data.DataColumn();
  563. this.dataColumn92 = new System.Data.DataColumn();
  564. this.dataColumn93 = new System.Data.DataColumn();
  565. this.dataColumn94 = new System.Data.DataColumn();
  566. this.dataColumn95 = new System.Data.DataColumn();
  567. this.dataColumn96 = new System.Data.DataColumn();
  568. this.dataColumn97 = new System.Data.DataColumn();
  569. this.dataColumn98 = new System.Data.DataColumn();
  570. this.dataColumn99 = new System.Data.DataColumn();
  571. this.dataColumn100 = new System.Data.DataColumn();
  572. this.dataColumn101 = new System.Data.DataColumn();
  573. this.dataColumn102 = new System.Data.DataColumn();
  574. this.dataColumn103 = new System.Data.DataColumn();
  575. this.dataColumn104 = new System.Data.DataColumn();
  576. this.dataColumn105 = new System.Data.DataColumn();
  577. this.dataColumn106 = new System.Data.DataColumn();
  578. this.dataColumn107 = new System.Data.DataColumn();
  579. this.dataColumn108 = new System.Data.DataColumn();
  580. this.dataColumn109 = new System.Data.DataColumn();
  581. this.dataColumn110 = new System.Data.DataColumn();
  582. this.dataColumn111 = new System.Data.DataColumn();
  583. this.dataColumn128 = new System.Data.DataColumn();
  584. this.dataColumn129 = new System.Data.DataColumn();
  585. this.dataColumn130 = new System.Data.DataColumn();
  586. this.dataColumn131 = new System.Data.DataColumn();
  587. this.dataColumn132 = new System.Data.DataColumn();
  588. this.dataColumn133 = new System.Data.DataColumn();
  589. this.dataColumn134 = new System.Data.DataColumn();
  590. this.dataColumn152 = new System.Data.DataColumn();
  591. this.dataColumn153 = new System.Data.DataColumn();
  592. this.dataColumn154 = new System.Data.DataColumn();
  593. this.dataColumn155 = new System.Data.DataColumn();
  594. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  595. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  596. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  597. this.dataSet3 = new System.Data.DataSet();
  598. this.dataTable4 = new System.Data.DataTable();
  599. this.dataColumn135 = new System.Data.DataColumn();
  600. this.dataColumn136 = new System.Data.DataColumn();
  601. this.dataColumn137 = new System.Data.DataColumn();
  602. this.dataColumn138 = new System.Data.DataColumn();
  603. this.dataColumn139 = new System.Data.DataColumn();
  604. this.dataColumn140 = new System.Data.DataColumn();
  605. this.dataColumn141 = new System.Data.DataColumn();
  606. this.dataColumn142 = new System.Data.DataColumn();
  607. this.dataColumn143 = new System.Data.DataColumn();
  608. this.dataColumn144 = new System.Data.DataColumn();
  609. this.dataColumn145 = new System.Data.DataColumn();
  610. this.dataColumn146 = new System.Data.DataColumn();
  611. this.dataColumn147 = new System.Data.DataColumn();
  612. this.dataColumn148 = new System.Data.DataColumn();
  613. this.dataColumn149 = new System.Data.DataColumn();
  614. this.dataColumn150 = new System.Data.DataColumn();
  615. this.dataColumn151 = new System.Data.DataColumn();
  616. this.dataColumn156 = new System.Data.DataColumn();
  617. this.dataColumn157 = new System.Data.DataColumn();
  618. this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  619. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  620. this.dataSet2 = new System.Data.DataSet();
  621. this.dataTable3 = new System.Data.DataTable();
  622. this.dataColumn112 = new System.Data.DataColumn();
  623. this.dataColumn113 = new System.Data.DataColumn();
  624. this.dataColumn114 = new System.Data.DataColumn();
  625. this.dataColumn115 = new System.Data.DataColumn();
  626. this.dataColumn116 = new System.Data.DataColumn();
  627. this.dataColumn117 = new System.Data.DataColumn();
  628. this.dataColumn118 = new System.Data.DataColumn();
  629. this.dataColumn119 = new System.Data.DataColumn();
  630. this.dataColumn120 = new System.Data.DataColumn();
  631. this.dataColumn121 = new System.Data.DataColumn();
  632. this.dataColumn122 = new System.Data.DataColumn();
  633. this.dataColumn123 = new System.Data.DataColumn();
  634. this.dataColumn124 = new System.Data.DataColumn();
  635. this.dataColumn125 = new System.Data.DataColumn();
  636. this.dataColumn126 = new System.Data.DataColumn();
  637. this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  638. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  639. this.jy_procRecord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  640. this.ultraGrid6 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  641. this.dataSet4 = new System.Data.DataSet();
  642. this.dataTable5 = new System.Data.DataTable();
  643. this.dataColumn159 = new System.Data.DataColumn();
  644. this.dataColumn161 = new System.Data.DataColumn();
  645. this.dataColumn162 = new System.Data.DataColumn();
  646. this.dataColumn163 = new System.Data.DataColumn();
  647. this.dataColumn164 = new System.Data.DataColumn();
  648. this.dataColumn165 = new System.Data.DataColumn();
  649. this.dataColumn166 = new System.Data.DataColumn();
  650. this.dataColumn160 = new System.Data.DataColumn();
  651. this.panel1 = new System.Windows.Forms.Panel();
  652. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  653. this.jy_negDate = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  654. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  655. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  656. this.jy_mngOrgName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  657. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  658. this.jy_buyerUsername = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  659. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  660. this.jy_taskName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  661. this.jy_taskId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  662. this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  663. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  664. this.COP_OrderType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  665. this.COP_SuppName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  666. this.COP_OrderId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  667. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  668. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  669. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  670. this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
  671. this.COPStatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  672. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  673. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  674. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  675. this.ultraPanel6 = new Infragistics.Win.Misc.UltraPanel();
  676. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  677. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  678. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  679. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  680. this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  681. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  682. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  683. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  684. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  685. this.CK_Ctime = new System.Windows.Forms.CheckBox();
  686. this.label7 = new System.Windows.Forms.Label();
  687. this.label6 = new System.Windows.Forms.Label();
  688. this.txt_createTimeEnd = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  689. this.txt_createTimeStart = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  690. this.ultraTabPageControl1.SuspendLayout();
  691. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt)).BeginInit();
  692. ((System.ComponentModel.ISupportInitialize)(this.txt_AftPaymentAmt1)).BeginInit();
  693. ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax)).BeginInit();
  694. ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt)).BeginInit();
  695. ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryType)).BeginInit();
  696. ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryCondition)).BeginInit();
  697. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderMoneyType)).BeginInit();
  698. ((System.ComponentModel.ISupportInitialize)(this.txt_CreateTime)).BeginInit();
  699. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxRateName)).BeginInit();
  700. ((System.ComponentModel.ISupportInitialize)(this.txt_SignDate)).BeginInit();
  701. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderType)).BeginInit();
  702. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderClass)).BeginInit();
  703. ((System.ComponentModel.ISupportInitialize)(this.txt_Currency)).BeginInit();
  704. ((System.ComponentModel.ISupportInitialize)(this.txt_SignAddress)).BeginInit();
  705. ((System.ComponentModel.ISupportInitialize)(this.txt_TitleName)).BeginInit();
  706. ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName)).BeginInit();
  707. ((System.ComponentModel.ISupportInitialize)(this.txt_ExchangeRateCur)).BeginInit();
  708. ((System.ComponentModel.ISupportInitialize)(this.txt_SuppName)).BeginInit();
  709. ((System.ComponentModel.ISupportInitialize)(this.txt_ModeName)).BeginInit();
  710. ((System.ComponentModel.ISupportInitialize)(this.txt_TaskRecordId)).BeginInit();
  711. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderId)).BeginInit();
  712. this.ultraTabPageControl2.SuspendLayout();
  713. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt2)).BeginInit();
  714. ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt2)).BeginInit();
  715. ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithTax)).BeginInit();
  716. ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithoutTax)).BeginInit();
  717. ((System.ComponentModel.ISupportInitialize)(this.txt_Qty)).BeginInit();
  718. ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax2)).BeginInit();
  719. ((System.ComponentModel.ISupportInitialize)(this.txt_paymentType)).BeginInit();
  720. ((System.ComponentModel.ISupportInitialize)(this.txt_packType)).BeginInit();
  721. ((System.ComponentModel.ISupportInitialize)(this.txt_purstandardscode)).BeginInit();
  722. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
  723. ((System.ComponentModel.ISupportInitialize)(this.txt_itemAttrName)).BeginInit();
  724. ((System.ComponentModel.ISupportInitialize)(this.txt_Pur_Clause)).BeginInit();
  725. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemUomConefficient)).BeginInit();
  726. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  727. ((System.ComponentModel.ISupportInitialize)(this.txt_EndDate2)).BeginInit();
  728. ((System.ComponentModel.ISupportInitialize)(this.txt_StartDate2)).BeginInit();
  729. ((System.ComponentModel.ISupportInitialize)(this.txt_ReceiveType)).BeginInit();
  730. ((System.ComponentModel.ISupportInitialize)(this.txt_QuantityPriceNum)).BeginInit();
  731. ((System.ComponentModel.ISupportInitialize)(this.txt_GradePriceNo)).BeginInit();
  732. ((System.ComponentModel.ISupportInitialize)(this.txt_ChemPriceNo)).BeginInit();
  733. ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName2)).BeginInit();
  734. ((System.ComponentModel.ISupportInitialize)(this.txt_DelvryRangeMin)).BeginInit();
  735. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemName)).BeginInit();
  736. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemCode)).BeginInit();
  737. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderLineSqe)).BeginInit();
  738. this.ultraTabPageControl7.SuspendLayout();
  739. ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateStart)).BeginInit();
  740. ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateEnd)).BeginInit();
  741. ((System.ComponentModel.ISupportInitialize)(this.txt_CD_Qty)).BeginInit();
  742. ((System.ComponentModel.ISupportInitialize)(this.txt_orderCD_Remark)).BeginInit();
  743. this.ultraTabPageControl4.SuspendLayout();
  744. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  745. this.ultraGroupBox2.SuspendLayout();
  746. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  747. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  748. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  749. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  750. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  751. this.ultraExpandableGroupBox1.SuspendLayout();
  752. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  753. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  754. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  755. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  756. this.ultraTabPageControl5.SuspendLayout();
  757. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  758. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  759. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  760. this.ultraTabPageControl8.SuspendLayout();
  761. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  762. this.splitContainer1.Panel1.SuspendLayout();
  763. this.splitContainer1.Panel2.SuspendLayout();
  764. this.splitContainer1.SuspendLayout();
  765. ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).BeginInit();
  766. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).BeginInit();
  767. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
  768. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  769. this.panel1.SuspendLayout();
  770. ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).BeginInit();
  771. ((System.ComponentModel.ISupportInitialize)(this.jy_mngOrgName)).BeginInit();
  772. ((System.ComponentModel.ISupportInitialize)(this.jy_buyerUsername)).BeginInit();
  773. ((System.ComponentModel.ISupportInitialize)(this.jy_taskName)).BeginInit();
  774. ((System.ComponentModel.ISupportInitialize)(this.jy_taskId)).BeginInit();
  775. this.ultraTabPageControl6.SuspendLayout();
  776. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  777. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderType)).BeginInit();
  778. ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).BeginInit();
  779. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).BeginInit();
  780. ((System.ComponentModel.ISupportInitialize)(this.COPStatus)).BeginInit();
  781. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  782. this.ultraTabControl1.SuspendLayout();
  783. this.ultraPanel3.ClientArea.SuspendLayout();
  784. this.ultraPanel3.SuspendLayout();
  785. this.ultraPanel6.ClientArea.SuspendLayout();
  786. this.ultraPanel6.SuspendLayout();
  787. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  788. this.splitContainer2.Panel1.SuspendLayout();
  789. this.splitContainer2.Panel2.SuspendLayout();
  790. this.splitContainer2.SuspendLayout();
  791. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  792. this.ultraGroupBox3.SuspendLayout();
  793. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  794. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  795. this.ultraGroupBox4.SuspendLayout();
  796. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
  797. this.ultraTabControl2.SuspendLayout();
  798. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  799. this.ultraExpandableGroupBox2.SuspendLayout();
  800. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  801. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  802. this.ultraGroupBox1.SuspendLayout();
  803. ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeEnd)).BeginInit();
  804. ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeStart)).BeginInit();
  805. this.SuspendLayout();
  806. //
  807. // ultraTabPageControl1
  808. //
  809. this.ultraTabPageControl1.Controls.Add(this.txt_TaxAmt);
  810. this.ultraTabPageControl1.Controls.Add(this.txt_AftPaymentAmt1);
  811. this.ultraTabPageControl1.Controls.Add(this.txt_WithAmtTax);
  812. this.ultraTabPageControl1.Controls.Add(this.txt_WithoutTaxAmt);
  813. this.ultraTabPageControl1.Controls.Add(this.ultraLabel18);
  814. this.ultraTabPageControl1.Controls.Add(this.txt_deliveryType);
  815. this.ultraTabPageControl1.Controls.Add(this.txt_deliveryCondition);
  816. this.ultraTabPageControl1.Controls.Add(this.ultraLabel15);
  817. this.ultraTabPageControl1.Controls.Add(this.txt_OrderMoneyType);
  818. this.ultraTabPageControl1.Controls.Add(this.ultraLabel7);
  819. this.ultraTabPageControl1.Controls.Add(this.txt_CreateTime);
  820. this.ultraTabPageControl1.Controls.Add(this.currencylabel1);
  821. this.ultraTabPageControl1.Controls.Add(this.currencylabel4);
  822. this.ultraTabPageControl1.Controls.Add(this.ultraLabel71);
  823. this.ultraTabPageControl1.Controls.Add(this.txt_TaxRateName);
  824. this.ultraTabPageControl1.Controls.Add(this.currencylabel2);
  825. this.ultraTabPageControl1.Controls.Add(this.currencylabel3);
  826. this.ultraTabPageControl1.Controls.Add(this.txt_SignDate);
  827. this.ultraTabPageControl1.Controls.Add(this.txt_OrderType);
  828. this.ultraTabPageControl1.Controls.Add(this.txt_OrderClass);
  829. this.ultraTabPageControl1.Controls.Add(this.txt_Currency);
  830. this.ultraTabPageControl1.Controls.Add(this.txt_SignAddress);
  831. this.ultraTabPageControl1.Controls.Add(this.txt_TitleName);
  832. this.ultraTabPageControl1.Controls.Add(this.txt_BuyerName);
  833. this.ultraTabPageControl1.Controls.Add(this.txt_ExchangeRateCur);
  834. this.ultraTabPageControl1.Controls.Add(this.txt_SuppName);
  835. this.ultraTabPageControl1.Controls.Add(this.txt_ModeName);
  836. this.ultraTabPageControl1.Controls.Add(this.txt_TaskRecordId);
  837. this.ultraTabPageControl1.Controls.Add(this.txt_OrderId);
  838. this.ultraTabPageControl1.Controls.Add(this.ultraLabel22);
  839. this.ultraTabPageControl1.Controls.Add(this.ultraLabel23);
  840. this.ultraTabPageControl1.Controls.Add(this.ultraLabel16);
  841. this.ultraTabPageControl1.Controls.Add(this.ultraLabel19);
  842. this.ultraTabPageControl1.Controls.Add(this.ultraLabel11);
  843. this.ultraTabPageControl1.Controls.Add(this.ultraLabel12);
  844. this.ultraTabPageControl1.Controls.Add(this.ultraLabel13);
  845. this.ultraTabPageControl1.Controls.Add(this.ultraLabel14);
  846. this.ultraTabPageControl1.Controls.Add(this.ultraLabel6);
  847. this.ultraTabPageControl1.Controls.Add(this.ultraLabel8);
  848. this.ultraTabPageControl1.Controls.Add(this.ultraLabel9);
  849. this.ultraTabPageControl1.Controls.Add(this.ultraLabel10);
  850. this.ultraTabPageControl1.Controls.Add(this.ultraLabel5);
  851. this.ultraTabPageControl1.Controls.Add(this.ultraLabel4);
  852. this.ultraTabPageControl1.Controls.Add(this.ultraLabel3);
  853. this.ultraTabPageControl1.Controls.Add(this.ultraLabel2);
  854. this.ultraTabPageControl1.Controls.Add(this.ultraLabel1);
  855. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 23);
  856. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  857. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  858. this.ultraTabPageControl1.Size = new System.Drawing.Size(1346, 174);
  859. //
  860. // txt_TaxAmt
  861. //
  862. this.txt_TaxAmt.Location = new System.Drawing.Point(441, 142);
  863. this.txt_TaxAmt.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  864. this.txt_TaxAmt.MaskInput = "{double:9.2}";
  865. this.txt_TaxAmt.Name = "txt_TaxAmt";
  866. this.txt_TaxAmt.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  867. this.txt_TaxAmt.ReadOnly = true;
  868. this.txt_TaxAmt.Size = new System.Drawing.Size(178, 21);
  869. this.txt_TaxAmt.TabIndex = 119;
  870. //
  871. // txt_AftPaymentAmt1
  872. //
  873. this.txt_AftPaymentAmt1.Location = new System.Drawing.Point(441, 119);
  874. this.txt_AftPaymentAmt1.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  875. this.txt_AftPaymentAmt1.MaskInput = "{double:9.2}";
  876. this.txt_AftPaymentAmt1.Name = "txt_AftPaymentAmt1";
  877. this.txt_AftPaymentAmt1.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  878. this.txt_AftPaymentAmt1.ReadOnly = true;
  879. this.txt_AftPaymentAmt1.Size = new System.Drawing.Size(178, 21);
  880. this.txt_AftPaymentAmt1.TabIndex = 118;
  881. //
  882. // txt_WithAmtTax
  883. //
  884. this.txt_WithAmtTax.Location = new System.Drawing.Point(441, 73);
  885. this.txt_WithAmtTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  886. this.txt_WithAmtTax.MaskInput = "{double:9.2}";
  887. this.txt_WithAmtTax.Name = "txt_WithAmtTax";
  888. this.txt_WithAmtTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  889. this.txt_WithAmtTax.ReadOnly = true;
  890. this.txt_WithAmtTax.Size = new System.Drawing.Size(178, 21);
  891. this.txt_WithAmtTax.TabIndex = 117;
  892. //
  893. // txt_WithoutTaxAmt
  894. //
  895. this.txt_WithoutTaxAmt.Location = new System.Drawing.Point(441, 50);
  896. this.txt_WithoutTaxAmt.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  897. this.txt_WithoutTaxAmt.MaskInput = "{double:9.2}";
  898. this.txt_WithoutTaxAmt.Name = "txt_WithoutTaxAmt";
  899. this.txt_WithoutTaxAmt.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  900. this.txt_WithoutTaxAmt.ReadOnly = true;
  901. this.txt_WithoutTaxAmt.Size = new System.Drawing.Size(178, 21);
  902. this.txt_WithoutTaxAmt.TabIndex = 116;
  903. //
  904. // ultraLabel18
  905. //
  906. this.ultraLabel18.AutoSize = true;
  907. this.ultraLabel18.Location = new System.Drawing.Point(713, 52);
  908. this.ultraLabel18.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  909. this.ultraLabel18.Name = "ultraLabel18";
  910. this.ultraLabel18.Size = new System.Drawing.Size(54, 16);
  911. this.ultraLabel18.TabIndex = 77;
  912. this.ultraLabel18.Text = "运输类型";
  913. //
  914. // txt_deliveryType
  915. //
  916. this.txt_deliveryType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  917. this.txt_deliveryType.Location = new System.Drawing.Point(771, 50);
  918. this.txt_deliveryType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  919. this.txt_deliveryType.Name = "txt_deliveryType";
  920. this.txt_deliveryType.Size = new System.Drawing.Size(180, 21);
  921. this.txt_deliveryType.TabIndex = 76;
  922. //
  923. // txt_deliveryCondition
  924. //
  925. this.txt_deliveryCondition.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  926. this.txt_deliveryCondition.Location = new System.Drawing.Point(771, 27);
  927. this.txt_deliveryCondition.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  928. this.txt_deliveryCondition.Name = "txt_deliveryCondition";
  929. this.txt_deliveryCondition.Size = new System.Drawing.Size(180, 21);
  930. this.txt_deliveryCondition.TabIndex = 75;
  931. //
  932. // ultraLabel15
  933. //
  934. this.ultraLabel15.AutoSize = true;
  935. this.ultraLabel15.Location = new System.Drawing.Point(713, 29);
  936. this.ultraLabel15.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  937. this.ultraLabel15.Name = "ultraLabel15";
  938. this.ultraLabel15.Size = new System.Drawing.Size(54, 16);
  939. this.ultraLabel15.TabIndex = 74;
  940. this.ultraLabel15.Text = "运输条件";
  941. //
  942. // txt_OrderMoneyType
  943. //
  944. this.txt_OrderMoneyType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  945. this.txt_OrderMoneyType.Location = new System.Drawing.Point(441, 96);
  946. this.txt_OrderMoneyType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  947. this.txt_OrderMoneyType.Name = "txt_OrderMoneyType";
  948. this.txt_OrderMoneyType.Size = new System.Drawing.Size(178, 21);
  949. this.txt_OrderMoneyType.TabIndex = 71;
  950. //
  951. // ultraLabel7
  952. //
  953. this.ultraLabel7.AutoSize = true;
  954. this.ultraLabel7.Location = new System.Drawing.Point(356, 98);
  955. this.ultraLabel7.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  956. this.ultraLabel7.Name = "ultraLabel7";
  957. this.ultraLabel7.Size = new System.Drawing.Size(79, 16);
  958. this.ultraLabel7.TabIndex = 70;
  959. this.ultraLabel7.Text = "合同金额分类";
  960. //
  961. // txt_CreateTime
  962. //
  963. this.txt_CreateTime.DateButtons.Add(dateButton1);
  964. this.txt_CreateTime.Location = new System.Drawing.Point(771, 96);
  965. this.txt_CreateTime.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  966. this.txt_CreateTime.Name = "txt_CreateTime";
  967. this.txt_CreateTime.NonAutoSizeHeight = 25;
  968. this.txt_CreateTime.ReadOnly = true;
  969. this.txt_CreateTime.Size = new System.Drawing.Size(180, 21);
  970. this.txt_CreateTime.TabIndex = 68;
  971. this.txt_CreateTime.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  972. //
  973. // currencylabel1
  974. //
  975. appearance39.FontData.BoldAsString = "False";
  976. this.currencylabel1.Appearance = appearance39;
  977. this.currencylabel1.AutoSize = true;
  978. this.currencylabel1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  979. this.currencylabel1.Location = new System.Drawing.Point(624, 150);
  980. this.currencylabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  981. this.currencylabel1.Name = "currencylabel1";
  982. this.currencylabel1.Size = new System.Drawing.Size(11, 14);
  983. this.currencylabel1.TabIndex = 66;
  984. this.currencylabel1.Text = "-";
  985. //
  986. // currencylabel4
  987. //
  988. appearance38.FontData.BoldAsString = "False";
  989. this.currencylabel4.Appearance = appearance38;
  990. this.currencylabel4.AutoSize = true;
  991. this.currencylabel4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  992. this.currencylabel4.Location = new System.Drawing.Point(624, 127);
  993. this.currencylabel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  994. this.currencylabel4.Name = "currencylabel4";
  995. this.currencylabel4.Size = new System.Drawing.Size(11, 14);
  996. this.currencylabel4.TabIndex = 65;
  997. this.currencylabel4.Text = "-";
  998. //
  999. // ultraLabel71
  1000. //
  1001. this.ultraLabel71.AutoSize = true;
  1002. this.ultraLabel71.Location = new System.Drawing.Point(381, 144);
  1003. this.ultraLabel71.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1004. this.ultraLabel71.Name = "ultraLabel71";
  1005. this.ultraLabel71.Size = new System.Drawing.Size(54, 16);
  1006. this.ultraLabel71.TabIndex = 64;
  1007. this.ultraLabel71.Text = "合同税额";
  1008. //
  1009. // txt_TaxRateName
  1010. //
  1011. this.txt_TaxRateName.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1012. valueListItem25.CheckState = System.Windows.Forms.CheckState.Checked;
  1013. valueListItem25.DataValue = "16%";
  1014. valueListItem25.DisplayText = "16%";
  1015. valueListItem26.DataValue = "13%";
  1016. valueListItem26.DisplayText = "13%";
  1017. valueListItem33.DataValue = "11%";
  1018. valueListItem33.DisplayText = "11%";
  1019. valueListItem34.DataValue = "7%";
  1020. valueListItem34.DisplayText = "7%";
  1021. valueListItem21.DataValue = "6%";
  1022. valueListItem21.DisplayText = "6%";
  1023. valueListItem29.DataValue = "4%";
  1024. valueListItem29.DisplayText = "4%";
  1025. valueListItem30.DataValue = "3%";
  1026. valueListItem30.DisplayText = "3%";
  1027. valueListItem31.DataValue = "2%";
  1028. valueListItem31.DisplayText = "2%";
  1029. valueListItem32.DataValue = "0%";
  1030. valueListItem32.DisplayText = "0%";
  1031. this.txt_TaxRateName.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1032. valueListItem25,
  1033. valueListItem26,
  1034. valueListItem33,
  1035. valueListItem34,
  1036. valueListItem21,
  1037. valueListItem29,
  1038. valueListItem30,
  1039. valueListItem31,
  1040. valueListItem32});
  1041. this.txt_TaxRateName.Location = new System.Drawing.Point(441, 27);
  1042. this.txt_TaxRateName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1043. this.txt_TaxRateName.Name = "txt_TaxRateName";
  1044. this.txt_TaxRateName.Size = new System.Drawing.Size(178, 21);
  1045. this.txt_TaxRateName.TabIndex = 63;
  1046. //
  1047. // currencylabel2
  1048. //
  1049. appearance4.FontData.BoldAsString = "False";
  1050. this.currencylabel2.Appearance = appearance4;
  1051. this.currencylabel2.AutoSize = true;
  1052. this.currencylabel2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1053. this.currencylabel2.Location = new System.Drawing.Point(624, 52);
  1054. this.currencylabel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1055. this.currencylabel2.Name = "currencylabel2";
  1056. this.currencylabel2.Size = new System.Drawing.Size(11, 14);
  1057. this.currencylabel2.TabIndex = 62;
  1058. this.currencylabel2.Text = "-";
  1059. //
  1060. // currencylabel3
  1061. //
  1062. appearance6.FontData.BoldAsString = "False";
  1063. this.currencylabel3.Appearance = appearance6;
  1064. this.currencylabel3.AutoSize = true;
  1065. this.currencylabel3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1066. this.currencylabel3.Location = new System.Drawing.Point(624, 78);
  1067. this.currencylabel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1068. this.currencylabel3.Name = "currencylabel3";
  1069. this.currencylabel3.Size = new System.Drawing.Size(11, 14);
  1070. this.currencylabel3.TabIndex = 61;
  1071. this.currencylabel3.Text = "-";
  1072. //
  1073. // txt_SignDate
  1074. //
  1075. this.txt_SignDate.DateButtons.Add(dateButton2);
  1076. this.txt_SignDate.Location = new System.Drawing.Point(771, 73);
  1077. this.txt_SignDate.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1078. this.txt_SignDate.Name = "txt_SignDate";
  1079. this.txt_SignDate.NonAutoSizeHeight = 25;
  1080. this.txt_SignDate.Size = new System.Drawing.Size(180, 21);
  1081. this.txt_SignDate.TabIndex = 7;
  1082. this.txt_SignDate.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  1083. //
  1084. // txt_OrderType
  1085. //
  1086. this.txt_OrderType.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.Suggest;
  1087. this.txt_OrderType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1088. this.txt_OrderType.Location = new System.Drawing.Point(119, 73);
  1089. this.txt_OrderType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1090. this.txt_OrderType.Name = "txt_OrderType";
  1091. this.txt_OrderType.Size = new System.Drawing.Size(180, 21);
  1092. this.txt_OrderType.TabIndex = 4;
  1093. //
  1094. // txt_OrderClass
  1095. //
  1096. this.txt_OrderClass.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1097. this.txt_OrderClass.Location = new System.Drawing.Point(119, 50);
  1098. this.txt_OrderClass.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1099. this.txt_OrderClass.Name = "txt_OrderClass";
  1100. this.txt_OrderClass.Size = new System.Drawing.Size(180, 21);
  1101. this.txt_OrderClass.TabIndex = 19;
  1102. //
  1103. // txt_Currency
  1104. //
  1105. this.txt_Currency.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1106. this.txt_Currency.Location = new System.Drawing.Point(441, 4);
  1107. this.txt_Currency.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1108. this.txt_Currency.Name = "txt_Currency";
  1109. this.txt_Currency.Size = new System.Drawing.Size(178, 21);
  1110. this.txt_Currency.TabIndex = 10;
  1111. this.txt_Currency.ValueChanged += new System.EventHandler(this.txt_Currency_ValueChanged);
  1112. //
  1113. // txt_SignAddress
  1114. //
  1115. this.txt_SignAddress.AcceptsReturn = true;
  1116. this.txt_SignAddress.Location = new System.Drawing.Point(771, 119);
  1117. this.txt_SignAddress.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1118. this.txt_SignAddress.Name = "txt_SignAddress";
  1119. this.txt_SignAddress.Size = new System.Drawing.Size(180, 21);
  1120. this.txt_SignAddress.TabIndex = 9;
  1121. //
  1122. // txt_TitleName
  1123. //
  1124. appearance48.FontData.BoldAsString = "True";
  1125. editorButton1.Appearance = appearance48;
  1126. appearance65.FontData.BoldAsString = "True";
  1127. editorButton1.PressedAppearance = appearance65;
  1128. editorButton1.Text = "+";
  1129. this.txt_TitleName.ButtonsRight.Add(editorButton1);
  1130. this.txt_TitleName.Location = new System.Drawing.Point(119, 119);
  1131. this.txt_TitleName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1132. this.txt_TitleName.Name = "txt_TitleName";
  1133. this.txt_TitleName.ReadOnly = true;
  1134. this.txt_TitleName.Size = new System.Drawing.Size(180, 21);
  1135. this.txt_TitleName.TabIndex = 18;
  1136. this.txt_TitleName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_TitleName_EditorButtonClick);
  1137. //
  1138. // txt_BuyerName
  1139. //
  1140. this.txt_BuyerName.Location = new System.Drawing.Point(771, 142);
  1141. this.txt_BuyerName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1142. this.txt_BuyerName.Name = "txt_BuyerName";
  1143. this.txt_BuyerName.ReadOnly = true;
  1144. this.txt_BuyerName.Size = new System.Drawing.Size(180, 21);
  1145. this.txt_BuyerName.TabIndex = 8;
  1146. //
  1147. // txt_ExchangeRateCur
  1148. //
  1149. this.txt_ExchangeRateCur.Location = new System.Drawing.Point(771, 4);
  1150. this.txt_ExchangeRateCur.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1151. this.txt_ExchangeRateCur.Name = "txt_ExchangeRateCur";
  1152. this.txt_ExchangeRateCur.ReadOnly = true;
  1153. this.txt_ExchangeRateCur.Size = new System.Drawing.Size(180, 21);
  1154. this.txt_ExchangeRateCur.TabIndex = 11;
  1155. //
  1156. // txt_SuppName
  1157. //
  1158. appearance15.FontData.BoldAsString = "True";
  1159. editorButton2.Appearance = appearance15;
  1160. editorButton2.Text = "+";
  1161. this.txt_SuppName.ButtonsRight.Add(editorButton2);
  1162. this.txt_SuppName.Location = new System.Drawing.Point(119, 142);
  1163. this.txt_SuppName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1164. this.txt_SuppName.Name = "txt_SuppName";
  1165. this.txt_SuppName.ReadOnly = true;
  1166. this.txt_SuppName.Size = new System.Drawing.Size(180, 21);
  1167. this.txt_SuppName.TabIndex = 6;
  1168. this.txt_SuppName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_SuppName_EditorButtonClick);
  1169. //
  1170. // txt_ModeName
  1171. //
  1172. this.txt_ModeName.Location = new System.Drawing.Point(119, 96);
  1173. this.txt_ModeName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1174. this.txt_ModeName.Name = "txt_ModeName";
  1175. this.txt_ModeName.ReadOnly = true;
  1176. this.txt_ModeName.Size = new System.Drawing.Size(180, 21);
  1177. this.txt_ModeName.TabIndex = 1;
  1178. this.txt_ModeName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ModeName_EditorButtonClick);
  1179. //
  1180. // txt_TaskRecordId
  1181. //
  1182. editorButton3.Text = "...";
  1183. this.txt_TaskRecordId.ButtonsRight.Add(editorButton3);
  1184. this.txt_TaskRecordId.Location = new System.Drawing.Point(119, 27);
  1185. this.txt_TaskRecordId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1186. this.txt_TaskRecordId.Name = "txt_TaskRecordId";
  1187. this.txt_TaskRecordId.ReadOnly = true;
  1188. this.txt_TaskRecordId.Size = new System.Drawing.Size(180, 21);
  1189. this.txt_TaskRecordId.TabIndex = 5;
  1190. //
  1191. // txt_OrderId
  1192. //
  1193. this.txt_OrderId.Location = new System.Drawing.Point(119, 4);
  1194. this.txt_OrderId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1195. this.txt_OrderId.Name = "txt_OrderId";
  1196. this.txt_OrderId.ReadOnly = true;
  1197. this.txt_OrderId.Size = new System.Drawing.Size(180, 21);
  1198. this.txt_OrderId.TabIndex = 0;
  1199. //
  1200. // ultraLabel22
  1201. //
  1202. this.ultraLabel22.AutoSize = true;
  1203. this.ultraLabel22.Location = new System.Drawing.Point(713, 121);
  1204. this.ultraLabel22.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1205. this.ultraLabel22.Name = "ultraLabel22";
  1206. this.ultraLabel22.Size = new System.Drawing.Size(54, 16);
  1207. this.ultraLabel22.TabIndex = 23;
  1208. this.ultraLabel22.Text = "签订地点";
  1209. //
  1210. // ultraLabel23
  1211. //
  1212. this.ultraLabel23.AutoSize = true;
  1213. this.ultraLabel23.Location = new System.Drawing.Point(61, 75);
  1214. this.ultraLabel23.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1215. this.ultraLabel23.Name = "ultraLabel23";
  1216. this.ultraLabel23.Size = new System.Drawing.Size(54, 16);
  1217. this.ultraLabel23.TabIndex = 22;
  1218. this.ultraLabel23.Text = "合同类别";
  1219. //
  1220. // ultraLabel16
  1221. //
  1222. this.ultraLabel16.AutoSize = true;
  1223. this.ultraLabel16.Location = new System.Drawing.Point(86, 121);
  1224. this.ultraLabel16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1225. this.ultraLabel16.Name = "ultraLabel16";
  1226. this.ultraLabel16.Size = new System.Drawing.Size(29, 16);
  1227. this.ultraLabel16.TabIndex = 19;
  1228. this.ultraLabel16.Text = "买方";
  1229. //
  1230. // ultraLabel19
  1231. //
  1232. this.ultraLabel19.AutoSize = true;
  1233. this.ultraLabel19.Location = new System.Drawing.Point(725, 144);
  1234. this.ultraLabel19.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1235. this.ultraLabel19.Name = "ultraLabel19";
  1236. this.ultraLabel19.Size = new System.Drawing.Size(42, 16);
  1237. this.ultraLabel19.TabIndex = 16;
  1238. this.ultraLabel19.Text = "业务员";
  1239. //
  1240. // ultraLabel11
  1241. //
  1242. this.ultraLabel11.AutoSize = true;
  1243. this.ultraLabel11.Location = new System.Drawing.Point(381, 75);
  1244. this.ultraLabel11.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1245. this.ultraLabel11.Name = "ultraLabel11";
  1246. this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
  1247. this.ultraLabel11.TabIndex = 14;
  1248. this.ultraLabel11.Text = "含税金额";
  1249. //
  1250. // ultraLabel12
  1251. //
  1252. this.ultraLabel12.AutoSize = true;
  1253. this.ultraLabel12.Location = new System.Drawing.Point(393, 121);
  1254. this.ultraLabel12.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1255. this.ultraLabel12.Name = "ultraLabel12";
  1256. this.ultraLabel12.Size = new System.Drawing.Size(42, 16);
  1257. this.ultraLabel12.TabIndex = 13;
  1258. this.ultraLabel12.Text = "预付款";
  1259. //
  1260. // ultraLabel13
  1261. //
  1262. this.ultraLabel13.AutoSize = true;
  1263. this.ultraLabel13.Location = new System.Drawing.Point(713, 98);
  1264. this.ultraLabel13.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1265. this.ultraLabel13.Name = "ultraLabel13";
  1266. this.ultraLabel13.Size = new System.Drawing.Size(54, 16);
  1267. this.ultraLabel13.TabIndex = 12;
  1268. this.ultraLabel13.Text = "录入日期";
  1269. //
  1270. // ultraLabel14
  1271. //
  1272. this.ultraLabel14.AutoSize = true;
  1273. this.ultraLabel14.Location = new System.Drawing.Point(713, 75);
  1274. this.ultraLabel14.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1275. this.ultraLabel14.Name = "ultraLabel14";
  1276. this.ultraLabel14.Size = new System.Drawing.Size(54, 16);
  1277. this.ultraLabel14.TabIndex = 11;
  1278. this.ultraLabel14.Text = "签订日期";
  1279. //
  1280. // ultraLabel6
  1281. //
  1282. this.ultraLabel6.AutoSize = true;
  1283. this.ultraLabel6.Location = new System.Drawing.Point(369, 52);
  1284. this.ultraLabel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1285. this.ultraLabel6.Name = "ultraLabel6";
  1286. this.ultraLabel6.Size = new System.Drawing.Size(66, 16);
  1287. this.ultraLabel6.TabIndex = 9;
  1288. this.ultraLabel6.Text = "不含税金额";
  1289. //
  1290. // ultraLabel8
  1291. //
  1292. this.ultraLabel8.AutoSize = true;
  1293. this.ultraLabel8.Location = new System.Drawing.Point(688, 6);
  1294. this.ultraLabel8.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1295. this.ultraLabel8.Name = "ultraLabel8";
  1296. this.ultraLabel8.Size = new System.Drawing.Size(79, 16);
  1297. this.ultraLabel8.TabIndex = 7;
  1298. this.ultraLabel8.Text = "当前兑换汇率";
  1299. //
  1300. // ultraLabel9
  1301. //
  1302. this.ultraLabel9.AutoSize = true;
  1303. this.ultraLabel9.Location = new System.Drawing.Point(73, 144);
  1304. this.ultraLabel9.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1305. this.ultraLabel9.Name = "ultraLabel9";
  1306. this.ultraLabel9.Size = new System.Drawing.Size(42, 16);
  1307. this.ultraLabel9.TabIndex = 6;
  1308. this.ultraLabel9.Text = "供应商";
  1309. //
  1310. // ultraLabel10
  1311. //
  1312. this.ultraLabel10.AutoSize = true;
  1313. this.ultraLabel10.Location = new System.Drawing.Point(61, 98);
  1314. this.ultraLabel10.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1315. this.ultraLabel10.Name = "ultraLabel10";
  1316. this.ultraLabel10.Size = new System.Drawing.Size(54, 16);
  1317. this.ultraLabel10.TabIndex = 5;
  1318. this.ultraLabel10.Text = "合同模板";
  1319. //
  1320. // ultraLabel5
  1321. //
  1322. this.ultraLabel5.AutoSize = true;
  1323. this.ultraLabel5.Location = new System.Drawing.Point(61, 52);
  1324. this.ultraLabel5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1325. this.ultraLabel5.Name = "ultraLabel5";
  1326. this.ultraLabel5.Size = new System.Drawing.Size(54, 16);
  1327. this.ultraLabel5.TabIndex = 4;
  1328. this.ultraLabel5.Text = "合同分类";
  1329. //
  1330. // ultraLabel4
  1331. //
  1332. this.ultraLabel4.AutoSize = true;
  1333. this.ultraLabel4.Location = new System.Drawing.Point(381, 29);
  1334. this.ultraLabel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1335. this.ultraLabel4.Name = "ultraLabel4";
  1336. this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
  1337. this.ultraLabel4.TabIndex = 3;
  1338. this.ultraLabel4.Text = "合同税率";
  1339. //
  1340. // ultraLabel3
  1341. //
  1342. this.ultraLabel3.AutoSize = true;
  1343. this.ultraLabel3.Location = new System.Drawing.Point(356, 6);
  1344. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1345. this.ultraLabel3.Name = "ultraLabel3";
  1346. this.ultraLabel3.Size = new System.Drawing.Size(79, 16);
  1347. this.ultraLabel3.TabIndex = 2;
  1348. this.ultraLabel3.Text = "合同货币代码";
  1349. //
  1350. // ultraLabel2
  1351. //
  1352. this.ultraLabel2.AutoSize = true;
  1353. this.ultraLabel2.Location = new System.Drawing.Point(49, 29);
  1354. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1355. this.ultraLabel2.Name = "ultraLabel2";
  1356. this.ultraLabel2.Size = new System.Drawing.Size(66, 16);
  1357. this.ultraLabel2.TabIndex = 1;
  1358. this.ultraLabel2.Text = "采购纪要号";
  1359. //
  1360. // ultraLabel1
  1361. //
  1362. this.ultraLabel1.AutoSize = true;
  1363. this.ultraLabel1.Location = new System.Drawing.Point(73, 6);
  1364. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1365. this.ultraLabel1.Name = "ultraLabel1";
  1366. this.ultraLabel1.Size = new System.Drawing.Size(42, 16);
  1367. this.ultraLabel1.TabIndex = 0;
  1368. this.ultraLabel1.Text = "合同号";
  1369. //
  1370. // ultraTabPageControl2
  1371. //
  1372. this.ultraTabPageControl2.Controls.Add(this.txt_TaxAmt2);
  1373. this.ultraTabPageControl2.Controls.Add(this.txt_WithoutTaxAmt2);
  1374. this.ultraTabPageControl2.Controls.Add(this.txt_PriceWithTax);
  1375. this.ultraTabPageControl2.Controls.Add(this.txt_PriceWithoutTax);
  1376. this.ultraTabPageControl2.Controls.Add(this.txt_Qty);
  1377. this.ultraTabPageControl2.Controls.Add(this.txt_WithAmtTax2);
  1378. this.ultraTabPageControl2.Controls.Add(this.txt_paymentType);
  1379. this.ultraTabPageControl2.Controls.Add(this.ultraLabel21);
  1380. this.ultraTabPageControl2.Controls.Add(this.txt_packType);
  1381. this.ultraTabPageControl2.Controls.Add(this.ultraLabel20);
  1382. this.ultraTabPageControl2.Controls.Add(this.txt_purstandardscode);
  1383. this.ultraTabPageControl2.Controls.Add(this.txt_UNIT);
  1384. this.ultraTabPageControl2.Controls.Add(this.txt_WEIGHTUNIT);
  1385. this.ultraTabPageControl2.Controls.Add(this.ultraLabel76);
  1386. this.ultraTabPageControl2.Controls.Add(this.txt_Remark);
  1387. this.ultraTabPageControl2.Controls.Add(this.ultraLabel75);
  1388. this.ultraTabPageControl2.Controls.Add(this.txt_itemAttrName);
  1389. this.ultraTabPageControl2.Controls.Add(this.currencyLabel63);
  1390. this.ultraTabPageControl2.Controls.Add(this.currencyLabel64);
  1391. this.ultraTabPageControl2.Controls.Add(this.ultraLabel72);
  1392. this.ultraTabPageControl2.Controls.Add(this.txt_Pur_Clause);
  1393. this.ultraTabPageControl2.Controls.Add(this.ultraLabel70);
  1394. this.ultraTabPageControl2.Controls.Add(this.ultraLabel69);
  1395. this.ultraTabPageControl2.Controls.Add(this.currencyLabel65);
  1396. this.ultraTabPageControl2.Controls.Add(this.currencyLabel66);
  1397. this.ultraTabPageControl2.Controls.Add(this.currencyLabel62);
  1398. this.ultraTabPageControl2.Controls.Add(this.ultraLabel63);
  1399. this.ultraTabPageControl2.Controls.Add(this.ultraLabel57);
  1400. this.ultraTabPageControl2.Controls.Add(this.txt_ItemUomConefficient);
  1401. this.ultraTabPageControl2.Controls.Add(this.ultraLabel58);
  1402. this.ultraTabPageControl2.Controls.Add(this.ultraTextEditor6);
  1403. this.ultraTabPageControl2.Controls.Add(this.ultraLabel61);
  1404. this.ultraTabPageControl2.Controls.Add(this.txt_EndDate2);
  1405. this.ultraTabPageControl2.Controls.Add(this.txt_StartDate2);
  1406. this.ultraTabPageControl2.Controls.Add(this.txt_ReceiveType);
  1407. this.ultraTabPageControl2.Controls.Add(this.txt_QuantityPriceNum);
  1408. this.ultraTabPageControl2.Controls.Add(this.txt_GradePriceNo);
  1409. this.ultraTabPageControl2.Controls.Add(this.txt_ChemPriceNo);
  1410. this.ultraTabPageControl2.Controls.Add(this.txt_BuyerName2);
  1411. this.ultraTabPageControl2.Controls.Add(this.txt_DelvryRangeMin);
  1412. this.ultraTabPageControl2.Controls.Add(this.txt_ItemName);
  1413. this.ultraTabPageControl2.Controls.Add(this.txt_ItemCode);
  1414. this.ultraTabPageControl2.Controls.Add(this.txt_OrderLineSqe);
  1415. this.ultraTabPageControl2.Controls.Add(this.ultraLabel59);
  1416. this.ultraTabPageControl2.Controls.Add(this.ultraLabel49);
  1417. this.ultraTabPageControl2.Controls.Add(this.ultraLabel51);
  1418. this.ultraTabPageControl2.Controls.Add(this.ultraLabel53);
  1419. this.ultraTabPageControl2.Controls.Add(this.ultraLabel43);
  1420. this.ultraTabPageControl2.Controls.Add(this.ultraLabel44);
  1421. this.ultraTabPageControl2.Controls.Add(this.ultraLabel45);
  1422. this.ultraTabPageControl2.Controls.Add(this.ultraLabel47);
  1423. this.ultraTabPageControl2.Controls.Add(this.ultraLabel36);
  1424. this.ultraTabPageControl2.Controls.Add(this.ultraLabel37);
  1425. this.ultraTabPageControl2.Controls.Add(this.ultraLabel39);
  1426. this.ultraTabPageControl2.Controls.Add(this.ultraLabel33);
  1427. this.ultraTabPageControl2.Controls.Add(this.ultraLabel34);
  1428. this.ultraTabPageControl2.Controls.Add(this.ultraLabel27);
  1429. this.ultraTabPageControl2.Controls.Add(this.ultraLabel25);
  1430. this.ultraTabPageControl2.Controls.Add(this.ultraLabel24);
  1431. this.ultraTabPageControl2.Location = new System.Drawing.Point(-7500, -8000);
  1432. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1433. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1434. this.ultraTabPageControl2.Size = new System.Drawing.Size(670, 174);
  1435. //
  1436. // txt_TaxAmt2
  1437. //
  1438. this.txt_TaxAmt2.Location = new System.Drawing.Point(454, 148);
  1439. this.txt_TaxAmt2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1440. this.txt_TaxAmt2.MaskInput = "{double:9.2}";
  1441. this.txt_TaxAmt2.Name = "txt_TaxAmt2";
  1442. this.txt_TaxAmt2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1443. this.txt_TaxAmt2.ReadOnly = true;
  1444. this.txt_TaxAmt2.Size = new System.Drawing.Size(178, 21);
  1445. this.txt_TaxAmt2.TabIndex = 114;
  1446. //
  1447. // txt_WithoutTaxAmt2
  1448. //
  1449. this.txt_WithoutTaxAmt2.Location = new System.Drawing.Point(454, 100);
  1450. this.txt_WithoutTaxAmt2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1451. this.txt_WithoutTaxAmt2.MaskInput = "{double:9.2}";
  1452. this.txt_WithoutTaxAmt2.Name = "txt_WithoutTaxAmt2";
  1453. this.txt_WithoutTaxAmt2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1454. this.txt_WithoutTaxAmt2.ReadOnly = true;
  1455. this.txt_WithoutTaxAmt2.Size = new System.Drawing.Size(178, 21);
  1456. this.txt_WithoutTaxAmt2.TabIndex = 113;
  1457. //
  1458. // txt_PriceWithTax
  1459. //
  1460. this.txt_PriceWithTax.Location = new System.Drawing.Point(454, 76);
  1461. this.txt_PriceWithTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1462. this.txt_PriceWithTax.MaskInput = "{double:9.2}";
  1463. this.txt_PriceWithTax.Name = "txt_PriceWithTax";
  1464. this.txt_PriceWithTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1465. this.txt_PriceWithTax.ReadOnly = true;
  1466. this.txt_PriceWithTax.Size = new System.Drawing.Size(178, 21);
  1467. this.txt_PriceWithTax.TabIndex = 112;
  1468. //
  1469. // txt_PriceWithoutTax
  1470. //
  1471. this.txt_PriceWithoutTax.Location = new System.Drawing.Point(454, 52);
  1472. this.txt_PriceWithoutTax.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1473. this.txt_PriceWithoutTax.MaskInput = "{double:9.2}";
  1474. this.txt_PriceWithoutTax.Name = "txt_PriceWithoutTax";
  1475. this.txt_PriceWithoutTax.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1476. this.txt_PriceWithoutTax.ReadOnly = true;
  1477. this.txt_PriceWithoutTax.Size = new System.Drawing.Size(178, 21);
  1478. this.txt_PriceWithoutTax.TabIndex = 111;
  1479. this.txt_PriceWithoutTax.ValueChanged += new System.EventHandler(this.txt_PriceWithoutTax_ValueChanged);
  1480. //
  1481. // txt_Qty
  1482. //
  1483. this.txt_Qty.Location = new System.Drawing.Point(454, 4);
  1484. this.txt_Qty.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1485. this.txt_Qty.MaskInput = "{double:9.2}";
  1486. this.txt_Qty.Name = "txt_Qty";
  1487. this.txt_Qty.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1488. this.txt_Qty.Size = new System.Drawing.Size(178, 21);
  1489. this.txt_Qty.TabIndex = 110;
  1490. this.txt_Qty.ValueChanged += new System.EventHandler(this.txt_QtyOrder_ValueChanged);
  1491. //
  1492. // txt_WithAmtTax2
  1493. //
  1494. this.txt_WithAmtTax2.Location = new System.Drawing.Point(454, 124);
  1495. this.txt_WithAmtTax2.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  1496. this.txt_WithAmtTax2.MaskInput = "{double:9.2}";
  1497. this.txt_WithAmtTax2.Name = "txt_WithAmtTax2";
  1498. this.txt_WithAmtTax2.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1499. this.txt_WithAmtTax2.ReadOnly = true;
  1500. this.txt_WithAmtTax2.Size = new System.Drawing.Size(178, 21);
  1501. this.txt_WithAmtTax2.TabIndex = 109;
  1502. //
  1503. // txt_paymentType
  1504. //
  1505. this.txt_paymentType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1506. this.txt_paymentType.Location = new System.Drawing.Point(819, 76);
  1507. this.txt_paymentType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1508. this.txt_paymentType.Name = "txt_paymentType";
  1509. this.txt_paymentType.Size = new System.Drawing.Size(180, 21);
  1510. this.txt_paymentType.TabIndex = 107;
  1511. //
  1512. // ultraLabel21
  1513. //
  1514. this.ultraLabel21.AutoSize = true;
  1515. this.ultraLabel21.Location = new System.Drawing.Point(758, 78);
  1516. this.ultraLabel21.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1517. this.ultraLabel21.Name = "ultraLabel21";
  1518. this.ultraLabel21.Size = new System.Drawing.Size(54, 16);
  1519. this.ultraLabel21.TabIndex = 108;
  1520. this.ultraLabel21.Text = "付款方式";
  1521. //
  1522. // txt_packType
  1523. //
  1524. this.txt_packType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1525. this.txt_packType.Location = new System.Drawing.Point(819, 52);
  1526. this.txt_packType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1527. this.txt_packType.Name = "txt_packType";
  1528. this.txt_packType.Size = new System.Drawing.Size(180, 21);
  1529. this.txt_packType.TabIndex = 105;
  1530. //
  1531. // ultraLabel20
  1532. //
  1533. this.ultraLabel20.AutoSize = true;
  1534. this.ultraLabel20.Location = new System.Drawing.Point(758, 54);
  1535. this.ultraLabel20.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1536. this.ultraLabel20.Name = "ultraLabel20";
  1537. this.ultraLabel20.Size = new System.Drawing.Size(54, 16);
  1538. this.ultraLabel20.TabIndex = 106;
  1539. this.ultraLabel20.Text = "包装类型";
  1540. //
  1541. // txt_purstandardscode
  1542. //
  1543. this.txt_purstandardscode.Location = new System.Drawing.Point(112, 100);
  1544. this.txt_purstandardscode.Name = "txt_purstandardscode";
  1545. this.txt_purstandardscode.ReadOnly = true;
  1546. this.txt_purstandardscode.Size = new System.Drawing.Size(178, 21);
  1547. this.txt_purstandardscode.TabIndex = 104;
  1548. //
  1549. // txt_UNIT
  1550. //
  1551. this.txt_UNIT.AutoSize = true;
  1552. this.txt_UNIT.Location = new System.Drawing.Point(642, 7);
  1553. this.txt_UNIT.Name = "txt_UNIT";
  1554. this.txt_UNIT.Size = new System.Drawing.Size(11, 12);
  1555. this.txt_UNIT.TabIndex = 103;
  1556. this.txt_UNIT.Text = "-";
  1557. //
  1558. // txt_WEIGHTUNIT
  1559. //
  1560. this.txt_WEIGHTUNIT.AutoSize = true;
  1561. this.txt_WEIGHTUNIT.Location = new System.Drawing.Point(642, 34);
  1562. this.txt_WEIGHTUNIT.Name = "txt_WEIGHTUNIT";
  1563. this.txt_WEIGHTUNIT.Size = new System.Drawing.Size(11, 12);
  1564. this.txt_WEIGHTUNIT.TabIndex = 102;
  1565. this.txt_WEIGHTUNIT.Text = "-";
  1566. //
  1567. // ultraLabel76
  1568. //
  1569. this.ultraLabel76.AutoSize = true;
  1570. this.ultraLabel76.Location = new System.Drawing.Point(783, 102);
  1571. this.ultraLabel76.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1572. this.ultraLabel76.Name = "ultraLabel76";
  1573. this.ultraLabel76.Size = new System.Drawing.Size(29, 16);
  1574. this.ultraLabel76.TabIndex = 101;
  1575. this.ultraLabel76.Text = "备注";
  1576. //
  1577. // txt_Remark
  1578. //
  1579. this.txt_Remark.Location = new System.Drawing.Point(819, 101);
  1580. this.txt_Remark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1581. this.txt_Remark.Multiline = true;
  1582. this.txt_Remark.Name = "txt_Remark";
  1583. this.txt_Remark.Size = new System.Drawing.Size(180, 68);
  1584. this.txt_Remark.TabIndex = 100;
  1585. //
  1586. // ultraLabel75
  1587. //
  1588. this.ultraLabel75.AutoSize = true;
  1589. this.ultraLabel75.Location = new System.Drawing.Point(51, 78);
  1590. this.ultraLabel75.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1591. this.ultraLabel75.Name = "ultraLabel75";
  1592. this.ultraLabel75.Size = new System.Drawing.Size(54, 16);
  1593. this.ultraLabel75.TabIndex = 97;
  1594. this.ultraLabel75.Text = "属性名称";
  1595. //
  1596. // txt_itemAttrName
  1597. //
  1598. this.txt_itemAttrName.Location = new System.Drawing.Point(112, 76);
  1599. this.txt_itemAttrName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1600. this.txt_itemAttrName.Name = "txt_itemAttrName";
  1601. this.txt_itemAttrName.ReadOnly = true;
  1602. this.txt_itemAttrName.Size = new System.Drawing.Size(178, 21);
  1603. this.txt_itemAttrName.TabIndex = 96;
  1604. //
  1605. // currencyLabel63
  1606. //
  1607. appearance43.FontData.BoldAsString = "False";
  1608. this.currencyLabel63.Appearance = appearance43;
  1609. this.currencyLabel63.AutoSize = true;
  1610. this.currencyLabel63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1611. this.currencyLabel63.Location = new System.Drawing.Point(642, 81);
  1612. this.currencyLabel63.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1613. this.currencyLabel63.Name = "currencyLabel63";
  1614. this.currencyLabel63.Size = new System.Drawing.Size(11, 14);
  1615. this.currencyLabel63.TabIndex = 95;
  1616. this.currencyLabel63.Text = "-";
  1617. //
  1618. // currencyLabel64
  1619. //
  1620. appearance42.FontData.BoldAsString = "False";
  1621. this.currencyLabel64.Appearance = appearance42;
  1622. this.currencyLabel64.AutoSize = true;
  1623. this.currencyLabel64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1624. this.currencyLabel64.Location = new System.Drawing.Point(642, 106);
  1625. this.currencyLabel64.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1626. this.currencyLabel64.Name = "currencyLabel64";
  1627. this.currencyLabel64.Size = new System.Drawing.Size(11, 14);
  1628. this.currencyLabel64.TabIndex = 94;
  1629. this.currencyLabel64.Text = "-";
  1630. //
  1631. // ultraLabel72
  1632. //
  1633. this.ultraLabel72.AutoSize = true;
  1634. this.ultraLabel72.Location = new System.Drawing.Point(394, 78);
  1635. this.ultraLabel72.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1636. this.ultraLabel72.Name = "ultraLabel72";
  1637. this.ultraLabel72.Size = new System.Drawing.Size(54, 16);
  1638. this.ultraLabel72.TabIndex = 93;
  1639. this.ultraLabel72.Text = "含税单价";
  1640. //
  1641. // txt_Pur_Clause
  1642. //
  1643. this.txt_Pur_Clause.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1644. this.txt_Pur_Clause.Location = new System.Drawing.Point(819, 4);
  1645. this.txt_Pur_Clause.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1646. this.txt_Pur_Clause.Name = "txt_Pur_Clause";
  1647. this.txt_Pur_Clause.Size = new System.Drawing.Size(180, 21);
  1648. this.txt_Pur_Clause.TabIndex = 92;
  1649. //
  1650. // ultraLabel70
  1651. //
  1652. this.ultraLabel70.AutoSize = true;
  1653. this.ultraLabel70.Location = new System.Drawing.Point(758, 6);
  1654. this.ultraLabel70.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1655. this.ultraLabel70.Name = "ultraLabel70";
  1656. this.ultraLabel70.Size = new System.Drawing.Size(54, 16);
  1657. this.ultraLabel70.TabIndex = 91;
  1658. this.ultraLabel70.Text = "结算条款";
  1659. //
  1660. // ultraLabel69
  1661. //
  1662. this.ultraLabel69.AutoSize = true;
  1663. this.ultraLabel69.Location = new System.Drawing.Point(51, 102);
  1664. this.ultraLabel69.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1665. this.ultraLabel69.Name = "ultraLabel69";
  1666. this.ultraLabel69.Size = new System.Drawing.Size(54, 16);
  1667. this.ultraLabel69.TabIndex = 89;
  1668. this.ultraLabel69.Text = "标准名称";
  1669. //
  1670. // currencyLabel65
  1671. //
  1672. appearance41.FontData.BoldAsString = "False";
  1673. this.currencyLabel65.Appearance = appearance41;
  1674. this.currencyLabel65.AutoSize = true;
  1675. this.currencyLabel65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1676. this.currencyLabel65.Location = new System.Drawing.Point(642, 128);
  1677. this.currencyLabel65.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1678. this.currencyLabel65.Name = "currencyLabel65";
  1679. this.currencyLabel65.Size = new System.Drawing.Size(11, 14);
  1680. this.currencyLabel65.TabIndex = 88;
  1681. this.currencyLabel65.Text = "-";
  1682. //
  1683. // currencyLabel66
  1684. //
  1685. appearance40.FontData.BoldAsString = "False";
  1686. this.currencyLabel66.Appearance = appearance40;
  1687. this.currencyLabel66.AutoSize = true;
  1688. this.currencyLabel66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1689. this.currencyLabel66.Location = new System.Drawing.Point(642, 151);
  1690. this.currencyLabel66.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1691. this.currencyLabel66.Name = "currencyLabel66";
  1692. this.currencyLabel66.Size = new System.Drawing.Size(11, 14);
  1693. this.currencyLabel66.TabIndex = 87;
  1694. this.currencyLabel66.Text = "-";
  1695. //
  1696. // currencyLabel62
  1697. //
  1698. appearance44.FontData.BoldAsString = "False";
  1699. this.currencyLabel62.Appearance = appearance44;
  1700. this.currencyLabel62.AutoSize = true;
  1701. this.currencyLabel62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1702. this.currencyLabel62.Location = new System.Drawing.Point(642, 55);
  1703. this.currencyLabel62.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1704. this.currencyLabel62.Name = "currencyLabel62";
  1705. this.currencyLabel62.Size = new System.Drawing.Size(11, 14);
  1706. this.currencyLabel62.TabIndex = 86;
  1707. this.currencyLabel62.Text = "-";
  1708. //
  1709. // ultraLabel63
  1710. //
  1711. this.ultraLabel63.AutoSize = true;
  1712. this.ultraLabel63.Location = new System.Drawing.Point(1048, 49);
  1713. this.ultraLabel63.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1714. this.ultraLabel63.Name = "ultraLabel63";
  1715. this.ultraLabel63.Size = new System.Drawing.Size(0, 0);
  1716. this.ultraLabel63.TabIndex = 84;
  1717. //
  1718. // ultraLabel57
  1719. //
  1720. this.ultraLabel57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1721. this.ultraLabel57.Location = new System.Drawing.Point(550, 34);
  1722. this.ultraLabel57.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1723. this.ultraLabel57.Name = "ultraLabel57";
  1724. this.ultraLabel57.Size = new System.Drawing.Size(13, 13);
  1725. this.ultraLabel57.TabIndex = 79;
  1726. this.ultraLabel57.Text = "=";
  1727. //
  1728. // txt_ItemUomConefficient
  1729. //
  1730. appearance23.TextHAlignAsString = "Right";
  1731. this.txt_ItemUomConefficient.Appearance = appearance23;
  1732. this.txt_ItemUomConefficient.Location = new System.Drawing.Point(487, 28);
  1733. this.txt_ItemUomConefficient.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1734. this.txt_ItemUomConefficient.Name = "txt_ItemUomConefficient";
  1735. this.txt_ItemUomConefficient.ReadOnly = true;
  1736. this.txt_ItemUomConefficient.Size = new System.Drawing.Size(52, 21);
  1737. this.txt_ItemUomConefficient.TabIndex = 78;
  1738. //
  1739. // ultraLabel58
  1740. //
  1741. this.ultraLabel58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1742. this.ultraLabel58.Location = new System.Drawing.Point(459, 33);
  1743. this.ultraLabel58.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1744. this.ultraLabel58.Name = "ultraLabel58";
  1745. this.ultraLabel58.Size = new System.Drawing.Size(17, 13);
  1746. this.ultraLabel58.TabIndex = 77;
  1747. this.ultraLabel58.Text = "×";
  1748. //
  1749. // ultraTextEditor6
  1750. //
  1751. appearance24.TextHAlignAsString = "Right";
  1752. this.ultraTextEditor6.Appearance = appearance24;
  1753. this.ultraTextEditor6.Location = new System.Drawing.Point(575, 28);
  1754. this.ultraTextEditor6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1755. this.ultraTextEditor6.Name = "ultraTextEditor6";
  1756. this.ultraTextEditor6.ReadOnly = true;
  1757. this.ultraTextEditor6.Size = new System.Drawing.Size(57, 21);
  1758. this.ultraTextEditor6.TabIndex = 76;
  1759. //
  1760. // ultraLabel61
  1761. //
  1762. this.ultraLabel61.AutoSize = true;
  1763. this.ultraLabel61.Location = new System.Drawing.Point(393, 30);
  1764. this.ultraLabel61.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1765. this.ultraLabel61.Name = "ultraLabel61";
  1766. this.ultraLabel61.Size = new System.Drawing.Size(54, 16);
  1767. this.ultraLabel61.TabIndex = 75;
  1768. this.ultraLabel61.Text = "库存数量";
  1769. //
  1770. // txt_EndDate2
  1771. //
  1772. this.txt_EndDate2.DateButtons.Add(dateButton3);
  1773. this.txt_EndDate2.Location = new System.Drawing.Point(112, 124);
  1774. this.txt_EndDate2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1775. this.txt_EndDate2.Name = "txt_EndDate2";
  1776. this.txt_EndDate2.NonAutoSizeHeight = 25;
  1777. this.txt_EndDate2.Size = new System.Drawing.Size(178, 21);
  1778. this.txt_EndDate2.TabIndex = 13;
  1779. this.txt_EndDate2.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  1780. //
  1781. // txt_StartDate2
  1782. //
  1783. this.txt_StartDate2.DateButtons.Add(dateButton4);
  1784. this.txt_StartDate2.Location = new System.Drawing.Point(1116, 33);
  1785. this.txt_StartDate2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1786. this.txt_StartDate2.Name = "txt_StartDate2";
  1787. this.txt_StartDate2.NonAutoSizeHeight = 25;
  1788. this.txt_StartDate2.Size = new System.Drawing.Size(178, 21);
  1789. this.txt_StartDate2.TabIndex = 12;
  1790. this.txt_StartDate2.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  1791. this.txt_StartDate2.Visible = false;
  1792. //
  1793. // txt_ReceiveType
  1794. //
  1795. this.txt_ReceiveType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1796. this.txt_ReceiveType.Location = new System.Drawing.Point(819, 28);
  1797. this.txt_ReceiveType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1798. this.txt_ReceiveType.Name = "txt_ReceiveType";
  1799. this.txt_ReceiveType.Size = new System.Drawing.Size(180, 21);
  1800. this.txt_ReceiveType.TabIndex = 3;
  1801. //
  1802. // txt_QuantityPriceNum
  1803. //
  1804. this.txt_QuantityPriceNum.Location = new System.Drawing.Point(1897, 2);
  1805. this.txt_QuantityPriceNum.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1806. this.txt_QuantityPriceNum.Name = "txt_QuantityPriceNum";
  1807. this.txt_QuantityPriceNum.Size = new System.Drawing.Size(80, 21);
  1808. this.txt_QuantityPriceNum.TabIndex = 66;
  1809. this.txt_QuantityPriceNum.Visible = false;
  1810. //
  1811. // txt_GradePriceNo
  1812. //
  1813. this.txt_GradePriceNo.Location = new System.Drawing.Point(1694, 0);
  1814. this.txt_GradePriceNo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1815. this.txt_GradePriceNo.Name = "txt_GradePriceNo";
  1816. this.txt_GradePriceNo.Size = new System.Drawing.Size(86, 21);
  1817. this.txt_GradePriceNo.TabIndex = 60;
  1818. this.txt_GradePriceNo.Visible = false;
  1819. //
  1820. // txt_ChemPriceNo
  1821. //
  1822. this.txt_ChemPriceNo.Location = new System.Drawing.Point(1495, 2);
  1823. this.txt_ChemPriceNo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1824. this.txt_ChemPriceNo.Name = "txt_ChemPriceNo";
  1825. this.txt_ChemPriceNo.Size = new System.Drawing.Size(88, 21);
  1826. this.txt_ChemPriceNo.TabIndex = 54;
  1827. this.txt_ChemPriceNo.Visible = false;
  1828. //
  1829. // txt_BuyerName2
  1830. //
  1831. this.txt_BuyerName2.Location = new System.Drawing.Point(112, 148);
  1832. this.txt_BuyerName2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1833. this.txt_BuyerName2.Name = "txt_BuyerName2";
  1834. this.txt_BuyerName2.ReadOnly = true;
  1835. this.txt_BuyerName2.Size = new System.Drawing.Size(178, 21);
  1836. this.txt_BuyerName2.TabIndex = 2;
  1837. //
  1838. // txt_DelvryRangeMin
  1839. //
  1840. this.txt_DelvryRangeMin.Location = new System.Drawing.Point(1460, 114);
  1841. this.txt_DelvryRangeMin.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1842. this.txt_DelvryRangeMin.Name = "txt_DelvryRangeMin";
  1843. this.txt_DelvryRangeMin.Size = new System.Drawing.Size(81, 21);
  1844. this.txt_DelvryRangeMin.TabIndex = 52;
  1845. this.txt_DelvryRangeMin.Visible = false;
  1846. //
  1847. // txt_ItemName
  1848. //
  1849. this.txt_ItemName.Location = new System.Drawing.Point(112, 52);
  1850. this.txt_ItemName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1851. this.txt_ItemName.Name = "txt_ItemName";
  1852. this.txt_ItemName.ReadOnly = true;
  1853. this.txt_ItemName.Size = new System.Drawing.Size(178, 21);
  1854. this.txt_ItemName.TabIndex = 1;
  1855. //
  1856. // txt_ItemCode
  1857. //
  1858. appearance16.FontData.BoldAsString = "True";
  1859. editorButton4.Appearance = appearance16;
  1860. editorButton4.Text = "+";
  1861. this.txt_ItemCode.ButtonsRight.Add(editorButton4);
  1862. this.txt_ItemCode.Location = new System.Drawing.Point(112, 28);
  1863. this.txt_ItemCode.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1864. this.txt_ItemCode.Name = "txt_ItemCode";
  1865. this.txt_ItemCode.Size = new System.Drawing.Size(178, 21);
  1866. this.txt_ItemCode.TabIndex = 5;
  1867. this.txt_ItemCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemCode_EditorButtonClick);
  1868. //
  1869. // txt_OrderLineSqe
  1870. //
  1871. this.txt_OrderLineSqe.Location = new System.Drawing.Point(112, 4);
  1872. this.txt_OrderLineSqe.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1873. this.txt_OrderLineSqe.Name = "txt_OrderLineSqe";
  1874. this.txt_OrderLineSqe.ReadOnly = true;
  1875. this.txt_OrderLineSqe.Size = new System.Drawing.Size(178, 21);
  1876. this.txt_OrderLineSqe.TabIndex = 0;
  1877. //
  1878. // ultraLabel59
  1879. //
  1880. this.ultraLabel59.AutoSize = true;
  1881. this.ultraLabel59.Location = new System.Drawing.Point(1790, 3);
  1882. this.ultraLabel59.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1883. this.ultraLabel59.Name = "ultraLabel59";
  1884. this.ultraLabel59.Size = new System.Drawing.Size(103, 16);
  1885. this.ultraLabel59.TabIndex = 30;
  1886. this.ultraLabel59.Text = "保量加价标准编号";
  1887. this.ultraLabel59.Visible = false;
  1888. //
  1889. // ultraLabel49
  1890. //
  1891. this.ultraLabel49.AutoSize = true;
  1892. this.ultraLabel49.Location = new System.Drawing.Point(26, 126);
  1893. this.ultraLabel49.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1894. this.ultraLabel49.Name = "ultraLabel49";
  1895. this.ultraLabel49.Size = new System.Drawing.Size(79, 16);
  1896. this.ultraLabel49.TabIndex = 28;
  1897. this.ultraLabel49.Text = "要求到货时间";
  1898. //
  1899. // ultraLabel51
  1900. //
  1901. this.ultraLabel51.AutoSize = true;
  1902. this.ultraLabel51.Location = new System.Drawing.Point(382, 126);
  1903. this.ultraLabel51.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1904. this.ultraLabel51.Name = "ultraLabel51";
  1905. this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
  1906. this.ultraLabel51.TabIndex = 26;
  1907. this.ultraLabel51.Text = "含税总金额";
  1908. //
  1909. // ultraLabel53
  1910. //
  1911. this.ultraLabel53.AutoSize = true;
  1912. this.ultraLabel53.Location = new System.Drawing.Point(1593, 2);
  1913. this.ultraLabel53.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1914. this.ultraLabel53.Name = "ultraLabel53";
  1915. this.ultraLabel53.Size = new System.Drawing.Size(103, 16);
  1916. this.ultraLabel53.TabIndex = 24;
  1917. this.ultraLabel53.Text = "品级计价标准编号";
  1918. this.ultraLabel53.Visible = false;
  1919. //
  1920. // ultraLabel43
  1921. //
  1922. this.ultraLabel43.AutoSize = true;
  1923. this.ultraLabel43.Location = new System.Drawing.Point(1030, 35);
  1924. this.ultraLabel43.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1925. this.ultraLabel43.Name = "ultraLabel43";
  1926. this.ultraLabel43.Size = new System.Drawing.Size(79, 16);
  1927. this.ultraLabel43.TabIndex = 22;
  1928. this.ultraLabel43.Text = "要求发货时间";
  1929. this.ultraLabel43.Visible = false;
  1930. //
  1931. // ultraLabel44
  1932. //
  1933. this.ultraLabel44.AutoSize = true;
  1934. this.ultraLabel44.Location = new System.Drawing.Point(758, 30);
  1935. this.ultraLabel44.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1936. this.ultraLabel44.Name = "ultraLabel44";
  1937. this.ultraLabel44.Size = new System.Drawing.Size(54, 16);
  1938. this.ultraLabel44.TabIndex = 21;
  1939. this.ultraLabel44.Text = "接收方式";
  1940. //
  1941. // ultraLabel45
  1942. //
  1943. this.ultraLabel45.AutoSize = true;
  1944. this.ultraLabel45.Location = new System.Drawing.Point(382, 102);
  1945. this.ultraLabel45.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1946. this.ultraLabel45.Name = "ultraLabel45";
  1947. this.ultraLabel45.Size = new System.Drawing.Size(66, 16);
  1948. this.ultraLabel45.TabIndex = 20;
  1949. this.ultraLabel45.Text = "不含总金额";
  1950. //
  1951. // ultraLabel47
  1952. //
  1953. this.ultraLabel47.AutoSize = true;
  1954. this.ultraLabel47.Location = new System.Drawing.Point(1391, 5);
  1955. this.ultraLabel47.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1956. this.ultraLabel47.Name = "ultraLabel47";
  1957. this.ultraLabel47.Size = new System.Drawing.Size(103, 16);
  1958. this.ultraLabel47.TabIndex = 18;
  1959. this.ultraLabel47.Text = "成分计价标准编号";
  1960. this.ultraLabel47.Visible = false;
  1961. //
  1962. // ultraLabel36
  1963. //
  1964. this.ultraLabel36.AutoSize = true;
  1965. this.ultraLabel36.Location = new System.Drawing.Point(63, 150);
  1966. this.ultraLabel36.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1967. this.ultraLabel36.Name = "ultraLabel36";
  1968. this.ultraLabel36.Size = new System.Drawing.Size(42, 16);
  1969. this.ultraLabel36.TabIndex = 17;
  1970. this.ultraLabel36.Text = "业务员";
  1971. //
  1972. // ultraLabel37
  1973. //
  1974. this.ultraLabel37.AutoSize = true;
  1975. this.ultraLabel37.Location = new System.Drawing.Point(1380, 115);
  1976. this.ultraLabel37.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1977. this.ultraLabel37.Name = "ultraLabel37";
  1978. this.ultraLabel37.Size = new System.Drawing.Size(79, 16);
  1979. this.ultraLabel37.TabIndex = 16;
  1980. this.ultraLabel37.Text = "交货量差下限";
  1981. this.ultraLabel37.Visible = false;
  1982. //
  1983. // ultraLabel39
  1984. //
  1985. this.ultraLabel39.AutoSize = true;
  1986. this.ultraLabel39.Location = new System.Drawing.Point(394, 150);
  1987. this.ultraLabel39.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1988. this.ultraLabel39.Name = "ultraLabel39";
  1989. this.ultraLabel39.Size = new System.Drawing.Size(54, 16);
  1990. this.ultraLabel39.TabIndex = 14;
  1991. this.ultraLabel39.Text = "合同税额";
  1992. //
  1993. // ultraLabel33
  1994. //
  1995. this.ultraLabel33.AutoSize = true;
  1996. this.ultraLabel33.Location = new System.Drawing.Point(393, 6);
  1997. this.ultraLabel33.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  1998. this.ultraLabel33.Name = "ultraLabel33";
  1999. this.ultraLabel33.Size = new System.Drawing.Size(54, 16);
  2000. this.ultraLabel33.TabIndex = 8;
  2001. this.ultraLabel33.Text = "采购数量";
  2002. //
  2003. // ultraLabel34
  2004. //
  2005. this.ultraLabel34.AutoSize = true;
  2006. this.ultraLabel34.Location = new System.Drawing.Point(51, 54);
  2007. this.ultraLabel34.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2008. this.ultraLabel34.Name = "ultraLabel34";
  2009. this.ultraLabel34.Size = new System.Drawing.Size(54, 16);
  2010. this.ultraLabel34.TabIndex = 7;
  2011. this.ultraLabel34.Text = "物料名称";
  2012. //
  2013. // ultraLabel27
  2014. //
  2015. this.ultraLabel27.AutoSize = true;
  2016. this.ultraLabel27.Location = new System.Drawing.Point(382, 54);
  2017. this.ultraLabel27.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2018. this.ultraLabel27.Name = "ultraLabel27";
  2019. this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
  2020. this.ultraLabel27.TabIndex = 3;
  2021. this.ultraLabel27.Text = "不含税单价";
  2022. //
  2023. // ultraLabel25
  2024. //
  2025. this.ultraLabel25.AutoSize = true;
  2026. this.ultraLabel25.Location = new System.Drawing.Point(51, 30);
  2027. this.ultraLabel25.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2028. this.ultraLabel25.Name = "ultraLabel25";
  2029. this.ultraLabel25.Size = new System.Drawing.Size(54, 16);
  2030. this.ultraLabel25.TabIndex = 1;
  2031. this.ultraLabel25.Text = "物料编码";
  2032. //
  2033. // ultraLabel24
  2034. //
  2035. this.ultraLabel24.AutoSize = true;
  2036. this.ultraLabel24.Location = new System.Drawing.Point(51, 6);
  2037. this.ultraLabel24.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2038. this.ultraLabel24.Name = "ultraLabel24";
  2039. this.ultraLabel24.Size = new System.Drawing.Size(54, 16);
  2040. this.ultraLabel24.TabIndex = 0;
  2041. this.ultraLabel24.Text = "合同行号";
  2042. //
  2043. // ultraTabPageControl7
  2044. //
  2045. this.ultraTabPageControl7.Controls.Add(this.label4);
  2046. this.ultraTabPageControl7.Controls.Add(this.txt_askDeliveryDateStart);
  2047. this.ultraTabPageControl7.Controls.Add(this.ultraLabel30);
  2048. this.ultraTabPageControl7.Controls.Add(this.label2);
  2049. this.ultraTabPageControl7.Controls.Add(this.ultraLabel29);
  2050. this.ultraTabPageControl7.Controls.Add(this.txt_askDeliveryDateEnd);
  2051. this.ultraTabPageControl7.Controls.Add(this.ultraLabel17);
  2052. this.ultraTabPageControl7.Controls.Add(this.txt_CD_Qty);
  2053. this.ultraTabPageControl7.Controls.Add(this.label3);
  2054. this.ultraTabPageControl7.Controls.Add(this.txt_orderCD_Remark);
  2055. this.ultraTabPageControl7.Controls.Add(this.label1);
  2056. this.ultraTabPageControl7.Location = new System.Drawing.Point(-7500, -8000);
  2057. this.ultraTabPageControl7.Name = "ultraTabPageControl7";
  2058. this.ultraTabPageControl7.Size = new System.Drawing.Size(670, 174);
  2059. //
  2060. // label4
  2061. //
  2062. this.label4.AutoSize = true;
  2063. this.label4.ForeColor = System.Drawing.Color.Red;
  2064. this.label4.Location = new System.Drawing.Point(320, 48);
  2065. this.label4.Name = "label4";
  2066. this.label4.Size = new System.Drawing.Size(53, 12);
  2067. this.label4.TabIndex = 23;
  2068. this.label4.Text = "无效交期";
  2069. //
  2070. // txt_askDeliveryDateStart
  2071. //
  2072. appearance45.TextHAlignAsString = "Right";
  2073. this.txt_askDeliveryDateStart.Appearance = appearance45;
  2074. this.txt_askDeliveryDateStart.DateButtons.Add(dateButton5);
  2075. this.txt_askDeliveryDateStart.Location = new System.Drawing.Point(133, 45);
  2076. this.txt_askDeliveryDateStart.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2077. this.txt_askDeliveryDateStart.Name = "txt_askDeliveryDateStart";
  2078. this.txt_askDeliveryDateStart.NonAutoSizeHeight = 25;
  2079. this.txt_askDeliveryDateStart.Size = new System.Drawing.Size(180, 21);
  2080. this.txt_askDeliveryDateStart.TabIndex = 22;
  2081. this.txt_askDeliveryDateStart.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  2082. this.txt_askDeliveryDateStart.ValueChanged += new System.EventHandler(this.txt_askDeliveryDateStart_ValueChanged);
  2083. //
  2084. // ultraLabel30
  2085. //
  2086. this.ultraLabel30.AutoSize = true;
  2087. this.ultraLabel30.Location = new System.Drawing.Point(50, 47);
  2088. this.ultraLabel30.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2089. this.ultraLabel30.Name = "ultraLabel30";
  2090. this.ultraLabel30.Size = new System.Drawing.Size(79, 16);
  2091. this.ultraLabel30.TabIndex = 21;
  2092. this.ultraLabel30.Text = "要求发货时间";
  2093. //
  2094. // label2
  2095. //
  2096. this.label2.AutoSize = true;
  2097. this.label2.ForeColor = System.Drawing.Color.Red;
  2098. this.label2.Location = new System.Drawing.Point(320, 77);
  2099. this.label2.Name = "label2";
  2100. this.label2.Size = new System.Drawing.Size(53, 12);
  2101. this.label2.TabIndex = 20;
  2102. this.label2.Text = "无效交期";
  2103. //
  2104. // ultraLabel29
  2105. //
  2106. this.ultraLabel29.AutoSize = true;
  2107. this.ultraLabel29.Location = new System.Drawing.Point(75, 101);
  2108. this.ultraLabel29.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2109. this.ultraLabel29.Name = "ultraLabel29";
  2110. this.ultraLabel29.Size = new System.Drawing.Size(54, 16);
  2111. this.ultraLabel29.TabIndex = 19;
  2112. this.ultraLabel29.Text = "备 注";
  2113. //
  2114. // txt_askDeliveryDateEnd
  2115. //
  2116. appearance46.TextHAlignAsString = "Right";
  2117. this.txt_askDeliveryDateEnd.Appearance = appearance46;
  2118. this.txt_askDeliveryDateEnd.DateButtons.Add(dateButton6);
  2119. this.txt_askDeliveryDateEnd.Location = new System.Drawing.Point(133, 72);
  2120. this.txt_askDeliveryDateEnd.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2121. this.txt_askDeliveryDateEnd.Name = "txt_askDeliveryDateEnd";
  2122. this.txt_askDeliveryDateEnd.NonAutoSizeHeight = 25;
  2123. this.txt_askDeliveryDateEnd.Size = new System.Drawing.Size(180, 21);
  2124. this.txt_askDeliveryDateEnd.TabIndex = 18;
  2125. this.txt_askDeliveryDateEnd.Value = new System.DateTime(2016, 1, 16, 0, 0, 0, 0);
  2126. this.txt_askDeliveryDateEnd.ValueChanged += new System.EventHandler(this.txt_askDeliveryDateEnd_ValueChanged);
  2127. //
  2128. // ultraLabel17
  2129. //
  2130. this.ultraLabel17.AutoSize = true;
  2131. this.ultraLabel17.Location = new System.Drawing.Point(50, 75);
  2132. this.ultraLabel17.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2133. this.ultraLabel17.Name = "ultraLabel17";
  2134. this.ultraLabel17.Size = new System.Drawing.Size(79, 16);
  2135. this.ultraLabel17.TabIndex = 17;
  2136. this.ultraLabel17.Text = "要求到货时间";
  2137. //
  2138. // txt_CD_Qty
  2139. //
  2140. this.txt_CD_Qty.Location = new System.Drawing.Point(133, 18);
  2141. this.txt_CD_Qty.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiteralsWithPadding;
  2142. this.txt_CD_Qty.MaskInput = "{double:9.2}";
  2143. this.txt_CD_Qty.MinValue = 0D;
  2144. this.txt_CD_Qty.Name = "txt_CD_Qty";
  2145. this.txt_CD_Qty.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  2146. this.txt_CD_Qty.Size = new System.Drawing.Size(180, 21);
  2147. this.txt_CD_Qty.TabIndex = 10;
  2148. this.txt_CD_Qty.ValueChanged += new System.EventHandler(this.txt_CD_Qty_ValueChanged);
  2149. //
  2150. // label3
  2151. //
  2152. this.label3.AutoSize = true;
  2153. this.label3.ForeColor = System.Drawing.Color.Red;
  2154. this.label3.Location = new System.Drawing.Point(320, 22);
  2155. this.label3.Name = "label3";
  2156. this.label3.Size = new System.Drawing.Size(89, 12);
  2157. this.label3.TabIndex = 9;
  2158. this.label3.Text = "剩余可编制数量";
  2159. //
  2160. // txt_orderCD_Remark
  2161. //
  2162. this.txt_orderCD_Remark.Location = new System.Drawing.Point(133, 99);
  2163. this.txt_orderCD_Remark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2164. this.txt_orderCD_Remark.Multiline = true;
  2165. this.txt_orderCD_Remark.Name = "txt_orderCD_Remark";
  2166. this.txt_orderCD_Remark.Size = new System.Drawing.Size(180, 69);
  2167. this.txt_orderCD_Remark.TabIndex = 7;
  2168. //
  2169. // label1
  2170. //
  2171. this.label1.AutoSize = true;
  2172. this.label1.Location = new System.Drawing.Point(76, 23);
  2173. this.label1.Name = "label1";
  2174. this.label1.Size = new System.Drawing.Size(53, 12);
  2175. this.label1.TabIndex = 0;
  2176. this.label1.Text = "编制数量";
  2177. //
  2178. // ultraTabPageControl3
  2179. //
  2180. this.ultraTabPageControl3.Location = new System.Drawing.Point(-7500, -8000);
  2181. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2182. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  2183. this.ultraTabPageControl3.Size = new System.Drawing.Size(670, 174);
  2184. //
  2185. // ultraTabPageControl4
  2186. //
  2187. this.ultraTabPageControl4.Controls.Add(this.ultraGroupBox2);
  2188. this.ultraTabPageControl4.Controls.Add(this.ultraExpandableGroupBox1);
  2189. this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 23);
  2190. this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2191. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  2192. this.ultraTabPageControl4.Size = new System.Drawing.Size(1344, 129);
  2193. //
  2194. // ultraGroupBox2
  2195. //
  2196. this.ultraGroupBox2.Controls.Add(this.ultraGrid2);
  2197. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  2198. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  2199. this.ultraGroupBox2.Name = "ultraGroupBox2";
  2200. this.ultraGroupBox2.Size = new System.Drawing.Size(748, 129);
  2201. this.ultraGroupBox2.TabIndex = 3;
  2202. //
  2203. // ultraGrid2
  2204. //
  2205. this.ultraGrid2.DataMember = "Table2";
  2206. this.ultraGrid2.DataSource = this.dataSet1;
  2207. appearance22.BackColor = System.Drawing.SystemColors.Window;
  2208. appearance22.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2209. this.ultraGrid2.DisplayLayout.Appearance = appearance22;
  2210. ultraGridColumn1.Header.VisiblePosition = 0;
  2211. ultraGridColumn1.Hidden = true;
  2212. ultraGridColumn2.Header.VisiblePosition = 7;
  2213. ultraGridColumn3.Header.VisiblePosition = 9;
  2214. ultraGridColumn3.Hidden = true;
  2215. ultraGridColumn4.Header.VisiblePosition = 10;
  2216. ultraGridColumn4.Hidden = true;
  2217. ultraGridColumn5.Header.VisiblePosition = 11;
  2218. ultraGridColumn6.Header.VisiblePosition = 30;
  2219. ultraGridColumn6.Hidden = true;
  2220. ultraGridColumn7.Header.Caption = "物料名称";
  2221. ultraGridColumn7.Header.VisiblePosition = 1;
  2222. ultraGridColumn7.Width = 161;
  2223. ultraGridColumn8.Header.VisiblePosition = 60;
  2224. ultraGridColumn8.Hidden = true;
  2225. ultraGridColumn9.Header.VisiblePosition = 31;
  2226. ultraGridColumn9.Hidden = true;
  2227. ultraGridColumn10.Header.VisiblePosition = 24;
  2228. ultraGridColumn10.Hidden = true;
  2229. ultraGridColumn11.Header.Caption = "采购数量";
  2230. ultraGridColumn11.Header.VisiblePosition = 2;
  2231. ultraGridColumn11.Width = 89;
  2232. ultraGridColumn12.Header.VisiblePosition = 29;
  2233. ultraGridColumn12.Hidden = true;
  2234. ultraGridColumn13.Header.VisiblePosition = 15;
  2235. ultraGridColumn14.Header.VisiblePosition = 26;
  2236. ultraGridColumn15.Header.VisiblePosition = 16;
  2237. ultraGridColumn15.Hidden = true;
  2238. ultraGridColumn16.Header.VisiblePosition = 25;
  2239. ultraGridColumn17.Header.VisiblePosition = 27;
  2240. ultraGridColumn17.Hidden = true;
  2241. ultraGridColumn18.Header.VisiblePosition = 28;
  2242. ultraGridColumn18.Hidden = true;
  2243. ultraGridColumn19.Header.VisiblePosition = 32;
  2244. ultraGridColumn19.Hidden = true;
  2245. ultraGridColumn20.Header.VisiblePosition = 33;
  2246. ultraGridColumn21.Header.VisiblePosition = 34;
  2247. ultraGridColumn22.Header.VisiblePosition = 35;
  2248. ultraGridColumn23.Header.VisiblePosition = 17;
  2249. ultraGridColumn24.Header.VisiblePosition = 14;
  2250. ultraGridColumn24.Hidden = true;
  2251. ultraGridColumn25.Header.VisiblePosition = 36;
  2252. ultraGridColumn25.Hidden = true;
  2253. ultraGridColumn26.Header.VisiblePosition = 37;
  2254. ultraGridColumn26.Hidden = true;
  2255. ultraGridColumn27.Header.VisiblePosition = 38;
  2256. ultraGridColumn27.Hidden = true;
  2257. ultraGridColumn28.Header.VisiblePosition = 39;
  2258. ultraGridColumn28.Hidden = true;
  2259. ultraGridColumn29.Header.VisiblePosition = 40;
  2260. ultraGridColumn29.Hidden = true;
  2261. ultraGridColumn30.Header.VisiblePosition = 41;
  2262. ultraGridColumn30.Hidden = true;
  2263. ultraGridColumn31.Header.VisiblePosition = 18;
  2264. ultraGridColumn32.Header.VisiblePosition = 3;
  2265. ultraGridColumn32.Width = 88;
  2266. ultraGridColumn33.Header.VisiblePosition = 21;
  2267. ultraGridColumn34.Header.VisiblePosition = 19;
  2268. ultraGridColumn35.Header.VisiblePosition = 20;
  2269. ultraGridColumn36.Header.VisiblePosition = 22;
  2270. ultraGridColumn36.Hidden = true;
  2271. ultraGridColumn37.Header.VisiblePosition = 23;
  2272. ultraGridColumn37.Hidden = true;
  2273. ultraGridColumn38.Header.VisiblePosition = 44;
  2274. ultraGridColumn38.Hidden = true;
  2275. ultraGridColumn39.Header.VisiblePosition = 45;
  2276. ultraGridColumn39.Hidden = true;
  2277. ultraGridColumn40.Header.VisiblePosition = 49;
  2278. ultraGridColumn41.Header.VisiblePosition = 55;
  2279. ultraGridColumn41.Hidden = true;
  2280. ultraGridColumn42.Header.VisiblePosition = 47;
  2281. ultraGridColumn43.Header.VisiblePosition = 48;
  2282. ultraGridColumn44.Header.VisiblePosition = 51;
  2283. ultraGridColumn45.Header.VisiblePosition = 52;
  2284. ultraGridColumn46.Format = "yyyy/MM/dd";
  2285. ultraGridColumn46.Header.VisiblePosition = 5;
  2286. ultraGridColumn46.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Date;
  2287. ultraGridColumn47.Format = "yyyy/MM/dd";
  2288. ultraGridColumn47.Header.VisiblePosition = 6;
  2289. ultraGridColumn47.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Date;
  2290. ultraGridColumn48.Header.VisiblePosition = 42;
  2291. ultraGridColumn48.Hidden = true;
  2292. ultraGridColumn49.Header.VisiblePosition = 43;
  2293. ultraGridColumn49.Hidden = true;
  2294. ultraGridColumn50.Header.VisiblePosition = 46;
  2295. ultraGridColumn51.Header.VisiblePosition = 54;
  2296. ultraGridColumn51.Hidden = true;
  2297. ultraGridColumn52.Header.VisiblePosition = 56;
  2298. ultraGridColumn52.Hidden = true;
  2299. ultraGridColumn53.Header.VisiblePosition = 57;
  2300. ultraGridColumn53.Hidden = true;
  2301. ultraGridColumn54.Header.VisiblePosition = 58;
  2302. ultraGridColumn54.Hidden = true;
  2303. ultraGridColumn55.Header.VisiblePosition = 59;
  2304. ultraGridColumn55.Hidden = true;
  2305. ultraGridColumn56.Header.VisiblePosition = 61;
  2306. ultraGridColumn57.Header.VisiblePosition = 62;
  2307. ultraGridColumn58.Header.VisiblePosition = 63;
  2308. ultraGridColumn59.Header.VisiblePosition = 64;
  2309. ultraGridColumn60.Header.VisiblePosition = 65;
  2310. ultraGridColumn60.Hidden = true;
  2311. ultraGridColumn61.Header.VisiblePosition = 66;
  2312. ultraGridColumn61.Hidden = true;
  2313. ultraGridColumn62.Header.VisiblePosition = 8;
  2314. ultraGridColumn63.Header.VisiblePosition = 67;
  2315. ultraGridColumn64.Header.VisiblePosition = 50;
  2316. ultraGridColumn65.Header.VisiblePosition = 68;
  2317. ultraGridColumn65.Hidden = true;
  2318. ultraGridColumn66.Header.VisiblePosition = 12;
  2319. ultraGridColumn67.Header.Caption = "属性编码";
  2320. ultraGridColumn67.Header.VisiblePosition = 13;
  2321. ultraGridColumn67.Hidden = true;
  2322. ultraGridColumn68.Header.VisiblePosition = 53;
  2323. ultraGridColumn69.Header.VisiblePosition = 69;
  2324. ultraGridColumn69.Hidden = true;
  2325. ultraGridColumn70.Header.VisiblePosition = 70;
  2326. ultraGridColumn70.Hidden = true;
  2327. ultraGridColumn71.Header.VisiblePosition = 4;
  2328. ultraGridColumn71.Width = 72;
  2329. ultraGridColumn72.Header.VisiblePosition = 71;
  2330. ultraGridColumn72.Hidden = true;
  2331. ultraGridBand1.Columns.AddRange(new object[] {
  2332. ultraGridColumn1,
  2333. ultraGridColumn2,
  2334. ultraGridColumn3,
  2335. ultraGridColumn4,
  2336. ultraGridColumn5,
  2337. ultraGridColumn6,
  2338. ultraGridColumn7,
  2339. ultraGridColumn8,
  2340. ultraGridColumn9,
  2341. ultraGridColumn10,
  2342. ultraGridColumn11,
  2343. ultraGridColumn12,
  2344. ultraGridColumn13,
  2345. ultraGridColumn14,
  2346. ultraGridColumn15,
  2347. ultraGridColumn16,
  2348. ultraGridColumn17,
  2349. ultraGridColumn18,
  2350. ultraGridColumn19,
  2351. ultraGridColumn20,
  2352. ultraGridColumn21,
  2353. ultraGridColumn22,
  2354. ultraGridColumn23,
  2355. ultraGridColumn24,
  2356. ultraGridColumn25,
  2357. ultraGridColumn26,
  2358. ultraGridColumn27,
  2359. ultraGridColumn28,
  2360. ultraGridColumn29,
  2361. ultraGridColumn30,
  2362. ultraGridColumn31,
  2363. ultraGridColumn32,
  2364. ultraGridColumn33,
  2365. ultraGridColumn34,
  2366. ultraGridColumn35,
  2367. ultraGridColumn36,
  2368. ultraGridColumn37,
  2369. ultraGridColumn38,
  2370. ultraGridColumn39,
  2371. ultraGridColumn40,
  2372. ultraGridColumn41,
  2373. ultraGridColumn42,
  2374. ultraGridColumn43,
  2375. ultraGridColumn44,
  2376. ultraGridColumn45,
  2377. ultraGridColumn46,
  2378. ultraGridColumn47,
  2379. ultraGridColumn48,
  2380. ultraGridColumn49,
  2381. ultraGridColumn50,
  2382. ultraGridColumn51,
  2383. ultraGridColumn52,
  2384. ultraGridColumn53,
  2385. ultraGridColumn54,
  2386. ultraGridColumn55,
  2387. ultraGridColumn56,
  2388. ultraGridColumn57,
  2389. ultraGridColumn58,
  2390. ultraGridColumn59,
  2391. ultraGridColumn60,
  2392. ultraGridColumn61,
  2393. ultraGridColumn62,
  2394. ultraGridColumn63,
  2395. ultraGridColumn64,
  2396. ultraGridColumn65,
  2397. ultraGridColumn66,
  2398. ultraGridColumn67,
  2399. ultraGridColumn68,
  2400. ultraGridColumn69,
  2401. ultraGridColumn70,
  2402. ultraGridColumn71,
  2403. ultraGridColumn72});
  2404. summarySettings1.DisplayFormat = "{0}";
  2405. summarySettings1.GroupBySummaryValueAppearance = appearance1;
  2406. summarySettings2.DisplayFormat = "{0}";
  2407. summarySettings2.GroupBySummaryValueAppearance = appearance2;
  2408. summarySettings3.DisplayFormat = "{0}";
  2409. summarySettings3.GroupBySummaryValueAppearance = appearance3;
  2410. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  2411. summarySettings1,
  2412. summarySettings2,
  2413. summarySettings3});
  2414. ultraGridBand1.SummaryFooterCaption = "统计";
  2415. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  2416. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2417. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2418. appearance29.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2419. appearance29.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2420. appearance29.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2421. appearance29.BorderColor = System.Drawing.SystemColors.Window;
  2422. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance29;
  2423. appearance30.ForeColor = System.Drawing.SystemColors.GrayText;
  2424. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance30;
  2425. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2426. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  2427. appearance32.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2428. appearance32.BackColor2 = System.Drawing.SystemColors.Control;
  2429. appearance32.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2430. appearance32.ForeColor = System.Drawing.SystemColors.GrayText;
  2431. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance32;
  2432. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  2433. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  2434. appearance33.BackColor = System.Drawing.SystemColors.Window;
  2435. appearance33.ForeColor = System.Drawing.SystemColors.ControlText;
  2436. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance33;
  2437. appearance34.BackColor = System.Drawing.SystemColors.Highlight;
  2438. appearance34.ForeColor = System.Drawing.SystemColors.HighlightText;
  2439. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance34;
  2440. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2441. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2442. appearance35.BackColor = System.Drawing.SystemColors.Window;
  2443. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance35;
  2444. appearance66.BorderColor = System.Drawing.Color.Silver;
  2445. appearance66.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2446. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance66;
  2447. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2448. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  2449. appearance67.BackColor = System.Drawing.SystemColors.Control;
  2450. appearance67.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2451. appearance67.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2452. appearance67.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2453. appearance67.BorderColor = System.Drawing.SystemColors.Window;
  2454. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance67;
  2455. appearance90.TextHAlignAsString = "Left";
  2456. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance90;
  2457. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2458. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2459. appearance91.BackColor = System.Drawing.SystemColors.Window;
  2460. appearance91.BorderColor = System.Drawing.Color.Silver;
  2461. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance91;
  2462. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2463. appearance92.BackColor = System.Drawing.SystemColors.ControlLight;
  2464. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance92;
  2465. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2466. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2467. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2468. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  2469. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2470. this.ultraGrid2.Location = new System.Drawing.Point(3, 0);
  2471. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  2472. this.ultraGrid2.Name = "ultraGrid2";
  2473. this.ultraGrid2.Size = new System.Drawing.Size(742, 126);
  2474. this.ultraGrid2.TabIndex = 1;
  2475. this.ultraGrid2.Text = "ultraGrid2";
  2476. this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
  2477. this.ultraGrid2.Click += new System.EventHandler(this.ultraGrid2_Click);
  2478. //
  2479. // dataSet1
  2480. //
  2481. this.dataSet1.DataSetName = "NewDataSet";
  2482. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  2483. this.dataTable1,
  2484. this.dataTable2});
  2485. //
  2486. // dataTable1
  2487. //
  2488. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  2489. this.dataColumn1,
  2490. this.dataColumn2,
  2491. this.dataColumn3,
  2492. this.dataColumn4,
  2493. this.dataColumn5,
  2494. this.dataColumn6,
  2495. this.dataColumn7,
  2496. this.dataColumn8,
  2497. this.dataColumn9,
  2498. this.dataColumn10,
  2499. this.dataColumn11,
  2500. this.dataColumn12,
  2501. this.dataColumn13,
  2502. this.dataColumn14,
  2503. this.dataColumn15,
  2504. this.dataColumn16,
  2505. this.dataColumn17,
  2506. this.dataColumn18,
  2507. this.dataColumn19,
  2508. this.dataColumn20,
  2509. this.dataColumn21,
  2510. this.dataColumn22,
  2511. this.dataColumn23,
  2512. this.dataColumn24,
  2513. this.dataColumn25,
  2514. this.dataColumn26,
  2515. this.dataColumn27,
  2516. this.dataColumn29,
  2517. this.dataColumn30,
  2518. this.dataColumn31,
  2519. this.dataColumn32,
  2520. this.dataColumn28,
  2521. this.dataColumn33,
  2522. this.dataColumn34,
  2523. this.dataColumn35,
  2524. this.dataColumn36,
  2525. this.dataColumn37,
  2526. this.dataColumn38,
  2527. this.dataColumn39,
  2528. this.dataColumn40,
  2529. this.dataColumn41,
  2530. this.dataColumn42,
  2531. this.dataColumn43,
  2532. this.dataColumn44,
  2533. this.dataColumn45,
  2534. this.dataColumn46,
  2535. this.dataColumn47,
  2536. this.dataColumn48,
  2537. this.dataColumn49,
  2538. this.dataColumn50,
  2539. this.dataColumn127,
  2540. this.dataColumn158});
  2541. this.dataTable1.Constraints.AddRange(new System.Data.Constraint[] {
  2542. new System.Data.UniqueConstraint("Constraint1", new string[] {
  2543. "OrderId"}, false)});
  2544. this.dataTable1.TableName = "Table1";
  2545. //
  2546. // dataColumn1
  2547. //
  2548. this.dataColumn1.Caption = "合同号";
  2549. this.dataColumn1.ColumnName = "OrderId";
  2550. //
  2551. // dataColumn2
  2552. //
  2553. this.dataColumn2.Caption = "合同版本编号";
  2554. this.dataColumn2.ColumnName = "OrderVer";
  2555. //
  2556. // dataColumn3
  2557. //
  2558. this.dataColumn3.Caption = "合同类别";
  2559. this.dataColumn3.ColumnName = "OrderType";
  2560. //
  2561. // dataColumn4
  2562. //
  2563. this.dataColumn4.Caption = "合同金额类别";
  2564. this.dataColumn4.ColumnName = "OrderMoneyType";
  2565. //
  2566. // dataColumn5
  2567. //
  2568. this.dataColumn5.Caption = "模板编号";
  2569. this.dataColumn5.ColumnName = "ModeId";
  2570. //
  2571. // dataColumn6
  2572. //
  2573. this.dataColumn6.Caption = "模板名称";
  2574. this.dataColumn6.ColumnName = "ModeName";
  2575. //
  2576. // dataColumn7
  2577. //
  2578. this.dataColumn7.Caption = "买方编号";
  2579. this.dataColumn7.ColumnName = "OrderTitleCode";
  2580. //
  2581. // dataColumn8
  2582. //
  2583. this.dataColumn8.Caption = "供应商代码";
  2584. this.dataColumn8.ColumnName = "SuppCode";
  2585. //
  2586. // dataColumn9
  2587. //
  2588. this.dataColumn9.Caption = "供应商名称";
  2589. this.dataColumn9.ColumnName = "SuppName";
  2590. //
  2591. // dataColumn10
  2592. //
  2593. this.dataColumn10.Caption = "打印合同号";
  2594. this.dataColumn10.ColumnName = "PorderId";
  2595. //
  2596. // dataColumn11
  2597. //
  2598. this.dataColumn11.Caption = "供应商合同编号";
  2599. this.dataColumn11.ColumnName = "SuppOrdeId";
  2600. //
  2601. // dataColumn12
  2602. //
  2603. this.dataColumn12.Caption = "进口合同编号";
  2604. this.dataColumn12.ColumnName = "ImportOrdeId";
  2605. //
  2606. // dataColumn13
  2607. //
  2608. this.dataColumn13.Caption = "合同货币代码";
  2609. this.dataColumn13.ColumnName = "Currency";
  2610. //
  2611. // dataColumn14
  2612. //
  2613. this.dataColumn14.Caption = "当前兑换汇率";
  2614. this.dataColumn14.ColumnName = "ExchangeRateCur";
  2615. //
  2616. // dataColumn15
  2617. //
  2618. this.dataColumn15.Caption = "最小金额";
  2619. this.dataColumn15.ColumnName = "AmtMin";
  2620. //
  2621. // dataColumn16
  2622. //
  2623. this.dataColumn16.Caption = "最大金额";
  2624. this.dataColumn16.ColumnName = "AmtMax";
  2625. //
  2626. // dataColumn17
  2627. //
  2628. this.dataColumn17.Caption = "税率名称";
  2629. this.dataColumn17.ColumnName = "TaxRateName";
  2630. //
  2631. // dataColumn18
  2632. //
  2633. this.dataColumn18.Caption = "合同税额";
  2634. this.dataColumn18.ColumnName = "TaxAmt";
  2635. //
  2636. // dataColumn19
  2637. //
  2638. this.dataColumn19.Caption = "不含税金额";
  2639. this.dataColumn19.ColumnName = "WithoutTaxAmt";
  2640. //
  2641. // dataColumn20
  2642. //
  2643. this.dataColumn20.Caption = "含税金额";
  2644. this.dataColumn20.ColumnName = "WithAmtTax";
  2645. //
  2646. // dataColumn21
  2647. //
  2648. this.dataColumn21.Caption = "预付款1";
  2649. this.dataColumn21.ColumnName = "PrePaymentAmt1";
  2650. //
  2651. // dataColumn22
  2652. //
  2653. this.dataColumn22.Caption = "预付款2";
  2654. this.dataColumn22.ColumnName = "PrePaymentAmt2";
  2655. //
  2656. // dataColumn23
  2657. //
  2658. this.dataColumn23.Caption = "预付款3";
  2659. this.dataColumn23.ColumnName = "PrePaymentAmt3";
  2660. //
  2661. // dataColumn24
  2662. //
  2663. this.dataColumn24.Caption = "预付款4";
  2664. this.dataColumn24.ColumnName = "PrePaymentAmt4";
  2665. //
  2666. // dataColumn25
  2667. //
  2668. this.dataColumn25.Caption = "预付款5";
  2669. this.dataColumn25.ColumnName = "PrePaymentAmt5";
  2670. //
  2671. // dataColumn26
  2672. //
  2673. this.dataColumn26.Caption = "尾款1";
  2674. this.dataColumn26.ColumnName = "AftPaymentAmt1";
  2675. //
  2676. // dataColumn27
  2677. //
  2678. this.dataColumn27.Caption = "尾款2 ";
  2679. this.dataColumn27.ColumnName = "AftPaymentAmt2";
  2680. //
  2681. // dataColumn29
  2682. //
  2683. this.dataColumn29.Caption = "尾款3";
  2684. this.dataColumn29.ColumnName = "AftPaymentAmt3";
  2685. //
  2686. // dataColumn30
  2687. //
  2688. this.dataColumn30.Caption = "尾款4";
  2689. this.dataColumn30.ColumnName = "AftPaymentAmt4";
  2690. //
  2691. // dataColumn31
  2692. //
  2693. this.dataColumn31.Caption = "尾款5";
  2694. this.dataColumn31.ColumnName = "AftPaymentAmt5";
  2695. //
  2696. // dataColumn32
  2697. //
  2698. this.dataColumn32.Caption = "履约保证金";
  2699. this.dataColumn32.ColumnName = "GuaAmt";
  2700. //
  2701. // dataColumn28
  2702. //
  2703. this.dataColumn28.Caption = "开始日期";
  2704. this.dataColumn28.ColumnName = "StartDate";
  2705. //
  2706. // dataColumn33
  2707. //
  2708. this.dataColumn33.Caption = "结束日期";
  2709. this.dataColumn33.ColumnName = "EndDate";
  2710. //
  2711. // dataColumn34
  2712. //
  2713. this.dataColumn34.Caption = "允许提早天数";
  2714. this.dataColumn34.ColumnName = "DaysEarly";
  2715. //
  2716. // dataColumn35
  2717. //
  2718. this.dataColumn35.Caption = "允许延迟天数";
  2719. this.dataColumn35.ColumnName = "DaysLate";
  2720. //
  2721. // dataColumn36
  2722. //
  2723. this.dataColumn36.Caption = "签订地点";
  2724. this.dataColumn36.ColumnName = "SignAddress";
  2725. //
  2726. // dataColumn37
  2727. //
  2728. this.dataColumn37.Caption = "签订日期";
  2729. this.dataColumn37.ColumnName = "SignDate";
  2730. //
  2731. // dataColumn38
  2732. //
  2733. this.dataColumn38.Caption = "打印次数";
  2734. this.dataColumn38.ColumnName = "PrintNum";
  2735. //
  2736. // dataColumn39
  2737. //
  2738. this.dataColumn39.Caption = "采购员";
  2739. this.dataColumn39.ColumnName = "BuyerName";
  2740. //
  2741. // dataColumn40
  2742. //
  2743. this.dataColumn40.Caption = "采购管理部门代码";
  2744. this.dataColumn40.ColumnName = "BuyerDeptCode";
  2745. //
  2746. // dataColumn41
  2747. //
  2748. this.dataColumn41.Caption = "采购管理部门描叙";
  2749. this.dataColumn41.ColumnName = "BuyerDeptDesc";
  2750. //
  2751. // dataColumn42
  2752. //
  2753. this.dataColumn42.Caption = "采购管理科室代码";
  2754. this.dataColumn42.ColumnName = "BuyerUnitCode";
  2755. //
  2756. // dataColumn43
  2757. //
  2758. this.dataColumn43.Caption = "采购管理科室描叙";
  2759. this.dataColumn43.ColumnName = "BuyerUnitDesc";
  2760. //
  2761. // dataColumn44
  2762. //
  2763. this.dataColumn44.Caption = "数据状态(有效、无效)";
  2764. this.dataColumn44.ColumnName = "Validflag";
  2765. //
  2766. // dataColumn45
  2767. //
  2768. this.dataColumn45.Caption = "创建人";
  2769. this.dataColumn45.ColumnName = "CreateName";
  2770. //
  2771. // dataColumn46
  2772. //
  2773. this.dataColumn46.Caption = "创建时间";
  2774. this.dataColumn46.ColumnName = "CreateTime";
  2775. //
  2776. // dataColumn47
  2777. //
  2778. this.dataColumn47.Caption = "修改人";
  2779. this.dataColumn47.ColumnName = "UpdateName";
  2780. //
  2781. // dataColumn48
  2782. //
  2783. this.dataColumn48.Caption = "修改时间";
  2784. this.dataColumn48.ColumnName = "UpdateTime";
  2785. //
  2786. // dataColumn49
  2787. //
  2788. this.dataColumn49.Caption = "买方";
  2789. this.dataColumn49.ColumnName = "DeleteName";
  2790. //
  2791. // dataColumn50
  2792. //
  2793. this.dataColumn50.Caption = "废除时间";
  2794. this.dataColumn50.ColumnName = "DeleteTime";
  2795. //
  2796. // dataColumn127
  2797. //
  2798. this.dataColumn127.Caption = "状态";
  2799. this.dataColumn127.ColumnName = "Status";
  2800. //
  2801. // dataColumn158
  2802. //
  2803. this.dataColumn158.Caption = "采购纪要号";
  2804. this.dataColumn158.ColumnName = "taskRecordId";
  2805. //
  2806. // dataTable2
  2807. //
  2808. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  2809. this.dataColumn51,
  2810. this.dataColumn52,
  2811. this.dataColumn53,
  2812. this.dataColumn54,
  2813. this.dataColumn55,
  2814. this.dataColumn56,
  2815. this.dataColumn57,
  2816. this.dataColumn58,
  2817. this.dataColumn59,
  2818. this.dataColumn60,
  2819. this.dataColumn61,
  2820. this.dataColumn62,
  2821. this.dataColumn63,
  2822. this.dataColumn64,
  2823. this.dataColumn65,
  2824. this.dataColumn66,
  2825. this.dataColumn67,
  2826. this.dataColumn68,
  2827. this.dataColumn69,
  2828. this.dataColumn70,
  2829. this.dataColumn71,
  2830. this.dataColumn72,
  2831. this.dataColumn73,
  2832. this.dataColumn74,
  2833. this.dataColumn75,
  2834. this.dataColumn76,
  2835. this.dataColumn77,
  2836. this.dataColumn78,
  2837. this.dataColumn79,
  2838. this.dataColumn80,
  2839. this.dataColumn81,
  2840. this.dataColumn82,
  2841. this.dataColumn83,
  2842. this.dataColumn84,
  2843. this.dataColumn85,
  2844. this.dataColumn86,
  2845. this.dataColumn87,
  2846. this.dataColumn88,
  2847. this.dataColumn89,
  2848. this.dataColumn90,
  2849. this.dataColumn91,
  2850. this.dataColumn92,
  2851. this.dataColumn93,
  2852. this.dataColumn94,
  2853. this.dataColumn95,
  2854. this.dataColumn96,
  2855. this.dataColumn97,
  2856. this.dataColumn98,
  2857. this.dataColumn99,
  2858. this.dataColumn100,
  2859. this.dataColumn101,
  2860. this.dataColumn102,
  2861. this.dataColumn103,
  2862. this.dataColumn104,
  2863. this.dataColumn105,
  2864. this.dataColumn106,
  2865. this.dataColumn107,
  2866. this.dataColumn108,
  2867. this.dataColumn109,
  2868. this.dataColumn110,
  2869. this.dataColumn111,
  2870. this.dataColumn128,
  2871. this.dataColumn129,
  2872. this.dataColumn130,
  2873. this.dataColumn131,
  2874. this.dataColumn132,
  2875. this.dataColumn133,
  2876. this.dataColumn134,
  2877. this.dataColumn152,
  2878. this.dataColumn153,
  2879. this.dataColumn154,
  2880. this.dataColumn155});
  2881. this.dataTable2.TableName = "Table2";
  2882. //
  2883. // dataColumn51
  2884. //
  2885. this.dataColumn51.Caption = "合同号";
  2886. this.dataColumn51.ColumnName = "OrderId";
  2887. //
  2888. // dataColumn52
  2889. //
  2890. this.dataColumn52.Caption = "合同行号";
  2891. this.dataColumn52.ColumnName = "OrderLineSqe";
  2892. //
  2893. // dataColumn53
  2894. //
  2895. this.dataColumn53.Caption = "评单行号";
  2896. this.dataColumn53.ColumnName = "ReviewLineSqe";
  2897. //
  2898. // dataColumn54
  2899. //
  2900. this.dataColumn54.Caption = "任务单行号";
  2901. this.dataColumn54.ColumnName = "TaskLineId";
  2902. //
  2903. // dataColumn55
  2904. //
  2905. this.dataColumn55.Caption = "物料编码";
  2906. this.dataColumn55.ColumnName = "ItemCode";
  2907. //
  2908. // dataColumn56
  2909. //
  2910. this.dataColumn56.Caption = "物料描述";
  2911. this.dataColumn56.ColumnName = "ItemDesc";
  2912. //
  2913. // dataColumn57
  2914. //
  2915. this.dataColumn57.Caption = "物料简称";
  2916. this.dataColumn57.ColumnName = "ItemName";
  2917. //
  2918. // dataColumn58
  2919. //
  2920. this.dataColumn58.Caption = "物料英文名称";
  2921. this.dataColumn58.ColumnName = "ItemDescE";
  2922. //
  2923. // dataColumn59
  2924. //
  2925. this.dataColumn59.Caption = "物料型号规格";
  2926. this.dataColumn59.ColumnName = "ItemModel";
  2927. //
  2928. // dataColumn60
  2929. //
  2930. this.dataColumn60.Caption = "物料材质";
  2931. this.dataColumn60.ColumnName = "ItemSpec";
  2932. //
  2933. // dataColumn61
  2934. //
  2935. this.dataColumn61.Caption = "合同采购数量";
  2936. this.dataColumn61.ColumnName = "Qty";
  2937. //
  2938. // dataColumn62
  2939. //
  2940. this.dataColumn62.Caption = "是否使用采购单位";
  2941. this.dataColumn62.ColumnName = "ItemUseUom";
  2942. //
  2943. // dataColumn63
  2944. //
  2945. this.dataColumn63.Caption = "采购单位";
  2946. this.dataColumn63.ColumnName = "ItemUom";
  2947. //
  2948. // dataColumn64
  2949. //
  2950. this.dataColumn64.Caption = "转换系数";
  2951. this.dataColumn64.ColumnName = "ItemUomConefficient";
  2952. //
  2953. // dataColumn65
  2954. //
  2955. this.dataColumn65.Caption = "库存单位";
  2956. this.dataColumn65.ColumnName = "WeightUnit";
  2957. //
  2958. // dataColumn66
  2959. //
  2960. this.dataColumn66.Caption = "库存转换数量";
  2961. this.dataColumn66.ColumnName = "CkQty";
  2962. //
  2963. // dataColumn67
  2964. //
  2965. this.dataColumn67.Caption = "交货量差方式";
  2966. this.dataColumn67.ColumnName = "DelvryRangeTpe";
  2967. //
  2968. // dataColumn68
  2969. //
  2970. this.dataColumn68.Caption = "交货量差下限";
  2971. this.dataColumn68.ColumnName = "DelvryRangeMin";
  2972. //
  2973. // dataColumn69
  2974. //
  2975. this.dataColumn69.Caption = "交货量差上限";
  2976. this.dataColumn69.ColumnName = "DelvryRangeMax";
  2977. //
  2978. // dataColumn70
  2979. //
  2980. this.dataColumn70.Caption = "是否计量";
  2981. this.dataColumn70.ColumnName = "MeteringFlag";
  2982. //
  2983. // dataColumn71
  2984. //
  2985. this.dataColumn71.Caption = "是否批次控制";
  2986. this.dataColumn71.ColumnName = "BatchFlag";
  2987. //
  2988. // dataColumn72
  2989. //
  2990. this.dataColumn72.Caption = "是否理化检验";
  2991. this.dataColumn72.ColumnName = "PcFlag";
  2992. //
  2993. // dataColumn73
  2994. //
  2995. this.dataColumn73.Caption = "入库类型";
  2996. this.dataColumn73.ColumnName = "ReceiveType";
  2997. //
  2998. // dataColumn74
  2999. //
  3000. this.dataColumn74.Caption = "采购标准";
  3001. this.dataColumn74.ColumnName = "PurStandards";
  3002. //
  3003. // dataColumn75
  3004. //
  3005. this.dataColumn75.Caption = "采购标准编号";
  3006. this.dataColumn75.ColumnName = "PurStandardsCode";
  3007. //
  3008. // dataColumn76
  3009. //
  3010. this.dataColumn76.Caption = "基础价格编号";
  3011. this.dataColumn76.ColumnName = "BasePriceNo";
  3012. //
  3013. // dataColumn77
  3014. //
  3015. this.dataColumn77.Caption = "成分计价标准编号";
  3016. this.dataColumn77.ColumnName = "ChemPriceNo";
  3017. //
  3018. // dataColumn78
  3019. //
  3020. this.dataColumn78.Caption = "品级计价标准编号";
  3021. this.dataColumn78.ColumnName = "GradePriceNo";
  3022. //
  3023. // dataColumn79
  3024. //
  3025. this.dataColumn79.Caption = "保量加价标准编号";
  3026. this.dataColumn79.ColumnName = "QuantityPriceNum";
  3027. //
  3028. // dataColumn80
  3029. //
  3030. this.dataColumn80.Caption = "其它计价标准编号";
  3031. this.dataColumn80.ColumnName = "OtherPriceNum";
  3032. //
  3033. // dataColumn81
  3034. //
  3035. this.dataColumn81.Caption = "不含税单价";
  3036. this.dataColumn81.ColumnName = "PriceWithoutTax";
  3037. //
  3038. // dataColumn82
  3039. //
  3040. this.dataColumn82.Caption = "含税单价";
  3041. this.dataColumn82.ColumnName = "PriceWithTax";
  3042. //
  3043. // dataColumn83
  3044. //
  3045. this.dataColumn83.Caption = "合同税额";
  3046. this.dataColumn83.ColumnName = "TaxAmt";
  3047. //
  3048. // dataColumn84
  3049. //
  3050. this.dataColumn84.Caption = "不含总金额税金额";
  3051. this.dataColumn84.ColumnName = "WithoutTaxAmt";
  3052. //
  3053. // dataColumn85
  3054. //
  3055. this.dataColumn85.Caption = "含税总金额金额";
  3056. this.dataColumn85.ColumnName = "WithAmtTax";
  3057. //
  3058. // dataColumn86
  3059. //
  3060. this.dataColumn86.Caption = "供应商代码";
  3061. this.dataColumn86.ColumnName = "SuppCode";
  3062. //
  3063. // dataColumn87
  3064. //
  3065. this.dataColumn87.Caption = "供应商名称";
  3066. this.dataColumn87.ColumnName = "SuppName";
  3067. //
  3068. // dataColumn88
  3069. //
  3070. this.dataColumn88.Caption = "交付地点编码";
  3071. this.dataColumn88.ColumnName = "DeliveryLocationCode";
  3072. //
  3073. // dataColumn89
  3074. //
  3075. this.dataColumn89.Caption = "交付地点";
  3076. this.dataColumn89.ColumnName = "DeliveryLocation";
  3077. //
  3078. // dataColumn90
  3079. //
  3080. this.dataColumn90.Caption = "累计入库量";
  3081. this.dataColumn90.ColumnName = "ReceivedQty";
  3082. //
  3083. // dataColumn91
  3084. //
  3085. this.dataColumn91.Caption = "累计入库金额";
  3086. this.dataColumn91.ColumnName = "ReceivedAmt";
  3087. //
  3088. // dataColumn92
  3089. //
  3090. this.dataColumn92.Caption = "累计订单量";
  3091. this.dataColumn92.ColumnName = "OrderedQty";
  3092. //
  3093. // dataColumn93
  3094. //
  3095. this.dataColumn93.Caption = "累计订单金额";
  3096. this.dataColumn93.ColumnName = "OrderedAmt";
  3097. //
  3098. // dataColumn94
  3099. //
  3100. this.dataColumn94.Caption = "已结算量";
  3101. this.dataColumn94.ColumnName = "InvoicedQty";
  3102. //
  3103. // dataColumn95
  3104. //
  3105. this.dataColumn95.Caption = "已结算金额";
  3106. this.dataColumn95.ColumnName = "InvoicedAmt";
  3107. //
  3108. // dataColumn96
  3109. //
  3110. this.dataColumn96.Caption = "交货开始日期";
  3111. this.dataColumn96.ColumnName = "StartDate";
  3112. //
  3113. // dataColumn97
  3114. //
  3115. this.dataColumn97.Caption = "交货结束日期";
  3116. this.dataColumn97.ColumnName = "EndDate";
  3117. //
  3118. // dataColumn98
  3119. //
  3120. this.dataColumn98.Caption = "允许提早天数";
  3121. this.dataColumn98.ColumnName = "DaysEarly";
  3122. //
  3123. // dataColumn99
  3124. //
  3125. this.dataColumn99.Caption = "允许延迟天数";
  3126. this.dataColumn99.ColumnName = "DaysLate";
  3127. //
  3128. // dataColumn100
  3129. //
  3130. this.dataColumn100.Caption = "采购员";
  3131. this.dataColumn100.ColumnName = "BuyerName";
  3132. //
  3133. // dataColumn101
  3134. //
  3135. this.dataColumn101.Caption = "采购管理部门代码";
  3136. this.dataColumn101.ColumnName = "BuyerDeptCode";
  3137. //
  3138. // dataColumn102
  3139. //
  3140. this.dataColumn102.Caption = "采购管理部门描叙";
  3141. this.dataColumn102.ColumnName = "BuyerDeptDesc";
  3142. //
  3143. // dataColumn103
  3144. //
  3145. this.dataColumn103.Caption = "采购管理科室代码";
  3146. this.dataColumn103.ColumnName = "BuyerUnitCode";
  3147. //
  3148. // dataColumn104
  3149. //
  3150. this.dataColumn104.Caption = "采购管理科室描叙";
  3151. this.dataColumn104.ColumnName = "BuyerUnitDesc";
  3152. //
  3153. // dataColumn105
  3154. //
  3155. this.dataColumn105.Caption = "数据状态(有效、无效)";
  3156. this.dataColumn105.ColumnName = "Validflag";
  3157. //
  3158. // dataColumn106
  3159. //
  3160. this.dataColumn106.Caption = "创建人";
  3161. this.dataColumn106.ColumnName = "CreateName";
  3162. //
  3163. // dataColumn107
  3164. //
  3165. this.dataColumn107.Caption = "创建时间";
  3166. this.dataColumn107.ColumnName = "CreateTime";
  3167. //
  3168. // dataColumn108
  3169. //
  3170. this.dataColumn108.Caption = "修改人";
  3171. this.dataColumn108.ColumnName = "UpdateName";
  3172. //
  3173. // dataColumn109
  3174. //
  3175. this.dataColumn109.Caption = "修改时间";
  3176. this.dataColumn109.ColumnName = "UpdateTime";
  3177. //
  3178. // dataColumn110
  3179. //
  3180. this.dataColumn110.Caption = "废除人";
  3181. this.dataColumn110.ColumnName = "DeleteName";
  3182. //
  3183. // dataColumn111
  3184. //
  3185. this.dataColumn111.Caption = "废除时间";
  3186. this.dataColumn111.ColumnName = "DeleteTime";
  3187. //
  3188. // dataColumn128
  3189. //
  3190. this.dataColumn128.Caption = "采购计划行";
  3191. this.dataColumn128.ColumnName = "PurLineId";
  3192. //
  3193. // dataColumn129
  3194. //
  3195. this.dataColumn129.Caption = "结算条款ID";
  3196. this.dataColumn129.ColumnName = "BcmID";
  3197. //
  3198. // dataColumn130
  3199. //
  3200. this.dataColumn130.Caption = "结算条款名称";
  3201. this.dataColumn130.ColumnName = "BcmName";
  3202. //
  3203. // dataColumn131
  3204. //
  3205. this.dataColumn131.Caption = "结算条款版本号";
  3206. this.dataColumn131.ColumnName = "BcmVersionNo";
  3207. //
  3208. // dataColumn132
  3209. //
  3210. this.dataColumn132.Caption = "物料属性";
  3211. this.dataColumn132.ColumnName = "itemAttr";
  3212. //
  3213. // dataColumn133
  3214. //
  3215. this.dataColumn133.Caption = "物料属性编码";
  3216. this.dataColumn133.ColumnName = "itemAttrId";
  3217. //
  3218. // dataColumn134
  3219. //
  3220. this.dataColumn134.Caption = "备注";
  3221. this.dataColumn134.ColumnName = "remark";
  3222. //
  3223. // dataColumn152
  3224. //
  3225. this.dataColumn152.Caption = "单位换算编码";
  3226. this.dataColumn152.ColumnName = "ITEMUOMID";
  3227. //
  3228. // dataColumn153
  3229. //
  3230. this.dataColumn153.Caption = "唯一值编码";
  3231. this.dataColumn153.ColumnName = "ITEMUNIQUE";
  3232. //
  3233. // dataColumn154
  3234. //
  3235. this.dataColumn154.Caption = "标准";
  3236. this.dataColumn154.ColumnName = "ITEMSTANDARDSCODE";
  3237. //
  3238. // dataColumn155
  3239. //
  3240. this.dataColumn155.Caption = "标准编码";
  3241. this.dataColumn155.ColumnName = "ITEMSTANDARDSID";
  3242. //
  3243. // ultraExpandableGroupBox1
  3244. //
  3245. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  3246. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Right;
  3247. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(596, 129);
  3248. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightInsideBorder;
  3249. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(748, 0);
  3250. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  3251. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(596, 129);
  3252. this.ultraExpandableGroupBox1.TabIndex = 2;
  3253. this.ultraExpandableGroupBox1.Text = "发货行";
  3254. //
  3255. // ultraExpandableGroupBoxPanel1
  3256. //
  3257. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid4);
  3258. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3259. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 3);
  3260. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  3261. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(569, 123);
  3262. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  3263. //
  3264. // ultraGrid4
  3265. //
  3266. this.ultraGrid4.DataSource = this.dataSet3;
  3267. appearance5.BackColor = System.Drawing.SystemColors.Window;
  3268. appearance5.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3269. this.ultraGrid4.DisplayLayout.Appearance = appearance5;
  3270. ultraGridColumn73.Header.VisiblePosition = 7;
  3271. ultraGridColumn73.Width = 216;
  3272. ultraGridColumn74.Header.VisiblePosition = 2;
  3273. ultraGridColumn74.Hidden = true;
  3274. ultraGridColumn75.Header.VisiblePosition = 0;
  3275. appearance13.BackColor = System.Drawing.Color.Yellow;
  3276. ultraGridColumn76.FilterCellAppearance = appearance13;
  3277. ultraGridColumn76.Header.VisiblePosition = 1;
  3278. ultraGridColumn76.Width = 85;
  3279. ultraGridColumn77.Header.VisiblePosition = 4;
  3280. ultraGridColumn77.Width = 90;
  3281. ultraGridColumn78.Header.VisiblePosition = 8;
  3282. ultraGridColumn78.Width = 186;
  3283. ultraGridColumn79.Header.VisiblePosition = 9;
  3284. ultraGridColumn79.Width = 91;
  3285. ultraGridColumn80.Header.VisiblePosition = 10;
  3286. ultraGridColumn80.Width = 87;
  3287. ultraGridColumn81.Format = "yyyy/MM/dd";
  3288. ultraGridColumn81.Header.VisiblePosition = 11;
  3289. ultraGridColumn81.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
  3290. ultraGridColumn82.Header.VisiblePosition = 12;
  3291. ultraGridColumn82.Hidden = true;
  3292. ultraGridColumn83.Header.VisiblePosition = 13;
  3293. ultraGridColumn83.Hidden = true;
  3294. ultraGridColumn84.Format = "yyyy/MM/dd";
  3295. ultraGridColumn84.Header.VisiblePosition = 14;
  3296. ultraGridColumn84.Hidden = true;
  3297. ultraGridColumn84.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
  3298. ultraGridColumn85.Header.VisiblePosition = 15;
  3299. ultraGridColumn85.Hidden = true;
  3300. ultraGridColumn86.Header.VisiblePosition = 16;
  3301. ultraGridColumn86.Hidden = true;
  3302. ultraGridColumn87.Format = "yyyy/MM/dd";
  3303. ultraGridColumn87.Header.VisiblePosition = 17;
  3304. ultraGridColumn87.Hidden = true;
  3305. ultraGridColumn87.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
  3306. ultraGridColumn88.Header.VisiblePosition = 18;
  3307. ultraGridColumn88.Hidden = true;
  3308. ultraGridColumn89.Header.VisiblePosition = 3;
  3309. ultraGridColumn89.Hidden = true;
  3310. ultraGridColumn90.Format = "yyyy/MM/dd";
  3311. ultraGridColumn90.Header.VisiblePosition = 6;
  3312. ultraGridColumn90.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
  3313. ultraGridColumn91.Format = "yyyy/MM/dd";
  3314. ultraGridColumn91.Header.VisiblePosition = 5;
  3315. ultraGridColumn91.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DateTime;
  3316. ultraGridBand2.Columns.AddRange(new object[] {
  3317. ultraGridColumn73,
  3318. ultraGridColumn74,
  3319. ultraGridColumn75,
  3320. ultraGridColumn76,
  3321. ultraGridColumn77,
  3322. ultraGridColumn78,
  3323. ultraGridColumn79,
  3324. ultraGridColumn80,
  3325. ultraGridColumn81,
  3326. ultraGridColumn82,
  3327. ultraGridColumn83,
  3328. ultraGridColumn84,
  3329. ultraGridColumn85,
  3330. ultraGridColumn86,
  3331. ultraGridColumn87,
  3332. ultraGridColumn88,
  3333. ultraGridColumn89,
  3334. ultraGridColumn90,
  3335. ultraGridColumn91});
  3336. summarySettings4.DisplayFormat = "{0}";
  3337. summarySettings4.GroupBySummaryValueAppearance = appearance17;
  3338. summarySettings5.DisplayFormat = "{0}";
  3339. summarySettings5.GroupBySummaryValueAppearance = appearance18;
  3340. summarySettings6.DisplayFormat = "{0}";
  3341. summarySettings6.GroupBySummaryValueAppearance = appearance19;
  3342. ultraGridBand2.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  3343. summarySettings4,
  3344. summarySettings5,
  3345. summarySettings6});
  3346. ultraGridBand2.SummaryFooterCaption = "统计";
  3347. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  3348. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3349. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3350. appearance7.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3351. appearance7.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3352. appearance7.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3353. appearance7.BorderColor = System.Drawing.SystemColors.Window;
  3354. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance7;
  3355. appearance8.ForeColor = System.Drawing.SystemColors.GrayText;
  3356. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance8;
  3357. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3358. this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
  3359. appearance9.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3360. appearance9.BackColor2 = System.Drawing.SystemColors.Control;
  3361. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3362. appearance9.ForeColor = System.Drawing.SystemColors.GrayText;
  3363. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance9;
  3364. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  3365. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  3366. appearance10.BackColor = System.Drawing.SystemColors.Window;
  3367. appearance10.ForeColor = System.Drawing.SystemColors.ControlText;
  3368. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance10;
  3369. appearance11.BackColor = System.Drawing.SystemColors.Highlight;
  3370. appearance11.ForeColor = System.Drawing.SystemColors.HighlightText;
  3371. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance11;
  3372. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3373. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3374. appearance12.BackColor = System.Drawing.SystemColors.Window;
  3375. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance12;
  3376. appearance14.BorderColor = System.Drawing.Color.Silver;
  3377. appearance14.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3378. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance14;
  3379. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3380. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  3381. appearance27.BackColor = System.Drawing.SystemColors.Control;
  3382. appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3383. appearance27.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3384. appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3385. appearance27.BorderColor = System.Drawing.SystemColors.Window;
  3386. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance27;
  3387. appearance28.TextHAlignAsString = "Left";
  3388. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance28;
  3389. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3390. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3391. appearance36.BackColor = System.Drawing.SystemColors.Window;
  3392. appearance36.BorderColor = System.Drawing.Color.Silver;
  3393. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance36;
  3394. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3395. appearance37.BackColor = System.Drawing.SystemColors.ControlLight;
  3396. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance37;
  3397. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3398. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3399. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3400. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  3401. this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3402. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  3403. this.ultraGrid4.Name = "ultraGrid4";
  3404. this.ultraGrid4.Size = new System.Drawing.Size(569, 123);
  3405. this.ultraGrid4.TabIndex = 0;
  3406. this.ultraGrid4.Text = "ultraGrid4";
  3407. this.ultraGrid4.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid4_ClickCell);
  3408. this.ultraGrid4.Click += new System.EventHandler(this.ultraGrid4_Click);
  3409. //
  3410. // dataSet3
  3411. //
  3412. this.dataSet3.DataSetName = "NewDataSet";
  3413. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  3414. this.dataTable4});
  3415. //
  3416. // dataTable4
  3417. //
  3418. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  3419. this.dataColumn135,
  3420. this.dataColumn136,
  3421. this.dataColumn137,
  3422. this.dataColumn138,
  3423. this.dataColumn139,
  3424. this.dataColumn140,
  3425. this.dataColumn141,
  3426. this.dataColumn142,
  3427. this.dataColumn143,
  3428. this.dataColumn144,
  3429. this.dataColumn145,
  3430. this.dataColumn146,
  3431. this.dataColumn147,
  3432. this.dataColumn148,
  3433. this.dataColumn149,
  3434. this.dataColumn150,
  3435. this.dataColumn151,
  3436. this.dataColumn156,
  3437. this.dataColumn157});
  3438. this.dataTable4.TableName = "Table1";
  3439. //
  3440. // dataColumn135
  3441. //
  3442. this.dataColumn135.Caption = "发货行号";
  3443. this.dataColumn135.ColumnName = "orderLineDSqe";
  3444. //
  3445. // dataColumn136
  3446. //
  3447. this.dataColumn136.Caption = "合同号";
  3448. this.dataColumn136.ColumnName = "orderId";
  3449. //
  3450. // dataColumn137
  3451. //
  3452. this.dataColumn137.Caption = "状态";
  3453. this.dataColumn137.ColumnName = "status";
  3454. //
  3455. // dataColumn138
  3456. //
  3457. this.dataColumn138.Caption = "数量";
  3458. this.dataColumn138.ColumnName = "qty";
  3459. //
  3460. // dataColumn139
  3461. //
  3462. this.dataColumn139.Caption = "已生成量";
  3463. this.dataColumn139.ColumnName = "createdQty";
  3464. //
  3465. // dataColumn140
  3466. //
  3467. this.dataColumn140.Caption = "备注";
  3468. this.dataColumn140.ColumnName = "remark";
  3469. //
  3470. // dataColumn141
  3471. //
  3472. this.dataColumn141.Caption = "是否有效";
  3473. this.dataColumn141.ColumnName = "validflag";
  3474. //
  3475. // dataColumn142
  3476. //
  3477. this.dataColumn142.Caption = "创建人";
  3478. this.dataColumn142.ColumnName = "createName";
  3479. //
  3480. // dataColumn143
  3481. //
  3482. this.dataColumn143.Caption = "创建时间";
  3483. this.dataColumn143.ColumnName = "createTime";
  3484. //
  3485. // dataColumn144
  3486. //
  3487. this.dataColumn144.Caption = "创建人ID";
  3488. this.dataColumn144.ColumnName = "createUserId";
  3489. //
  3490. // dataColumn145
  3491. //
  3492. this.dataColumn145.Caption = "修改人";
  3493. this.dataColumn145.ColumnName = "updateName";
  3494. //
  3495. // dataColumn146
  3496. //
  3497. this.dataColumn146.Caption = "修改时间";
  3498. this.dataColumn146.ColumnName = "updateTime";
  3499. //
  3500. // dataColumn147
  3501. //
  3502. this.dataColumn147.Caption = "修改人ID";
  3503. this.dataColumn147.ColumnName = "updateUserId";
  3504. //
  3505. // dataColumn148
  3506. //
  3507. this.dataColumn148.Caption = "删除人";
  3508. this.dataColumn148.ColumnName = "deleteName";
  3509. //
  3510. // dataColumn149
  3511. //
  3512. this.dataColumn149.Caption = "删除时间";
  3513. this.dataColumn149.ColumnName = "deleteTime";
  3514. //
  3515. // dataColumn150
  3516. //
  3517. this.dataColumn150.Caption = "删除人ID";
  3518. this.dataColumn150.ColumnName = "deleteUserId";
  3519. //
  3520. // dataColumn151
  3521. //
  3522. this.dataColumn151.Caption = "合同行号";
  3523. this.dataColumn151.ColumnName = "orderLineSqe";
  3524. //
  3525. // dataColumn156
  3526. //
  3527. this.dataColumn156.Caption = "发货结束时间";
  3528. this.dataColumn156.ColumnName = "DELIVERYDATEEND";
  3529. //
  3530. // dataColumn157
  3531. //
  3532. this.dataColumn157.Caption = "发货开始时间";
  3533. this.dataColumn157.ColumnName = "DELIVERYDATESTART";
  3534. //
  3535. // ultraTabPageControl5
  3536. //
  3537. this.ultraTabPageControl5.Controls.Add(this.ultraGrid3);
  3538. this.ultraTabPageControl5.Location = new System.Drawing.Point(-7500, -8000);
  3539. this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3540. this.ultraTabPageControl5.Name = "ultraTabPageControl5";
  3541. this.ultraTabPageControl5.Size = new System.Drawing.Size(668, 9);
  3542. //
  3543. // ultraGrid3
  3544. //
  3545. this.ultraGrid3.DataSource = this.dataSet2;
  3546. appearance93.BackColor = System.Drawing.SystemColors.Window;
  3547. appearance93.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3548. this.ultraGrid3.DisplayLayout.Appearance = appearance93;
  3549. ultraGridColumn92.Header.VisiblePosition = 0;
  3550. ultraGridColumn92.Hidden = true;
  3551. ultraGridColumn93.Header.VisiblePosition = 1;
  3552. ultraGridColumn93.Hidden = true;
  3553. ultraGridColumn94.Header.VisiblePosition = 4;
  3554. ultraGridColumn95.Header.VisiblePosition = 2;
  3555. ultraGridColumn95.Width = 149;
  3556. ultraGridColumn96.Header.VisiblePosition = 3;
  3557. ultraGridColumn96.Width = 263;
  3558. ultraGridColumn97.Header.VisiblePosition = 5;
  3559. ultraGridColumn98.Header.VisiblePosition = 6;
  3560. ultraGridColumn99.Header.VisiblePosition = 7;
  3561. ultraGridColumn99.Width = 81;
  3562. ultraGridColumn100.Header.VisiblePosition = 8;
  3563. ultraGridColumn100.Width = 78;
  3564. ultraGridColumn101.Header.VisiblePosition = 9;
  3565. ultraGridColumn102.Header.VisiblePosition = 10;
  3566. ultraGridColumn102.Width = 67;
  3567. ultraGridColumn103.Header.VisiblePosition = 11;
  3568. ultraGridColumn104.Header.VisiblePosition = 12;
  3569. ultraGridColumn104.Hidden = true;
  3570. ultraGridColumn105.Header.VisiblePosition = 13;
  3571. ultraGridColumn105.Hidden = true;
  3572. ultraGridColumn106.Header.VisiblePosition = 14;
  3573. ultraGridBand3.Columns.AddRange(new object[] {
  3574. ultraGridColumn92,
  3575. ultraGridColumn93,
  3576. ultraGridColumn94,
  3577. ultraGridColumn95,
  3578. ultraGridColumn96,
  3579. ultraGridColumn97,
  3580. ultraGridColumn98,
  3581. ultraGridColumn99,
  3582. ultraGridColumn100,
  3583. ultraGridColumn101,
  3584. ultraGridColumn102,
  3585. ultraGridColumn103,
  3586. ultraGridColumn104,
  3587. ultraGridColumn105,
  3588. ultraGridColumn106});
  3589. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  3590. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3591. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3592. appearance94.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3593. appearance94.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3594. appearance94.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3595. appearance94.BorderColor = System.Drawing.SystemColors.Window;
  3596. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance94;
  3597. appearance95.ForeColor = System.Drawing.SystemColors.GrayText;
  3598. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance95;
  3599. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3600. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  3601. appearance96.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3602. appearance96.BackColor2 = System.Drawing.SystemColors.Control;
  3603. appearance96.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3604. appearance96.ForeColor = System.Drawing.SystemColors.GrayText;
  3605. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance96;
  3606. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  3607. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  3608. appearance97.BackColor = System.Drawing.SystemColors.Window;
  3609. appearance97.ForeColor = System.Drawing.SystemColors.ControlText;
  3610. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance97;
  3611. appearance98.BackColor = System.Drawing.SystemColors.Highlight;
  3612. appearance98.ForeColor = System.Drawing.SystemColors.HighlightText;
  3613. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance98;
  3614. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3615. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3616. appearance99.BackColor = System.Drawing.SystemColors.Window;
  3617. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance99;
  3618. appearance100.BorderColor = System.Drawing.Color.Silver;
  3619. appearance100.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3620. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance100;
  3621. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3622. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  3623. appearance101.BackColor = System.Drawing.SystemColors.Control;
  3624. appearance101.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3625. appearance101.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3626. appearance101.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3627. appearance101.BorderColor = System.Drawing.SystemColors.Window;
  3628. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance101;
  3629. appearance102.TextHAlignAsString = "Left";
  3630. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance102;
  3631. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3632. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3633. appearance103.BackColor = System.Drawing.SystemColors.Window;
  3634. appearance103.BorderColor = System.Drawing.Color.Silver;
  3635. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance103;
  3636. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3637. appearance104.BackColor = System.Drawing.SystemColors.ControlLight;
  3638. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance104;
  3639. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3640. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3641. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3642. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  3643. this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3644. this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
  3645. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3646. this.ultraGrid3.Name = "ultraGrid3";
  3647. this.ultraGrid3.Size = new System.Drawing.Size(668, 9);
  3648. this.ultraGrid3.TabIndex = 2;
  3649. this.ultraGrid3.Text = "ultraGrid3";
  3650. //
  3651. // dataSet2
  3652. //
  3653. this.dataSet2.DataSetName = "NewDataSet";
  3654. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  3655. this.dataTable3});
  3656. //
  3657. // dataTable3
  3658. //
  3659. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  3660. this.dataColumn112,
  3661. this.dataColumn113,
  3662. this.dataColumn114,
  3663. this.dataColumn115,
  3664. this.dataColumn116,
  3665. this.dataColumn117,
  3666. this.dataColumn118,
  3667. this.dataColumn119,
  3668. this.dataColumn120,
  3669. this.dataColumn121,
  3670. this.dataColumn122,
  3671. this.dataColumn123,
  3672. this.dataColumn124,
  3673. this.dataColumn125,
  3674. this.dataColumn126});
  3675. this.dataTable3.TableName = "Table1";
  3676. //
  3677. // dataColumn112
  3678. //
  3679. this.dataColumn112.Caption = "模板编号";
  3680. this.dataColumn112.ColumnName = "ModeId";
  3681. //
  3682. // dataColumn113
  3683. //
  3684. this.dataColumn113.Caption = "模板名称";
  3685. this.dataColumn113.ColumnName = "ModeName";
  3686. //
  3687. // dataColumn114
  3688. //
  3689. this.dataColumn114.Caption = "条款代码标识";
  3690. this.dataColumn114.ColumnName = "ClauseId";
  3691. //
  3692. // dataColumn115
  3693. //
  3694. this.dataColumn115.Caption = "条款名称";
  3695. this.dataColumn115.ColumnName = "ClauseName";
  3696. //
  3697. // dataColumn116
  3698. //
  3699. this.dataColumn116.Caption = "条款内容";
  3700. this.dataColumn116.ColumnName = "ClauseDesc";
  3701. //
  3702. // dataColumn117
  3703. //
  3704. this.dataColumn117.Caption = "条款顺序号";
  3705. this.dataColumn117.ColumnName = "ClauseIndx";
  3706. //
  3707. // dataColumn118
  3708. //
  3709. this.dataColumn118.Caption = "条款分类";
  3710. this.dataColumn118.ColumnName = "ClauseType";
  3711. //
  3712. // dataColumn119
  3713. //
  3714. this.dataColumn119.Caption = "是否必选";
  3715. this.dataColumn119.ColumnName = "ClauseDefault";
  3716. //
  3717. // dataColumn120
  3718. //
  3719. this.dataColumn120.Caption = "创建人";
  3720. this.dataColumn120.ColumnName = "CreateName";
  3721. //
  3722. // dataColumn121
  3723. //
  3724. this.dataColumn121.Caption = "创建时间";
  3725. this.dataColumn121.ColumnName = "CreateTime";
  3726. //
  3727. // dataColumn122
  3728. //
  3729. this.dataColumn122.Caption = "修改人";
  3730. this.dataColumn122.ColumnName = "UpdateName";
  3731. //
  3732. // dataColumn123
  3733. //
  3734. this.dataColumn123.Caption = "修改时间";
  3735. this.dataColumn123.ColumnName = "UpdateTime";
  3736. //
  3737. // dataColumn124
  3738. //
  3739. this.dataColumn124.Caption = "废除人";
  3740. this.dataColumn124.ColumnName = "DeleteName";
  3741. //
  3742. // dataColumn125
  3743. //
  3744. this.dataColumn125.Caption = "废除时间";
  3745. this.dataColumn125.ColumnName = "DeleteTime";
  3746. //
  3747. // dataColumn126
  3748. //
  3749. this.dataColumn126.Caption = "合同模板条款行号";
  3750. this.dataColumn126.ColumnName = "ID";
  3751. //
  3752. // ultraTabPageControl8
  3753. //
  3754. this.ultraTabPageControl8.Controls.Add(this.splitContainer1);
  3755. this.ultraTabPageControl8.Controls.Add(this.panel1);
  3756. this.ultraTabPageControl8.Location = new System.Drawing.Point(-7500, -8000);
  3757. this.ultraTabPageControl8.Name = "ultraTabPageControl8";
  3758. this.ultraTabPageControl8.Size = new System.Drawing.Size(668, 9);
  3759. //
  3760. // splitContainer1
  3761. //
  3762. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  3763. this.splitContainer1.Location = new System.Drawing.Point(278, 0);
  3764. this.splitContainer1.Name = "splitContainer1";
  3765. //
  3766. // splitContainer1.Panel1
  3767. //
  3768. this.splitContainer1.Panel1.Controls.Add(this.jy_procRecord);
  3769. //
  3770. // splitContainer1.Panel2
  3771. //
  3772. this.splitContainer1.Panel2.Controls.Add(this.ultraGrid6);
  3773. this.splitContainer1.Size = new System.Drawing.Size(390, 9);
  3774. this.splitContainer1.SplitterDistance = 205;
  3775. this.splitContainer1.TabIndex = 29;
  3776. //
  3777. // jy_procRecord
  3778. //
  3779. this.jy_procRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  3780. this.jy_procRecord.Location = new System.Drawing.Point(0, 0);
  3781. this.jy_procRecord.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3782. this.jy_procRecord.Multiline = true;
  3783. this.jy_procRecord.Name = "jy_procRecord";
  3784. this.jy_procRecord.ReadOnly = true;
  3785. this.jy_procRecord.Size = new System.Drawing.Size(205, 9);
  3786. this.jy_procRecord.TabIndex = 25;
  3787. //
  3788. // ultraGrid6
  3789. //
  3790. this.ultraGrid6.DataMember = "Table1";
  3791. this.ultraGrid6.DataSource = this.dataSet4;
  3792. appearance31.BackColor = System.Drawing.SystemColors.Window;
  3793. appearance31.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3794. this.ultraGrid6.DisplayLayout.Appearance = appearance31;
  3795. ultraGridColumn107.Header.VisiblePosition = 6;
  3796. ultraGridColumn108.Header.VisiblePosition = 2;
  3797. ultraGridColumn108.Width = 76;
  3798. ultraGridColumn109.Header.VisiblePosition = 3;
  3799. ultraGridColumn109.Width = 186;
  3800. ultraGridColumn110.Header.VisiblePosition = 4;
  3801. ultraGridColumn111.Header.VisiblePosition = 0;
  3802. ultraGridColumn111.Width = 70;
  3803. ultraGridColumn112.Header.VisiblePosition = 5;
  3804. ultraGridColumn113.Header.VisiblePosition = 1;
  3805. ultraGridColumn113.Width = 167;
  3806. ultraGridColumn114.Header.VisiblePosition = 7;
  3807. ultraGridBand4.Columns.AddRange(new object[] {
  3808. ultraGridColumn107,
  3809. ultraGridColumn108,
  3810. ultraGridColumn109,
  3811. ultraGridColumn110,
  3812. ultraGridColumn111,
  3813. ultraGridColumn112,
  3814. ultraGridColumn113,
  3815. ultraGridColumn114});
  3816. this.ultraGrid6.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  3817. this.ultraGrid6.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3818. this.ultraGrid6.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3819. appearance47.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3820. appearance47.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3821. appearance47.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3822. appearance47.BorderColor = System.Drawing.SystemColors.Window;
  3823. this.ultraGrid6.DisplayLayout.GroupByBox.Appearance = appearance47;
  3824. appearance68.ForeColor = System.Drawing.SystemColors.GrayText;
  3825. this.ultraGrid6.DisplayLayout.GroupByBox.BandLabelAppearance = appearance68;
  3826. this.ultraGrid6.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3827. this.ultraGrid6.DisplayLayout.GroupByBox.Hidden = true;
  3828. appearance61.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3829. appearance61.BackColor2 = System.Drawing.SystemColors.Control;
  3830. appearance61.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3831. appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
  3832. this.ultraGrid6.DisplayLayout.GroupByBox.PromptAppearance = appearance61;
  3833. this.ultraGrid6.DisplayLayout.MaxColScrollRegions = 1;
  3834. this.ultraGrid6.DisplayLayout.MaxRowScrollRegions = 1;
  3835. appearance71.BackColor = System.Drawing.SystemColors.Window;
  3836. appearance71.ForeColor = System.Drawing.SystemColors.ControlText;
  3837. this.ultraGrid6.DisplayLayout.Override.ActiveCellAppearance = appearance71;
  3838. appearance74.BackColor = System.Drawing.SystemColors.Highlight;
  3839. appearance74.ForeColor = System.Drawing.SystemColors.HighlightText;
  3840. this.ultraGrid6.DisplayLayout.Override.ActiveRowAppearance = appearance74;
  3841. this.ultraGrid6.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3842. this.ultraGrid6.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3843. appearance76.BackColor = System.Drawing.SystemColors.Window;
  3844. this.ultraGrid6.DisplayLayout.Override.CardAreaAppearance = appearance76;
  3845. appearance72.BorderColor = System.Drawing.Color.Silver;
  3846. appearance72.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3847. this.ultraGrid6.DisplayLayout.Override.CellAppearance = appearance72;
  3848. this.ultraGrid6.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3849. this.ultraGrid6.DisplayLayout.Override.CellPadding = 0;
  3850. appearance70.BackColor = System.Drawing.SystemColors.Control;
  3851. appearance70.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3852. appearance70.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3853. appearance70.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3854. appearance70.BorderColor = System.Drawing.SystemColors.Window;
  3855. this.ultraGrid6.DisplayLayout.Override.GroupByRowAppearance = appearance70;
  3856. appearance69.TextHAlignAsString = "Left";
  3857. this.ultraGrid6.DisplayLayout.Override.HeaderAppearance = appearance69;
  3858. this.ultraGrid6.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3859. this.ultraGrid6.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3860. appearance75.BackColor = System.Drawing.SystemColors.Window;
  3861. appearance75.BorderColor = System.Drawing.Color.Silver;
  3862. this.ultraGrid6.DisplayLayout.Override.RowAppearance = appearance75;
  3863. this.ultraGrid6.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3864. appearance73.BackColor = System.Drawing.SystemColors.ControlLight;
  3865. this.ultraGrid6.DisplayLayout.Override.TemplateAddRowAppearance = appearance73;
  3866. this.ultraGrid6.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3867. this.ultraGrid6.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3868. this.ultraGrid6.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3869. this.ultraGrid6.Dock = System.Windows.Forms.DockStyle.Fill;
  3870. this.ultraGrid6.Location = new System.Drawing.Point(0, 0);
  3871. this.ultraGrid6.Name = "ultraGrid6";
  3872. this.ultraGrid6.Size = new System.Drawing.Size(181, 9);
  3873. this.ultraGrid6.TabIndex = 28;
  3874. this.ultraGrid6.Text = "ultraGrid6";
  3875. //
  3876. // dataSet4
  3877. //
  3878. this.dataSet4.DataSetName = "NewDataSet";
  3879. this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
  3880. this.dataTable5});
  3881. //
  3882. // dataTable5
  3883. //
  3884. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  3885. this.dataColumn159,
  3886. this.dataColumn161,
  3887. this.dataColumn162,
  3888. this.dataColumn163,
  3889. this.dataColumn164,
  3890. this.dataColumn165,
  3891. this.dataColumn166,
  3892. this.dataColumn160});
  3893. this.dataTable5.TableName = "Table1";
  3894. //
  3895. // dataColumn159
  3896. //
  3897. this.dataColumn159.Caption = "主键";
  3898. this.dataColumn159.ColumnName = "EVAID";
  3899. //
  3900. // dataColumn161
  3901. //
  3902. this.dataColumn161.Caption = "评标结果";
  3903. this.dataColumn161.ColumnName = "EVARESULT";
  3904. //
  3905. // dataColumn162
  3906. //
  3907. this.dataColumn162.Caption = "评标意见";
  3908. this.dataColumn162.ColumnName = "EVAMSG";
  3909. //
  3910. // dataColumn163
  3911. //
  3912. this.dataColumn163.Caption = "是否最新";
  3913. this.dataColumn163.ColumnName = "ISLATEST";
  3914. //
  3915. // dataColumn164
  3916. //
  3917. this.dataColumn164.Caption = "评标人";
  3918. this.dataColumn164.ColumnName = "CREATENAME";
  3919. //
  3920. // dataColumn165
  3921. //
  3922. this.dataColumn165.Caption = "创建时间";
  3923. this.dataColumn165.ColumnName = "CREATETIME";
  3924. //
  3925. // dataColumn166
  3926. //
  3927. this.dataColumn166.Caption = "评标人部门";
  3928. this.dataColumn166.ColumnName = "deletename";
  3929. //
  3930. // dataColumn160
  3931. //
  3932. this.dataColumn160.Caption = "评标人ID";
  3933. this.dataColumn160.ColumnName = "CREATEUSERID";
  3934. //
  3935. // panel1
  3936. //
  3937. this.panel1.Controls.Add(this.ultraLabel38);
  3938. this.panel1.Controls.Add(this.jy_negDate);
  3939. this.panel1.Controls.Add(this.ultraLabel35);
  3940. this.panel1.Controls.Add(this.ultraLabel32);
  3941. this.panel1.Controls.Add(this.jy_mngOrgName);
  3942. this.panel1.Controls.Add(this.ultraLabel31);
  3943. this.panel1.Controls.Add(this.jy_buyerUsername);
  3944. this.panel1.Controls.Add(this.ultraLabel28);
  3945. this.panel1.Controls.Add(this.jy_taskName);
  3946. this.panel1.Controls.Add(this.jy_taskId);
  3947. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  3948. this.panel1.Location = new System.Drawing.Point(0, 0);
  3949. this.panel1.Name = "panel1";
  3950. this.panel1.Size = new System.Drawing.Size(278, 9);
  3951. this.panel1.TabIndex = 27;
  3952. //
  3953. // ultraLabel38
  3954. //
  3955. this.ultraLabel38.AutoSize = true;
  3956. this.ultraLabel38.Location = new System.Drawing.Point(24, 14);
  3957. this.ultraLabel38.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3958. this.ultraLabel38.Name = "ultraLabel38";
  3959. this.ultraLabel38.Size = new System.Drawing.Size(54, 16);
  3960. this.ultraLabel38.TabIndex = 15;
  3961. this.ultraLabel38.Text = "任务单号";
  3962. //
  3963. // jy_negDate
  3964. //
  3965. this.jy_negDate.FormatProvider = new System.Globalization.CultureInfo("en-GB");
  3966. this.jy_negDate.Location = new System.Drawing.Point(82, 130);
  3967. this.jy_negDate.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3968. this.jy_negDate.MaskInput = "{LOC}yyyy/mm/dd";
  3969. this.jy_negDate.Name = "jy_negDate";
  3970. this.jy_negDate.ReadOnly = true;
  3971. this.jy_negDate.Size = new System.Drawing.Size(186, 21);
  3972. this.jy_negDate.TabIndex = 26;
  3973. //
  3974. // ultraLabel35
  3975. //
  3976. this.ultraLabel35.AutoSize = true;
  3977. this.ultraLabel35.Location = new System.Drawing.Point(24, 44);
  3978. this.ultraLabel35.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3979. this.ultraLabel35.Name = "ultraLabel35";
  3980. this.ultraLabel35.Size = new System.Drawing.Size(54, 16);
  3981. this.ultraLabel35.TabIndex = 16;
  3982. this.ultraLabel35.Text = "任务名称";
  3983. //
  3984. // ultraLabel32
  3985. //
  3986. this.ultraLabel32.AutoSize = true;
  3987. this.ultraLabel32.Location = new System.Drawing.Point(36, 74);
  3988. this.ultraLabel32.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3989. this.ultraLabel32.Name = "ultraLabel32";
  3990. this.ultraLabel32.Size = new System.Drawing.Size(42, 16);
  3991. this.ultraLabel32.TabIndex = 17;
  3992. this.ultraLabel32.Text = "业务员";
  3993. //
  3994. // jy_mngOrgName
  3995. //
  3996. this.jy_mngOrgName.Location = new System.Drawing.Point(82, 101);
  3997. this.jy_mngOrgName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  3998. this.jy_mngOrgName.Name = "jy_mngOrgName";
  3999. this.jy_mngOrgName.ReadOnly = true;
  4000. this.jy_mngOrgName.Size = new System.Drawing.Size(186, 21);
  4001. this.jy_mngOrgName.TabIndex = 24;
  4002. this.jy_mngOrgName.Text = " ";
  4003. //
  4004. // ultraLabel31
  4005. //
  4006. this.ultraLabel31.AutoSize = true;
  4007. this.ultraLabel31.Location = new System.Drawing.Point(24, 104);
  4008. this.ultraLabel31.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4009. this.ultraLabel31.Name = "ultraLabel31";
  4010. this.ultraLabel31.Size = new System.Drawing.Size(54, 16);
  4011. this.ultraLabel31.TabIndex = 18;
  4012. this.ultraLabel31.Text = "主管科室";
  4013. //
  4014. // jy_buyerUsername
  4015. //
  4016. this.jy_buyerUsername.Location = new System.Drawing.Point(82, 72);
  4017. this.jy_buyerUsername.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4018. this.jy_buyerUsername.Name = "jy_buyerUsername";
  4019. this.jy_buyerUsername.ReadOnly = true;
  4020. this.jy_buyerUsername.Size = new System.Drawing.Size(186, 21);
  4021. this.jy_buyerUsername.TabIndex = 23;
  4022. //
  4023. // ultraLabel28
  4024. //
  4025. this.ultraLabel28.AutoSize = true;
  4026. this.ultraLabel28.Location = new System.Drawing.Point(24, 134);
  4027. this.ultraLabel28.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4028. this.ultraLabel28.Name = "ultraLabel28";
  4029. this.ultraLabel28.Size = new System.Drawing.Size(54, 16);
  4030. this.ultraLabel28.TabIndex = 19;
  4031. this.ultraLabel28.Text = "谈判日期";
  4032. //
  4033. // jy_taskName
  4034. //
  4035. this.jy_taskName.Location = new System.Drawing.Point(82, 43);
  4036. this.jy_taskName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4037. this.jy_taskName.Name = "jy_taskName";
  4038. this.jy_taskName.ReadOnly = true;
  4039. this.jy_taskName.Size = new System.Drawing.Size(186, 21);
  4040. this.jy_taskName.TabIndex = 22;
  4041. this.jy_taskName.Text = " ";
  4042. //
  4043. // jy_taskId
  4044. //
  4045. this.jy_taskId.Location = new System.Drawing.Point(82, 14);
  4046. this.jy_taskId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4047. this.jy_taskId.Name = "jy_taskId";
  4048. this.jy_taskId.ReadOnly = true;
  4049. this.jy_taskId.Size = new System.Drawing.Size(186, 21);
  4050. this.jy_taskId.TabIndex = 21;
  4051. this.jy_taskId.Text = " ";
  4052. //
  4053. // ultraTabPageControl6
  4054. //
  4055. this.ultraTabPageControl6.Controls.Add(this.ultraGrid5);
  4056. this.ultraTabPageControl6.Location = new System.Drawing.Point(-7500, -8000);
  4057. this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4058. this.ultraTabPageControl6.Name = "ultraTabPageControl6";
  4059. this.ultraTabPageControl6.Size = new System.Drawing.Size(668, 9);
  4060. //
  4061. // ultraGrid5
  4062. //
  4063. appearance52.BackColor = System.Drawing.SystemColors.Window;
  4064. appearance52.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  4065. this.ultraGrid5.DisplayLayout.Appearance = appearance52;
  4066. this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4067. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  4068. appearance49.BackColor = System.Drawing.SystemColors.ActiveBorder;
  4069. appearance49.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4070. appearance49.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  4071. appearance49.BorderColor = System.Drawing.SystemColors.Window;
  4072. this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance49;
  4073. appearance50.ForeColor = System.Drawing.SystemColors.GrayText;
  4074. this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance50;
  4075. this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4076. this.ultraGrid5.DisplayLayout.GroupByBox.Hidden = true;
  4077. appearance51.BackColor = System.Drawing.SystemColors.ControlLightLight;
  4078. appearance51.BackColor2 = System.Drawing.SystemColors.Control;
  4079. appearance51.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4080. appearance51.ForeColor = System.Drawing.SystemColors.GrayText;
  4081. this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance51;
  4082. this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
  4083. this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
  4084. appearance60.BackColor = System.Drawing.SystemColors.Window;
  4085. appearance60.ForeColor = System.Drawing.SystemColors.ControlText;
  4086. this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance60;
  4087. appearance55.BackColor = System.Drawing.SystemColors.Highlight;
  4088. appearance55.ForeColor = System.Drawing.SystemColors.HighlightText;
  4089. this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance55;
  4090. this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  4091. this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  4092. appearance54.BackColor = System.Drawing.SystemColors.Window;
  4093. this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance54;
  4094. appearance53.BorderColor = System.Drawing.Color.Silver;
  4095. appearance53.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  4096. this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance53;
  4097. this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  4098. this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
  4099. appearance57.BackColor = System.Drawing.SystemColors.Control;
  4100. appearance57.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4101. appearance57.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  4102. appearance57.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4103. appearance57.BorderColor = System.Drawing.SystemColors.Window;
  4104. this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance57;
  4105. appearance59.TextHAlignAsString = "Left";
  4106. this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance59;
  4107. this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  4108. this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  4109. appearance58.BackColor = System.Drawing.SystemColors.Window;
  4110. appearance58.BorderColor = System.Drawing.Color.Silver;
  4111. this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance58;
  4112. this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  4113. appearance56.BackColor = System.Drawing.SystemColors.ControlLight;
  4114. this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance56;
  4115. this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  4116. this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  4117. this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  4118. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  4119. this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
  4120. this.ultraGrid5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4121. this.ultraGrid5.Name = "ultraGrid5";
  4122. this.ultraGrid5.Size = new System.Drawing.Size(668, 9);
  4123. this.ultraGrid5.TabIndex = 1;
  4124. this.ultraGrid5.Text = "ultraGrid5";
  4125. //
  4126. // COP_OrderType
  4127. //
  4128. this.COP_OrderType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  4129. this.COP_OrderType.Location = new System.Drawing.Point(585, 6);
  4130. this.COP_OrderType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4131. this.COP_OrderType.Name = "COP_OrderType";
  4132. this.COP_OrderType.Size = new System.Drawing.Size(108, 21);
  4133. this.COP_OrderType.TabIndex = 1;
  4134. //
  4135. // COP_SuppName
  4136. //
  4137. this.COP_SuppName.Location = new System.Drawing.Point(237, 6);
  4138. this.COP_SuppName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4139. this.COP_SuppName.Name = "COP_SuppName";
  4140. this.COP_SuppName.Size = new System.Drawing.Size(108, 21);
  4141. this.COP_SuppName.TabIndex = 3;
  4142. //
  4143. // COP_OrderId
  4144. //
  4145. this.COP_OrderId.Location = new System.Drawing.Point(63, 6);
  4146. this.COP_OrderId.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4147. this.COP_OrderId.Name = "COP_OrderId";
  4148. this.COP_OrderId.Size = new System.Drawing.Size(108, 21);
  4149. this.COP_OrderId.TabIndex = 2;
  4150. //
  4151. // ultraLabel60
  4152. //
  4153. this.ultraLabel60.AutoSize = true;
  4154. this.ultraLabel60.Location = new System.Drawing.Point(179, 9);
  4155. this.ultraLabel60.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4156. this.ultraLabel60.Name = "ultraLabel60";
  4157. this.ultraLabel60.Size = new System.Drawing.Size(54, 16);
  4158. this.ultraLabel60.TabIndex = 4;
  4159. this.ultraLabel60.Text = "供应商名";
  4160. //
  4161. // ultraLabel56
  4162. //
  4163. this.ultraLabel56.AutoSize = true;
  4164. this.ultraLabel56.Location = new System.Drawing.Point(17, 9);
  4165. this.ultraLabel56.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4166. this.ultraLabel56.Name = "ultraLabel56";
  4167. this.ultraLabel56.Size = new System.Drawing.Size(42, 16);
  4168. this.ultraLabel56.TabIndex = 3;
  4169. this.ultraLabel56.Text = "合同号";
  4170. //
  4171. // ultraLabel55
  4172. //
  4173. this.ultraLabel55.AutoSize = true;
  4174. this.ultraLabel55.Location = new System.Drawing.Point(527, 8);
  4175. this.ultraLabel55.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4176. this.ultraLabel55.Name = "ultraLabel55";
  4177. this.ultraLabel55.Size = new System.Drawing.Size(54, 16);
  4178. this.ultraLabel55.TabIndex = 2;
  4179. this.ultraLabel55.Text = "合同类别";
  4180. //
  4181. // ultraLabel54
  4182. //
  4183. this.ultraLabel54.AutoSize = true;
  4184. this.ultraLabel54.Location = new System.Drawing.Point(353, 9);
  4185. this.ultraLabel54.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4186. this.ultraLabel54.Name = "ultraLabel54";
  4187. this.ultraLabel54.Size = new System.Drawing.Size(54, 16);
  4188. this.ultraLabel54.TabIndex = 1;
  4189. this.ultraLabel54.Text = "合同状态";
  4190. //
  4191. // COPStatus
  4192. //
  4193. this.COPStatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  4194. valueListItem5.DataValue = " ";
  4195. valueListItem5.DisplayText = "全部";
  4196. valueListItem20.DataValue = "1";
  4197. valueListItem20.DisplayText = "待提报";
  4198. valueListItem43.DataValue = "2";
  4199. valueListItem43.DisplayText = "审批中";
  4200. valueListItem44.DataValue = "3";
  4201. valueListItem44.DisplayText = "已审批";
  4202. valueListItem45.DataValue = "4";
  4203. valueListItem45.DisplayText = "已入库";
  4204. valueListItem24.DataValue = "5";
  4205. valueListItem24.DisplayText = "已结算";
  4206. this.COPStatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  4207. valueListItem5,
  4208. valueListItem20,
  4209. valueListItem43,
  4210. valueListItem44,
  4211. valueListItem45,
  4212. valueListItem24});
  4213. this.COPStatus.Location = new System.Drawing.Point(411, 6);
  4214. this.COPStatus.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4215. this.COPStatus.Name = "COPStatus";
  4216. this.COPStatus.Size = new System.Drawing.Size(108, 21);
  4217. this.COPStatus.TabIndex = 0;
  4218. //
  4219. // ultraTabControl1
  4220. //
  4221. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  4222. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  4223. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  4224. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  4225. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl7);
  4226. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  4227. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  4228. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4229. this.ultraTabControl1.Name = "ultraTabControl1";
  4230. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  4231. this.ultraTabControl1.Size = new System.Drawing.Size(1350, 200);
  4232. this.ultraTabControl1.TabIndex = 0;
  4233. ultraTab1.TabPage = this.ultraTabPageControl1;
  4234. ultraTab1.Text = "合同头";
  4235. ultraTab2.TabPage = this.ultraTabPageControl2;
  4236. ultraTab2.Text = "合同行";
  4237. ultraTab9.TabPage = this.ultraTabPageControl7;
  4238. ultraTab9.Text = "发货行";
  4239. ultraTab3.Key = "3";
  4240. ultraTab3.TabPage = this.ultraTabPageControl3;
  4241. ultraTab3.Text = "附件";
  4242. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  4243. ultraTab1,
  4244. ultraTab2,
  4245. ultraTab9,
  4246. ultraTab3});
  4247. //
  4248. // ultraTabSharedControlsPage1
  4249. //
  4250. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  4251. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4252. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  4253. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1346, 174);
  4254. //
  4255. // ultraPanel3
  4256. //
  4257. //
  4258. // ultraPanel3.ClientArea
  4259. //
  4260. this.ultraPanel3.ClientArea.Controls.Add(this.ultraPanel6);
  4261. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  4262. this.ultraPanel3.Location = new System.Drawing.Point(0, 32);
  4263. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4264. this.ultraPanel3.Name = "ultraPanel3";
  4265. this.ultraPanel3.Size = new System.Drawing.Size(1354, 550);
  4266. this.ultraPanel3.TabIndex = 2;
  4267. //
  4268. // ultraPanel6
  4269. //
  4270. //
  4271. // ultraPanel6.ClientArea
  4272. //
  4273. this.ultraPanel6.ClientArea.Controls.Add(this.splitContainer2);
  4274. this.ultraPanel6.ClientArea.Controls.Add(this.ultraExpandableGroupBox2);
  4275. this.ultraPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
  4276. this.ultraPanel6.Location = new System.Drawing.Point(0, 0);
  4277. this.ultraPanel6.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4278. this.ultraPanel6.Name = "ultraPanel6";
  4279. this.ultraPanel6.Size = new System.Drawing.Size(1354, 550);
  4280. this.ultraPanel6.TabIndex = 2;
  4281. //
  4282. // splitContainer2
  4283. //
  4284. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  4285. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  4286. this.splitContainer2.Name = "splitContainer2";
  4287. this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
  4288. //
  4289. // splitContainer2.Panel1
  4290. //
  4291. this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox3);
  4292. //
  4293. // splitContainer2.Panel2
  4294. //
  4295. this.splitContainer2.Panel2.Controls.Add(this.ultraGroupBox4);
  4296. this.splitContainer2.Size = new System.Drawing.Size(1354, 328);
  4297. this.splitContainer2.SplitterDistance = 148;
  4298. this.splitContainer2.TabIndex = 1;
  4299. //
  4300. // ultraGroupBox3
  4301. //
  4302. this.ultraGroupBox3.Controls.Add(this.ultraGrid1);
  4303. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  4304. this.ultraGroupBox3.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
  4305. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
  4306. this.ultraGroupBox3.Name = "ultraGroupBox3";
  4307. this.ultraGroupBox3.Size = new System.Drawing.Size(1354, 148);
  4308. this.ultraGroupBox3.TabIndex = 2;
  4309. this.ultraGroupBox3.Text = "合同头";
  4310. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  4311. //
  4312. // ultraGrid1
  4313. //
  4314. this.ultraGrid1.DataMember = "Table1";
  4315. this.ultraGrid1.DataSource = this.dataSet1;
  4316. appearance105.BackColor = System.Drawing.SystemColors.Window;
  4317. appearance105.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  4318. this.ultraGrid1.DisplayLayout.Appearance = appearance105;
  4319. ultraGridColumn115.Header.VisiblePosition = 1;
  4320. ultraGridColumn116.Header.VisiblePosition = 3;
  4321. ultraGridColumn116.Hidden = true;
  4322. ultraGridColumn117.Header.VisiblePosition = 4;
  4323. ultraGridColumn117.Width = 82;
  4324. ultraGridColumn118.Header.VisiblePosition = 14;
  4325. ultraGridColumn119.Header.VisiblePosition = 18;
  4326. ultraGridColumn119.Width = 68;
  4327. ultraGridColumn120.Header.VisiblePosition = 9;
  4328. ultraGridColumn120.Width = 155;
  4329. ultraGridColumn121.Header.VisiblePosition = 19;
  4330. ultraGridColumn121.Width = 69;
  4331. ultraGridColumn122.Header.VisiblePosition = 5;
  4332. ultraGridColumn122.Width = 89;
  4333. ultraGridColumn123.Header.VisiblePosition = 6;
  4334. ultraGridColumn123.Width = 174;
  4335. ultraGridColumn124.Header.VisiblePosition = 15;
  4336. ultraGridColumn124.Hidden = true;
  4337. ultraGridColumn125.Header.VisiblePosition = 16;
  4338. ultraGridColumn125.Hidden = true;
  4339. ultraGridColumn126.Header.VisiblePosition = 17;
  4340. ultraGridColumn126.Hidden = true;
  4341. ultraGridColumn127.Header.Caption = "合同货币";
  4342. ultraGridColumn127.Header.VisiblePosition = 12;
  4343. ultraGridColumn127.Width = 70;
  4344. ultraGridColumn128.Header.VisiblePosition = 20;
  4345. ultraGridColumn129.Header.VisiblePosition = 21;
  4346. ultraGridColumn129.Hidden = true;
  4347. ultraGridColumn130.Header.VisiblePosition = 22;
  4348. ultraGridColumn130.Hidden = true;
  4349. ultraGridColumn131.Header.Caption = "税率";
  4350. ultraGridColumn131.Header.VisiblePosition = 10;
  4351. ultraGridColumn131.Width = 68;
  4352. ultraGridColumn132.Header.VisiblePosition = 13;
  4353. ultraGridColumn132.Width = 103;
  4354. ultraGridColumn133.Header.VisiblePosition = 8;
  4355. ultraGridColumn134.Header.VisiblePosition = 7;
  4356. ultraGridColumn135.Header.VisiblePosition = 24;
  4357. ultraGridColumn136.Header.VisiblePosition = 25;
  4358. ultraGridColumn136.Hidden = true;
  4359. ultraGridColumn137.Header.VisiblePosition = 26;
  4360. ultraGridColumn137.Hidden = true;
  4361. ultraGridColumn138.Header.VisiblePosition = 27;
  4362. ultraGridColumn138.Hidden = true;
  4363. ultraGridColumn139.Header.VisiblePosition = 28;
  4364. ultraGridColumn139.Hidden = true;
  4365. ultraGridColumn140.Header.VisiblePosition = 29;
  4366. ultraGridColumn141.Header.VisiblePosition = 30;
  4367. ultraGridColumn141.Hidden = true;
  4368. ultraGridColumn142.Header.VisiblePosition = 31;
  4369. ultraGridColumn142.Hidden = true;
  4370. ultraGridColumn143.Header.VisiblePosition = 32;
  4371. ultraGridColumn143.Hidden = true;
  4372. ultraGridColumn144.Header.VisiblePosition = 33;
  4373. ultraGridColumn144.Hidden = true;
  4374. ultraGridColumn145.Header.VisiblePosition = 34;
  4375. ultraGridColumn146.Header.VisiblePosition = 35;
  4376. ultraGridColumn146.Hidden = true;
  4377. ultraGridColumn147.Header.VisiblePosition = 36;
  4378. ultraGridColumn147.Hidden = true;
  4379. ultraGridColumn148.Header.VisiblePosition = 37;
  4380. ultraGridColumn148.Hidden = true;
  4381. ultraGridColumn149.Header.VisiblePosition = 38;
  4382. ultraGridColumn149.Hidden = true;
  4383. ultraGridColumn150.Header.VisiblePosition = 39;
  4384. ultraGridColumn151.Header.VisiblePosition = 40;
  4385. ultraGridColumn152.Header.VisiblePosition = 41;
  4386. ultraGridColumn153.Header.Caption = "业务员";
  4387. ultraGridColumn153.Header.VisiblePosition = 42;
  4388. ultraGridColumn154.Header.VisiblePosition = 43;
  4389. ultraGridColumn155.Header.VisiblePosition = 44;
  4390. ultraGridColumn156.Header.VisiblePosition = 45;
  4391. ultraGridColumn156.Hidden = true;
  4392. ultraGridColumn157.Header.VisiblePosition = 46;
  4393. ultraGridColumn157.Hidden = true;
  4394. ultraGridColumn158.Header.VisiblePosition = 47;
  4395. ultraGridColumn158.Hidden = true;
  4396. ultraGridColumn159.Header.VisiblePosition = 48;
  4397. ultraGridColumn160.Header.VisiblePosition = 49;
  4398. ultraGridColumn161.Header.VisiblePosition = 50;
  4399. ultraGridColumn162.Header.VisiblePosition = 51;
  4400. ultraGridColumn163.Header.VisiblePosition = 11;
  4401. ultraGridColumn163.Width = 180;
  4402. ultraGridColumn164.Header.VisiblePosition = 52;
  4403. ultraGridColumn164.Hidden = true;
  4404. ultraGridColumn165.Header.VisiblePosition = 2;
  4405. ultraGridColumn165.Width = 71;
  4406. ultraGridColumn166.Header.VisiblePosition = 23;
  4407. ultraGridColumn167.DataType = typeof(bool);
  4408. ultraGridColumn167.DefaultCellValue = false;
  4409. ultraGridColumn167.Header.Caption = "";
  4410. ultraGridColumn167.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
  4411. ultraGridColumn167.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
  4412. ultraGridColumn167.Header.VisiblePosition = 0;
  4413. ultraGridColumn167.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  4414. ultraGridBand5.Columns.AddRange(new object[] {
  4415. ultraGridColumn115,
  4416. ultraGridColumn116,
  4417. ultraGridColumn117,
  4418. ultraGridColumn118,
  4419. ultraGridColumn119,
  4420. ultraGridColumn120,
  4421. ultraGridColumn121,
  4422. ultraGridColumn122,
  4423. ultraGridColumn123,
  4424. ultraGridColumn124,
  4425. ultraGridColumn125,
  4426. ultraGridColumn126,
  4427. ultraGridColumn127,
  4428. ultraGridColumn128,
  4429. ultraGridColumn129,
  4430. ultraGridColumn130,
  4431. ultraGridColumn131,
  4432. ultraGridColumn132,
  4433. ultraGridColumn133,
  4434. ultraGridColumn134,
  4435. ultraGridColumn135,
  4436. ultraGridColumn136,
  4437. ultraGridColumn137,
  4438. ultraGridColumn138,
  4439. ultraGridColumn139,
  4440. ultraGridColumn140,
  4441. ultraGridColumn141,
  4442. ultraGridColumn142,
  4443. ultraGridColumn143,
  4444. ultraGridColumn144,
  4445. ultraGridColumn145,
  4446. ultraGridColumn146,
  4447. ultraGridColumn147,
  4448. ultraGridColumn148,
  4449. ultraGridColumn149,
  4450. ultraGridColumn150,
  4451. ultraGridColumn151,
  4452. ultraGridColumn152,
  4453. ultraGridColumn153,
  4454. ultraGridColumn154,
  4455. ultraGridColumn155,
  4456. ultraGridColumn156,
  4457. ultraGridColumn157,
  4458. ultraGridColumn158,
  4459. ultraGridColumn159,
  4460. ultraGridColumn160,
  4461. ultraGridColumn161,
  4462. ultraGridColumn162,
  4463. ultraGridColumn163,
  4464. ultraGridColumn164,
  4465. ultraGridColumn165,
  4466. ultraGridColumn166,
  4467. ultraGridColumn167});
  4468. summarySettings7.DisplayFormat = "{0}";
  4469. summarySettings7.GroupBySummaryValueAppearance = appearance20;
  4470. summarySettings8.DisplayFormat = "{0}";
  4471. summarySettings8.GroupBySummaryValueAppearance = appearance21;
  4472. summarySettings9.DisplayFormat = "{0}";
  4473. summarySettings9.GroupBySummaryValueAppearance = appearance25;
  4474. ultraGridBand5.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  4475. summarySettings7,
  4476. summarySettings8,
  4477. summarySettings9});
  4478. ultraGridBand5.SummaryFooterCaption = "统计";
  4479. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  4480. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4481. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  4482. appearance106.BackColor = System.Drawing.SystemColors.ActiveBorder;
  4483. appearance106.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4484. appearance106.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  4485. appearance106.BorderColor = System.Drawing.SystemColors.Window;
  4486. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance106;
  4487. appearance107.ForeColor = System.Drawing.SystemColors.GrayText;
  4488. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance107;
  4489. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4490. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  4491. appearance108.BackColor = System.Drawing.SystemColors.ControlLightLight;
  4492. appearance108.BackColor2 = System.Drawing.SystemColors.Control;
  4493. appearance108.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4494. appearance108.ForeColor = System.Drawing.SystemColors.GrayText;
  4495. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance108;
  4496. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  4497. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  4498. appearance109.BackColor = System.Drawing.SystemColors.Window;
  4499. appearance109.ForeColor = System.Drawing.SystemColors.ControlText;
  4500. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance109;
  4501. appearance110.BackColor = System.Drawing.SystemColors.Highlight;
  4502. appearance110.ForeColor = System.Drawing.SystemColors.HighlightText;
  4503. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance110;
  4504. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  4505. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  4506. appearance111.BackColor = System.Drawing.SystemColors.Window;
  4507. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance111;
  4508. appearance112.BorderColor = System.Drawing.Color.Silver;
  4509. appearance112.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  4510. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance112;
  4511. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  4512. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  4513. appearance113.BackColor = System.Drawing.SystemColors.Control;
  4514. appearance113.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4515. appearance113.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  4516. appearance113.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4517. appearance113.BorderColor = System.Drawing.SystemColors.Window;
  4518. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance113;
  4519. appearance114.TextHAlignAsString = "Left";
  4520. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance114;
  4521. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  4522. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  4523. appearance115.BackColor = System.Drawing.SystemColors.Window;
  4524. appearance115.BorderColor = System.Drawing.Color.Silver;
  4525. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance115;
  4526. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  4527. appearance116.BackColor = System.Drawing.SystemColors.ControlLight;
  4528. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance116;
  4529. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  4530. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  4531. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  4532. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  4533. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4534. this.ultraGrid1.Location = new System.Drawing.Point(3, 18);
  4535. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4536. this.ultraGrid1.Name = "ultraGrid1";
  4537. this.ultraGrid1.Size = new System.Drawing.Size(1348, 127);
  4538. this.ultraGrid1.TabIndex = 0;
  4539. this.ultraGrid1.Text = "ultraGrid1";
  4540. this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
  4541. this.ultraGrid1.Click += new System.EventHandler(this.ultraGrid1_Click);
  4542. //
  4543. // ultraGroupBox4
  4544. //
  4545. this.ultraGroupBox4.Controls.Add(this.ultraTabControl2);
  4546. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  4547. this.ultraGroupBox4.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
  4548. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
  4549. this.ultraGroupBox4.Name = "ultraGroupBox4";
  4550. this.ultraGroupBox4.Size = new System.Drawing.Size(1354, 176);
  4551. this.ultraGroupBox4.TabIndex = 0;
  4552. this.ultraGroupBox4.Text = "合同明细";
  4553. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  4554. //
  4555. // ultraTabControl2
  4556. //
  4557. this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
  4558. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
  4559. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
  4560. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl6);
  4561. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl8);
  4562. this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  4563. this.ultraTabControl2.Location = new System.Drawing.Point(3, 18);
  4564. this.ultraTabControl2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4565. this.ultraTabControl2.Name = "ultraTabControl2";
  4566. this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
  4567. this.ultraTabControl2.Size = new System.Drawing.Size(1348, 155);
  4568. this.ultraTabControl2.TabIndex = 2;
  4569. this.ultraTabControl2.TabOrientation = Infragistics.Win.UltraWinTabs.TabOrientation.TopLeft;
  4570. ultraTab4.TabPage = this.ultraTabPageControl4;
  4571. ultraTab4.Text = "合同行";
  4572. ultraTab5.TabPage = this.ultraTabPageControl5;
  4573. ultraTab5.Text = "合同条款";
  4574. ultraTab7.TabPage = this.ultraTabPageControl8;
  4575. ultraTab7.Text = "采购纪要";
  4576. ultraTab6.TabPage = this.ultraTabPageControl6;
  4577. ultraTab6.Text = "附件";
  4578. this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  4579. ultraTab4,
  4580. ultraTab5,
  4581. ultraTab7,
  4582. ultraTab6});
  4583. //
  4584. // ultraTabSharedControlsPage2
  4585. //
  4586. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  4587. this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4588. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  4589. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1344, 129);
  4590. //
  4591. // ultraExpandableGroupBox2
  4592. //
  4593. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  4594. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
  4595. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(1354, 222);
  4596. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 328);
  4597. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  4598. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1354, 222);
  4599. this.ultraExpandableGroupBox2.TabIndex = 3;
  4600. this.ultraExpandableGroupBox2.Text = "编辑区";
  4601. this.ultraExpandableGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  4602. //
  4603. // ultraExpandableGroupBoxPanel2
  4604. //
  4605. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraTabControl1);
  4606. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  4607. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(2, 20);
  4608. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  4609. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1350, 200);
  4610. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  4611. //
  4612. // ultraGroupBox1
  4613. //
  4614. this.ultraGroupBox1.Controls.Add(this.CK_Ctime);
  4615. this.ultraGroupBox1.Controls.Add(this.label7);
  4616. this.ultraGroupBox1.Controls.Add(this.label6);
  4617. this.ultraGroupBox1.Controls.Add(this.txt_createTimeEnd);
  4618. this.ultraGroupBox1.Controls.Add(this.txt_createTimeStart);
  4619. this.ultraGroupBox1.Controls.Add(this.COP_OrderType);
  4620. this.ultraGroupBox1.Controls.Add(this.ultraLabel56);
  4621. this.ultraGroupBox1.Controls.Add(this.COP_SuppName);
  4622. this.ultraGroupBox1.Controls.Add(this.COPStatus);
  4623. this.ultraGroupBox1.Controls.Add(this.COP_OrderId);
  4624. this.ultraGroupBox1.Controls.Add(this.ultraLabel54);
  4625. this.ultraGroupBox1.Controls.Add(this.ultraLabel60);
  4626. this.ultraGroupBox1.Controls.Add(this.ultraLabel55);
  4627. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  4628. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  4629. this.ultraGroupBox1.Name = "ultraGroupBox1";
  4630. this.ultraGroupBox1.Size = new System.Drawing.Size(1354, 32);
  4631. this.ultraGroupBox1.TabIndex = 3;
  4632. //
  4633. // CK_Ctime
  4634. //
  4635. this.CK_Ctime.AutoSize = true;
  4636. this.CK_Ctime.Location = new System.Drawing.Point(711, 9);
  4637. this.CK_Ctime.Name = "CK_Ctime";
  4638. this.CK_Ctime.Size = new System.Drawing.Size(15, 14);
  4639. this.CK_Ctime.TabIndex = 44;
  4640. this.CK_Ctime.UseVisualStyleBackColor = true;
  4641. this.CK_Ctime.CheckedChanged += new System.EventHandler(this.CK_Ctime_CheckedChanged);
  4642. //
  4643. // label7
  4644. //
  4645. this.label7.AutoSize = true;
  4646. this.label7.Location = new System.Drawing.Point(941, 9);
  4647. this.label7.Name = "label7";
  4648. this.label7.Size = new System.Drawing.Size(17, 12);
  4649. this.label7.TabIndex = 43;
  4650. this.label7.Text = "至";
  4651. //
  4652. // label6
  4653. //
  4654. this.label6.AutoSize = true;
  4655. this.label6.Location = new System.Drawing.Point(733, 10);
  4656. this.label6.Name = "label6";
  4657. this.label6.Size = new System.Drawing.Size(53, 12);
  4658. this.label6.TabIndex = 42;
  4659. this.label6.Text = "创建时间";
  4660. //
  4661. // txt_createTimeEnd
  4662. //
  4663. this.txt_createTimeEnd.DateButtons.Add(dateButton7);
  4664. this.txt_createTimeEnd.Format = "yyyy/MM/dd";
  4665. this.txt_createTimeEnd.Location = new System.Drawing.Point(962, 5);
  4666. this.txt_createTimeEnd.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4667. this.txt_createTimeEnd.Name = "txt_createTimeEnd";
  4668. this.txt_createTimeEnd.NonAutoSizeHeight = 25;
  4669. this.txt_createTimeEnd.Size = new System.Drawing.Size(144, 21);
  4670. this.txt_createTimeEnd.TabIndex = 41;
  4671. this.txt_createTimeEnd.Value = "2020/9/30 0:00:00";
  4672. //
  4673. // txt_createTimeStart
  4674. //
  4675. dateButton8.Date = new System.DateTime(((long)(0)));
  4676. this.txt_createTimeStart.DateButtons.Add(dateButton8);
  4677. this.txt_createTimeStart.Format = "yyyy/MM/dd";
  4678. this.txt_createTimeStart.Location = new System.Drawing.Point(791, 5);
  4679. this.txt_createTimeStart.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4680. this.txt_createTimeStart.Name = "txt_createTimeStart";
  4681. this.txt_createTimeStart.NonAutoSizeHeight = 25;
  4682. this.txt_createTimeStart.Size = new System.Drawing.Size(144, 21);
  4683. this.txt_createTimeStart.TabIndex = 40;
  4684. this.txt_createTimeStart.Value = "2020/9/17 0:00:00";
  4685. //
  4686. // FrmOrderM
  4687. //
  4688. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  4689. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4690. this.ClientSize = new System.Drawing.Size(1354, 582);
  4691. this.Controls.Add(this.ultraPanel3);
  4692. this.Controls.Add(this.ultraGroupBox1);
  4693. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4694. this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
  4695. this.Name = "FrmOrderM";
  4696. this.Text = "FrmOrderM";
  4697. this.Load += new System.EventHandler(this.FrmOrderM_Load);
  4698. this.ultraTabPageControl1.ResumeLayout(false);
  4699. this.ultraTabPageControl1.PerformLayout();
  4700. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt)).EndInit();
  4701. ((System.ComponentModel.ISupportInitialize)(this.txt_AftPaymentAmt1)).EndInit();
  4702. ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax)).EndInit();
  4703. ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt)).EndInit();
  4704. ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryType)).EndInit();
  4705. ((System.ComponentModel.ISupportInitialize)(this.txt_deliveryCondition)).EndInit();
  4706. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderMoneyType)).EndInit();
  4707. ((System.ComponentModel.ISupportInitialize)(this.txt_CreateTime)).EndInit();
  4708. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxRateName)).EndInit();
  4709. ((System.ComponentModel.ISupportInitialize)(this.txt_SignDate)).EndInit();
  4710. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderType)).EndInit();
  4711. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderClass)).EndInit();
  4712. ((System.ComponentModel.ISupportInitialize)(this.txt_Currency)).EndInit();
  4713. ((System.ComponentModel.ISupportInitialize)(this.txt_SignAddress)).EndInit();
  4714. ((System.ComponentModel.ISupportInitialize)(this.txt_TitleName)).EndInit();
  4715. ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName)).EndInit();
  4716. ((System.ComponentModel.ISupportInitialize)(this.txt_ExchangeRateCur)).EndInit();
  4717. ((System.ComponentModel.ISupportInitialize)(this.txt_SuppName)).EndInit();
  4718. ((System.ComponentModel.ISupportInitialize)(this.txt_ModeName)).EndInit();
  4719. ((System.ComponentModel.ISupportInitialize)(this.txt_TaskRecordId)).EndInit();
  4720. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderId)).EndInit();
  4721. this.ultraTabPageControl2.ResumeLayout(false);
  4722. this.ultraTabPageControl2.PerformLayout();
  4723. ((System.ComponentModel.ISupportInitialize)(this.txt_TaxAmt2)).EndInit();
  4724. ((System.ComponentModel.ISupportInitialize)(this.txt_WithoutTaxAmt2)).EndInit();
  4725. ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithTax)).EndInit();
  4726. ((System.ComponentModel.ISupportInitialize)(this.txt_PriceWithoutTax)).EndInit();
  4727. ((System.ComponentModel.ISupportInitialize)(this.txt_Qty)).EndInit();
  4728. ((System.ComponentModel.ISupportInitialize)(this.txt_WithAmtTax2)).EndInit();
  4729. ((System.ComponentModel.ISupportInitialize)(this.txt_paymentType)).EndInit();
  4730. ((System.ComponentModel.ISupportInitialize)(this.txt_packType)).EndInit();
  4731. ((System.ComponentModel.ISupportInitialize)(this.txt_purstandardscode)).EndInit();
  4732. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
  4733. ((System.ComponentModel.ISupportInitialize)(this.txt_itemAttrName)).EndInit();
  4734. ((System.ComponentModel.ISupportInitialize)(this.txt_Pur_Clause)).EndInit();
  4735. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemUomConefficient)).EndInit();
  4736. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  4737. ((System.ComponentModel.ISupportInitialize)(this.txt_EndDate2)).EndInit();
  4738. ((System.ComponentModel.ISupportInitialize)(this.txt_StartDate2)).EndInit();
  4739. ((System.ComponentModel.ISupportInitialize)(this.txt_ReceiveType)).EndInit();
  4740. ((System.ComponentModel.ISupportInitialize)(this.txt_QuantityPriceNum)).EndInit();
  4741. ((System.ComponentModel.ISupportInitialize)(this.txt_GradePriceNo)).EndInit();
  4742. ((System.ComponentModel.ISupportInitialize)(this.txt_ChemPriceNo)).EndInit();
  4743. ((System.ComponentModel.ISupportInitialize)(this.txt_BuyerName2)).EndInit();
  4744. ((System.ComponentModel.ISupportInitialize)(this.txt_DelvryRangeMin)).EndInit();
  4745. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemName)).EndInit();
  4746. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemCode)).EndInit();
  4747. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderLineSqe)).EndInit();
  4748. this.ultraTabPageControl7.ResumeLayout(false);
  4749. this.ultraTabPageControl7.PerformLayout();
  4750. ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateStart)).EndInit();
  4751. ((System.ComponentModel.ISupportInitialize)(this.txt_askDeliveryDateEnd)).EndInit();
  4752. ((System.ComponentModel.ISupportInitialize)(this.txt_CD_Qty)).EndInit();
  4753. ((System.ComponentModel.ISupportInitialize)(this.txt_orderCD_Remark)).EndInit();
  4754. this.ultraTabPageControl4.ResumeLayout(false);
  4755. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  4756. this.ultraGroupBox2.ResumeLayout(false);
  4757. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  4758. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  4759. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  4760. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  4761. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  4762. this.ultraExpandableGroupBox1.ResumeLayout(false);
  4763. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  4764. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  4765. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  4766. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  4767. this.ultraTabPageControl5.ResumeLayout(false);
  4768. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  4769. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  4770. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  4771. this.ultraTabPageControl8.ResumeLayout(false);
  4772. this.splitContainer1.Panel1.ResumeLayout(false);
  4773. this.splitContainer1.Panel1.PerformLayout();
  4774. this.splitContainer1.Panel2.ResumeLayout(false);
  4775. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  4776. this.splitContainer1.ResumeLayout(false);
  4777. ((System.ComponentModel.ISupportInitialize)(this.jy_procRecord)).EndInit();
  4778. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid6)).EndInit();
  4779. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
  4780. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  4781. this.panel1.ResumeLayout(false);
  4782. this.panel1.PerformLayout();
  4783. ((System.ComponentModel.ISupportInitialize)(this.jy_negDate)).EndInit();
  4784. ((System.ComponentModel.ISupportInitialize)(this.jy_mngOrgName)).EndInit();
  4785. ((System.ComponentModel.ISupportInitialize)(this.jy_buyerUsername)).EndInit();
  4786. ((System.ComponentModel.ISupportInitialize)(this.jy_taskName)).EndInit();
  4787. ((System.ComponentModel.ISupportInitialize)(this.jy_taskId)).EndInit();
  4788. this.ultraTabPageControl6.ResumeLayout(false);
  4789. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  4790. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderType)).EndInit();
  4791. ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).EndInit();
  4792. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).EndInit();
  4793. ((System.ComponentModel.ISupportInitialize)(this.COPStatus)).EndInit();
  4794. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  4795. this.ultraTabControl1.ResumeLayout(false);
  4796. this.ultraPanel3.ClientArea.ResumeLayout(false);
  4797. this.ultraPanel3.ResumeLayout(false);
  4798. this.ultraPanel6.ClientArea.ResumeLayout(false);
  4799. this.ultraPanel6.ResumeLayout(false);
  4800. this.splitContainer2.Panel1.ResumeLayout(false);
  4801. this.splitContainer2.Panel2.ResumeLayout(false);
  4802. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  4803. this.splitContainer2.ResumeLayout(false);
  4804. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  4805. this.ultraGroupBox3.ResumeLayout(false);
  4806. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  4807. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  4808. this.ultraGroupBox4.ResumeLayout(false);
  4809. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
  4810. this.ultraTabControl2.ResumeLayout(false);
  4811. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  4812. this.ultraExpandableGroupBox2.ResumeLayout(false);
  4813. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  4814. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  4815. this.ultraGroupBox1.ResumeLayout(false);
  4816. this.ultraGroupBox1.PerformLayout();
  4817. ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeEnd)).EndInit();
  4818. ((System.ComponentModel.ISupportInitialize)(this.txt_createTimeStart)).EndInit();
  4819. this.ResumeLayout(false);
  4820. }
  4821. #endregion
  4822. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  4823. private Infragistics.Win.Misc.UltraPanel ultraPanel6;
  4824. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  4825. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  4826. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  4827. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  4828. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  4829. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BuyerName;
  4830. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ExchangeRateCur;
  4831. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SuppName;
  4832. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ModeName;
  4833. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TaskRecordId;
  4834. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderId;
  4835. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  4836. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  4837. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  4838. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  4839. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  4840. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  4841. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  4842. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  4843. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  4844. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  4845. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  4846. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  4847. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  4848. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  4849. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  4850. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  4851. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  4852. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SignAddress;
  4853. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  4854. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  4855. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  4856. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  4857. private Infragistics.Win.Misc.UltraLabel ultraLabel59;
  4858. private Infragistics.Win.Misc.UltraLabel ultraLabel49;
  4859. private Infragistics.Win.Misc.UltraLabel ultraLabel51;
  4860. private Infragistics.Win.Misc.UltraLabel ultraLabel53;
  4861. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  4862. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  4863. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  4864. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  4865. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  4866. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  4867. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  4868. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  4869. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  4870. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_QuantityPriceNum;
  4871. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GradePriceNo;
  4872. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ChemPriceNo;
  4873. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BuyerName2;
  4874. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DelvryRangeMin;
  4875. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemName;
  4876. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemCode;
  4877. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderLineSqe;
  4878. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderClass;
  4879. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_Currency;
  4880. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderType;
  4881. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ReceiveType;
  4882. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  4883. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  4884. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  4885. private Infragistics.Win.Misc.UltraLabel ultraLabel54;
  4886. private Infragistics.Win.UltraWinEditors.UltraComboEditor COPStatus;
  4887. private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_SuppName;
  4888. private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_OrderId;
  4889. private System.Data.DataSet dataSet1;
  4890. private System.Data.DataTable dataTable1;
  4891. private System.Data.DataColumn dataColumn1;
  4892. private System.Data.DataColumn dataColumn2;
  4893. private System.Data.DataColumn dataColumn3;
  4894. private System.Data.DataColumn dataColumn4;
  4895. private System.Data.DataColumn dataColumn5;
  4896. private System.Data.DataColumn dataColumn6;
  4897. private System.Data.DataColumn dataColumn7;
  4898. private System.Data.DataColumn dataColumn8;
  4899. private System.Data.DataColumn dataColumn9;
  4900. private System.Data.DataColumn dataColumn10;
  4901. private System.Data.DataColumn dataColumn11;
  4902. private System.Data.DataColumn dataColumn12;
  4903. private System.Data.DataColumn dataColumn13;
  4904. private System.Data.DataColumn dataColumn14;
  4905. private System.Data.DataColumn dataColumn15;
  4906. private System.Data.DataColumn dataColumn16;
  4907. private System.Data.DataColumn dataColumn17;
  4908. private System.Data.DataColumn dataColumn18;
  4909. private System.Data.DataColumn dataColumn19;
  4910. private System.Data.DataColumn dataColumn20;
  4911. private System.Data.DataColumn dataColumn21;
  4912. private System.Data.DataColumn dataColumn22;
  4913. private System.Data.DataColumn dataColumn23;
  4914. private System.Data.DataColumn dataColumn24;
  4915. private System.Data.DataColumn dataColumn25;
  4916. private System.Data.DataColumn dataColumn26;
  4917. private System.Data.DataColumn dataColumn27;
  4918. private System.Data.DataColumn dataColumn29;
  4919. private System.Data.DataColumn dataColumn30;
  4920. private System.Data.DataColumn dataColumn31;
  4921. private System.Data.DataColumn dataColumn32;
  4922. private System.Data.DataColumn dataColumn28;
  4923. private System.Data.DataColumn dataColumn33;
  4924. private System.Data.DataColumn dataColumn34;
  4925. private System.Data.DataColumn dataColumn35;
  4926. private System.Data.DataColumn dataColumn36;
  4927. private System.Data.DataColumn dataColumn37;
  4928. private System.Data.DataColumn dataColumn38;
  4929. private System.Data.DataColumn dataColumn39;
  4930. private System.Data.DataColumn dataColumn40;
  4931. private System.Data.DataColumn dataColumn41;
  4932. private System.Data.DataColumn dataColumn42;
  4933. private System.Data.DataColumn dataColumn43;
  4934. private System.Data.DataColumn dataColumn44;
  4935. private System.Data.DataColumn dataColumn45;
  4936. private System.Data.DataColumn dataColumn46;
  4937. private System.Data.DataColumn dataColumn47;
  4938. private System.Data.DataColumn dataColumn48;
  4939. private System.Data.DataColumn dataColumn49;
  4940. private System.Data.DataColumn dataColumn50;
  4941. private System.Data.DataTable dataTable2;
  4942. private System.Data.DataColumn dataColumn51;
  4943. private System.Data.DataColumn dataColumn52;
  4944. private System.Data.DataColumn dataColumn53;
  4945. private System.Data.DataColumn dataColumn54;
  4946. private System.Data.DataColumn dataColumn55;
  4947. private System.Data.DataColumn dataColumn56;
  4948. private System.Data.DataColumn dataColumn57;
  4949. private System.Data.DataColumn dataColumn58;
  4950. private System.Data.DataColumn dataColumn59;
  4951. private System.Data.DataColumn dataColumn60;
  4952. private System.Data.DataColumn dataColumn61;
  4953. private System.Data.DataColumn dataColumn62;
  4954. private System.Data.DataColumn dataColumn63;
  4955. private System.Data.DataColumn dataColumn64;
  4956. private System.Data.DataColumn dataColumn65;
  4957. private System.Data.DataColumn dataColumn66;
  4958. private System.Data.DataColumn dataColumn67;
  4959. private System.Data.DataColumn dataColumn68;
  4960. private System.Data.DataColumn dataColumn69;
  4961. private System.Data.DataColumn dataColumn70;
  4962. private System.Data.DataColumn dataColumn71;
  4963. private System.Data.DataColumn dataColumn72;
  4964. private System.Data.DataColumn dataColumn73;
  4965. private System.Data.DataColumn dataColumn74;
  4966. private System.Data.DataColumn dataColumn75;
  4967. private System.Data.DataColumn dataColumn76;
  4968. private System.Data.DataColumn dataColumn77;
  4969. private System.Data.DataColumn dataColumn78;
  4970. private System.Data.DataColumn dataColumn79;
  4971. private System.Data.DataColumn dataColumn80;
  4972. private System.Data.DataColumn dataColumn81;
  4973. private System.Data.DataColumn dataColumn82;
  4974. private System.Data.DataColumn dataColumn83;
  4975. private System.Data.DataColumn dataColumn84;
  4976. private System.Data.DataColumn dataColumn85;
  4977. private System.Data.DataColumn dataColumn86;
  4978. private System.Data.DataColumn dataColumn87;
  4979. private System.Data.DataColumn dataColumn88;
  4980. private System.Data.DataColumn dataColumn89;
  4981. private System.Data.DataColumn dataColumn90;
  4982. private System.Data.DataColumn dataColumn91;
  4983. private System.Data.DataColumn dataColumn92;
  4984. private System.Data.DataColumn dataColumn93;
  4985. private System.Data.DataColumn dataColumn94;
  4986. private System.Data.DataColumn dataColumn95;
  4987. private System.Data.DataColumn dataColumn96;
  4988. private System.Data.DataColumn dataColumn97;
  4989. private System.Data.DataColumn dataColumn98;
  4990. private System.Data.DataColumn dataColumn99;
  4991. private System.Data.DataColumn dataColumn100;
  4992. private System.Data.DataColumn dataColumn101;
  4993. private System.Data.DataColumn dataColumn102;
  4994. private System.Data.DataColumn dataColumn103;
  4995. private System.Data.DataColumn dataColumn104;
  4996. private System.Data.DataColumn dataColumn105;
  4997. private System.Data.DataColumn dataColumn106;
  4998. private System.Data.DataColumn dataColumn107;
  4999. private System.Data.DataColumn dataColumn108;
  5000. private System.Data.DataColumn dataColumn109;
  5001. private System.Data.DataColumn dataColumn110;
  5002. private System.Data.DataColumn dataColumn111;
  5003. private System.Data.DataSet dataSet2;
  5004. private System.Data.DataTable dataTable3;
  5005. private System.Data.DataColumn dataColumn112;
  5006. private System.Data.DataColumn dataColumn113;
  5007. private System.Data.DataColumn dataColumn114;
  5008. private System.Data.DataColumn dataColumn115;
  5009. private System.Data.DataColumn dataColumn116;
  5010. private System.Data.DataColumn dataColumn117;
  5011. private System.Data.DataColumn dataColumn118;
  5012. private System.Data.DataColumn dataColumn119;
  5013. private System.Data.DataColumn dataColumn120;
  5014. private System.Data.DataColumn dataColumn121;
  5015. private System.Data.DataColumn dataColumn122;
  5016. private System.Data.DataColumn dataColumn123;
  5017. private System.Data.DataColumn dataColumn124;
  5018. private System.Data.DataColumn dataColumn125;
  5019. private System.Data.DataColumn dataColumn126;
  5020. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
  5021. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  5022. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  5023. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
  5024. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
  5025. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  5026. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  5027. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  5028. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_StartDate2;
  5029. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_EndDate2;
  5030. private Infragistics.Win.UltraWinEditors.UltraComboEditor COP_OrderType;
  5031. private System.Data.DataColumn dataColumn127;
  5032. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SignDate;
  5033. private Infragistics.Win.Misc.UltraLabel ultraLabel57;
  5034. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemUomConefficient;
  5035. private Infragistics.Win.Misc.UltraLabel ultraLabel58;
  5036. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  5037. private Infragistics.Win.Misc.UltraLabel ultraLabel61;
  5038. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TitleName;
  5039. private Infragistics.Win.Misc.UltraLabel ultraLabel63;
  5040. private Infragistics.Win.Misc.UltraLabel currencylabel2;
  5041. private Infragistics.Win.Misc.UltraLabel currencylabel3;
  5042. private Infragistics.Win.Misc.UltraLabel currencyLabel62;
  5043. private Infragistics.Win.Misc.UltraLabel currencyLabel65;
  5044. private Infragistics.Win.Misc.UltraLabel currencyLabel66;
  5045. private System.Data.DataColumn dataColumn128;
  5046. private Infragistics.Win.Misc.UltraLabel ultraLabel69;
  5047. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_Pur_Clause;
  5048. private Infragistics.Win.Misc.UltraLabel ultraLabel70;
  5049. private System.Data.DataColumn dataColumn129;
  5050. private System.Data.DataColumn dataColumn130;
  5051. private System.Data.DataColumn dataColumn131;
  5052. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_TaxRateName;
  5053. private Infragistics.Win.Misc.UltraLabel ultraLabel71;
  5054. private Infragistics.Win.Misc.UltraLabel currencyLabel63;
  5055. private Infragistics.Win.Misc.UltraLabel currencyLabel64;
  5056. private Infragistics.Win.Misc.UltraLabel ultraLabel72;
  5057. private Infragistics.Win.Misc.UltraLabel ultraLabel75;
  5058. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_itemAttrName;
  5059. private System.Data.DataColumn dataColumn132;
  5060. private System.Data.DataColumn dataColumn133;
  5061. private Infragistics.Win.Misc.UltraLabel ultraLabel76;
  5062. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
  5063. private System.Data.DataColumn dataColumn134;
  5064. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  5065. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  5066. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  5067. private System.Data.DataSet dataSet3;
  5068. private System.Data.DataTable dataTable4;
  5069. private System.Data.DataColumn dataColumn135;
  5070. private System.Data.DataColumn dataColumn136;
  5071. private System.Data.DataColumn dataColumn137;
  5072. private System.Data.DataColumn dataColumn138;
  5073. private System.Data.DataColumn dataColumn139;
  5074. private System.Data.DataColumn dataColumn140;
  5075. private System.Data.DataColumn dataColumn141;
  5076. private System.Data.DataColumn dataColumn142;
  5077. private System.Data.DataColumn dataColumn143;
  5078. private System.Data.DataColumn dataColumn144;
  5079. private System.Data.DataColumn dataColumn145;
  5080. private System.Data.DataColumn dataColumn146;
  5081. private System.Data.DataColumn dataColumn147;
  5082. private System.Data.DataColumn dataColumn148;
  5083. private System.Data.DataColumn dataColumn149;
  5084. private System.Data.DataColumn dataColumn150;
  5085. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
  5086. private System.Windows.Forms.Label label1;
  5087. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_orderCD_Remark;
  5088. private System.Data.DataColumn dataColumn151;
  5089. private System.Windows.Forms.Label label3;
  5090. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CD_Qty;
  5091. private System.Windows.Forms.SplitContainer splitContainer2;
  5092. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  5093. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  5094. private System.Data.DataColumn dataColumn152;
  5095. private System.Data.DataColumn dataColumn153;
  5096. private System.Data.DataColumn dataColumn154;
  5097. private System.Data.DataColumn dataColumn155;
  5098. private Infragistics.Win.Misc.UltraLabel currencylabel1;
  5099. private Infragistics.Win.Misc.UltraLabel currencylabel4;
  5100. private System.Windows.Forms.Label txt_UNIT;
  5101. private System.Windows.Forms.Label txt_WEIGHTUNIT;
  5102. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_purstandardscode;
  5103. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  5104. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_askDeliveryDateEnd;
  5105. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  5106. private System.Windows.Forms.Label label2;
  5107. private System.Data.DataColumn dataColumn156;
  5108. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  5109. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CreateTime;
  5110. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_askDeliveryDateStart;
  5111. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  5112. private System.Windows.Forms.Label label4;
  5113. private System.Data.DataColumn dataColumn157;
  5114. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  5115. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  5116. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  5117. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_OrderMoneyType;
  5118. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  5119. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_deliveryCondition;
  5120. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  5121. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  5122. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_deliveryType;
  5123. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_paymentType;
  5124. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  5125. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_packType;
  5126. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  5127. private System.Windows.Forms.CheckBox CK_Ctime;
  5128. private System.Windows.Forms.Label label7;
  5129. private System.Windows.Forms.Label label6;
  5130. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_createTimeEnd;
  5131. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_createTimeStart;
  5132. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithAmtTax2;
  5133. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Qty;
  5134. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_TaxAmt2;
  5135. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithoutTaxAmt2;
  5136. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_PriceWithTax;
  5137. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_PriceWithoutTax;
  5138. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_TaxAmt;
  5139. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_AftPaymentAmt1;
  5140. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithAmtTax;
  5141. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WithoutTaxAmt;
  5142. private System.Data.DataColumn dataColumn158;
  5143. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
  5144. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor jy_negDate;
  5145. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_procRecord;
  5146. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_mngOrgName;
  5147. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_buyerUsername;
  5148. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_taskName;
  5149. private Infragistics.Win.UltraWinEditors.UltraTextEditor jy_taskId;
  5150. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  5151. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  5152. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  5153. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  5154. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  5155. private System.Windows.Forms.Panel panel1;
  5156. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid6;
  5157. private System.Data.DataSet dataSet4;
  5158. private System.Data.DataTable dataTable5;
  5159. private System.Data.DataColumn dataColumn159;
  5160. private System.Data.DataColumn dataColumn161;
  5161. private System.Data.DataColumn dataColumn162;
  5162. private System.Data.DataColumn dataColumn163;
  5163. private System.Data.DataColumn dataColumn164;
  5164. private System.Data.DataColumn dataColumn165;
  5165. private System.Data.DataColumn dataColumn166;
  5166. private System.Data.DataColumn dataColumn160;
  5167. private System.Windows.Forms.SplitContainer splitContainer1;
  5168. }
  5169. }