| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689 |
- namespace Pur
- {
- partial class SupplierManagement
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton5 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton6 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("insert");
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton7 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton8 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppShortName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppStartDate", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppEndDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxStartDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxEndDate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsInternal");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsManufacturer");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsSubCompany");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("supplierLinkMan");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactFax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactTel");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactEmail");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactCellPhone");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactTitle");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppComment");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCreditRate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suspendStatus");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPREGCAPITAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxRate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppLicNum");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orgCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPREGCAPCURRENCY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPADDPOSTAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppType");
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("account");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("accountcw");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("end");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("balanceCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1113366579);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 1113366580);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 1113366581);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup3", 1113366582);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup4", 1113366583);
- Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("营业执照", 1113366584);
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("rate");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("rateYear");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bankName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bankAccount");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("payTypeName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark2");
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certiConstraint");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certiOfficer");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certNo");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certType");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certValidStart");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certDesc");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certPath");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certPathOld");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certNoV");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certValidEnd");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("archCode");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SupplierManagement));
- this.craftImg = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_balanceCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel97 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_account_cw = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel90 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_suppType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_postAdd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPREGCAPCURRENCY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPOFFICEPROVINCENATION = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPOFFICEPROVINCE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPPROVINCE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPNATIONALITY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_island = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel93 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_suppTaxRate = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPCONTACTTITLE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCONTACTTEL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCONTACTFAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCONTACTCELLPHONE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCONTACTEMAIL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPLIERLINKMAN = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPLICENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPTAXENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPLICSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPTAXSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_SUPPISSUBCOMPANY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPISMANUFACTURER = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPISINTERNAL = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPADDRESS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPRELATIONGRADE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPPERGRADE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_SUPPREGCAPITAL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel82 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel84 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel85 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel88 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPOPERATESCOPE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPLICNUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCITY = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPREGISTRARNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPSHORTNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_ORGCODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCHARACTER = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPINDUSTRYTYPE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_SUPPTAXID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_SUPPCODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txtPayType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel98 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_BANKNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BANKACCOUNT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.upLoadFile = new Infragistics.Win.Misc.UltraButton();
- this.ultraLabel99 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_arch_code = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.btn_submitAppend = new Infragistics.Win.Misc.UltraButton();
- this.txt_certPath = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_certpath_local = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel96 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_CERTVALID_end = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.ultraLabel95 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_certNo_v = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_certpath_old = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel94 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_CERTVALID_start = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
- this.txt_ap_type = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_ap_constraint = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_CERTDESC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_CERTIOFFICER = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_CERTNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_Rate_Year = new System.Windows.Forms.TextBox();
- this.ultraLabel101 = new Infragistics.Win.Misc.UltraLabel();
- this.Combo_Rate = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel100 = new Infragistics.Win.Misc.UltraLabel();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataSet4 = new System.Data.DataSet();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataSet3 = new System.Data.DataSet();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn58 = new System.Data.DataColumn();
- this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
- this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker5 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker6 = new System.Windows.Forms.DateTimePicker();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel50 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
- this.dateTimePicker7 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker8 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker9 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker10 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker11 = new System.Windows.Forms.DateTimePicker();
- this.dateTimePicker12 = new System.Windows.Forms.DateTimePicker();
- this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel73 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel74 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel77 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel79 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel80 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel81 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
- this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.splitContainer3 = new System.Windows.Forms.SplitContainer();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet5 = new System.Data.DataSet();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn59 = new System.Data.DataColumn();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.所属物料 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.cop_suppType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel92 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.QsuspendStatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Qstatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.ultraLabel91 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel89 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.textBox1 = new System.Windows.Forms.TextBox();
- ((System.ComponentModel.ISupportInitialize)(this.craftImg)).BeginInit();
- this.ultraTabPageControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_balanceCode)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_account_cw)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_suppType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_postAdd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPCURRENCY)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCENATION)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPROVINCE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNATIONALITY)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_island)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_suppTaxRate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTITLE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTEL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTFAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTCELLPHONE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTEMAIL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLIERLINKMAN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPENDDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICENDDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXENDDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSTARTDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICSTARTDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXSTARTDATE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISSUBCOMPANY)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISMANUFACTURER)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISINTERNAL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPADDRESS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPRELATIONGRADE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPERGRADE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPITAL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOPERATESCOPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICNUM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCITY)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGISTRARNAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSHORTNAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ORGCODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCHARACTER)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPINDUSTRYTYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCODE)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtPayType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BANKNAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BANKACCOUNT)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_arch_code)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certPath)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_local)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_end)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certNo_v)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_old)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_start)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ap_type)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ap_constraint)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTDESC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTIOFFICER)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTNO)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.Combo_Rate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
- this.ultraPanel2.ClientArea.SuspendLayout();
- this.ultraPanel2.SuspendLayout();
- this.ultraPanel4.ClientArea.SuspendLayout();
- this.ultraPanel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
- this.ultraGroupBox4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
- this.splitContainer3.Panel1.SuspendLayout();
- this.splitContainer3.Panel2.SuspendLayout();
- this.splitContainer3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.所属物料)).BeginInit();
- this.所属物料.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cop_suppType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.QsuspendStatus)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Qstatus)).BeginInit();
- this.SuspendLayout();
- //
- // craftImg
- //
- editorButton1.Key = "select";
- editorButton1.Text = "查看";
- this.craftImg.ButtonsRight.Add(editorButton1);
- this.craftImg.Location = new System.Drawing.Point(1279, 88);
- this.craftImg.Margin = new System.Windows.Forms.Padding(4);
- this.craftImg.Name = "craftImg";
- this.craftImg.Size = new System.Drawing.Size(223, 24);
- this.craftImg.TabIndex = 68;
- this.craftImg.Visible = false;
- this.craftImg.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.craftImg_EditorButtonClick);
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.txt_balanceCode);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel97);
- this.ultraTabPageControl1.Controls.Add(this.txt_account_cw);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel90);
- this.ultraTabPageControl1.Controls.Add(this.txt_suppType);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel18);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel13);
- this.ultraTabPageControl1.Controls.Add(this.txt_postAdd);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel6);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel29);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel12);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel28);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGCAPCURRENCY);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOFFICEPROVINCENATION);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOFFICEPROVINCE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPPROVINCE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPNATIONALITY);
- this.ultraTabPageControl1.Controls.Add(this.txt_island);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel93);
- this.ultraTabPageControl1.Controls.Add(this.txt_suppTaxRate);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel11);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTTITLE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTTEL);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTFAX);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTCELLPHONE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTEMAIL);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLIERLINKMAN);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel26);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel25);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel24);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel23);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel22);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel21);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPENDDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICENDDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXENDDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPSTARTDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICSTARTDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXSTARTDATE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISSUBCOMPANY);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISMANUFACTURER);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISINTERNAL);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPADDRESS);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPRELATIONGRADE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPPERGRADE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGCAPITAL);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel82);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel83);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel84);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel85);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel86);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel87);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel88);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel39);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOPERATESCOPE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICNUM);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCITY);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGISTRARNAME);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPSHORTNAME);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel20);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel19);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel16);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel15);
- this.ultraTabPageControl1.Controls.Add(this.txt_ORGCODE);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCHARACTER);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel14);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel10);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel9);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPNAME);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPINDUSTRYTYPE);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel8);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel7);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel5);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXID);
- this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCODE);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel4);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel3);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel2);
- this.ultraTabPageControl1.Controls.Add(this.ultraLabel1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1515, 295);
- //
- // txt_balanceCode
- //
- this.txt_balanceCode.Location = new System.Drawing.Point(140, 219);
- this.txt_balanceCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_balanceCode.Name = "txt_balanceCode";
- this.txt_balanceCode.Size = new System.Drawing.Size(245, 24);
- this.txt_balanceCode.TabIndex = 80;
- //
- // ultraLabel97
- //
- this.ultraLabel97.AutoSize = true;
- this.ultraLabel97.Location = new System.Drawing.Point(63, 222);
- this.ultraLabel97.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel97.Name = "ultraLabel97";
- this.ultraLabel97.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel97.TabIndex = 79;
- this.ultraLabel97.Text = "结算代码";
- //
- // txt_account_cw
- //
- this.txt_account_cw.Location = new System.Drawing.Point(140, 190);
- this.txt_account_cw.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_account_cw.Name = "txt_account_cw";
- this.txt_account_cw.Size = new System.Drawing.Size(245, 24);
- this.txt_account_cw.TabIndex = 78;
- //
- // ultraLabel90
- //
- this.ultraLabel90.AutoSize = true;
- this.ultraLabel90.Location = new System.Drawing.Point(63, 194);
- this.ultraLabel90.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel90.Name = "ultraLabel90";
- this.ultraLabel90.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel90.TabIndex = 77;
- this.ultraLabel90.Text = "财务账号";
- //
- // txt_suppType
- //
- this.txt_suppType.Location = new System.Drawing.Point(140, 159);
- this.txt_suppType.Margin = new System.Windows.Forms.Padding(4);
- this.txt_suppType.Name = "txt_suppType";
- this.txt_suppType.Size = new System.Drawing.Size(245, 24);
- this.txt_suppType.TabIndex = 76;
- //
- // ultraLabel18
- //
- this.ultraLabel18.AutoSize = true;
- this.ultraLabel18.Location = new System.Drawing.Point(64, 166);
- this.ultraLabel18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel18.TabIndex = 74;
- this.ultraLabel18.Text = "供方类型";
- //
- // ultraLabel13
- //
- this.ultraLabel13.AutoSize = true;
- this.ultraLabel13.Location = new System.Drawing.Point(64, 255);
- this.ultraLabel13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel13.TabIndex = 73;
- this.ultraLabel13.Text = "邮 编";
- //
- // txt_postAdd
- //
- this.txt_postAdd.Location = new System.Drawing.Point(140, 251);
- this.txt_postAdd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_postAdd.Name = "txt_postAdd";
- this.txt_postAdd.Size = new System.Drawing.Size(245, 24);
- this.txt_postAdd.TabIndex = 72;
- //
- // ultraLabel6
- //
- this.ultraLabel6.AutoSize = true;
- this.ultraLabel6.Location = new System.Drawing.Point(1347, 168);
- this.ultraLabel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(21, 19);
- this.ultraLabel6.TabIndex = 71;
- this.ultraLabel6.Text = "至";
- this.ultraLabel6.Visible = false;
- //
- // ultraLabel29
- //
- this.ultraLabel29.AutoSize = true;
- this.ultraLabel29.Location = new System.Drawing.Point(32, 132);
- this.ultraLabel29.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel29.Name = "ultraLabel29";
- this.ultraLabel29.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel29.TabIndex = 70;
- this.ultraLabel29.Text = "执照有效日期";
- //
- // ultraLabel12
- //
- this.ultraLabel12.AutoSize = true;
- this.ultraLabel12.Location = new System.Drawing.Point(248, 136);
- this.ultraLabel12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(21, 19);
- this.ultraLabel12.TabIndex = 69;
- this.ultraLabel12.Text = "至";
- //
- // ultraLabel28
- //
- this.ultraLabel28.AutoSize = true;
- this.ultraLabel28.Location = new System.Drawing.Point(1355, 258);
- this.ultraLabel28.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(21, 19);
- this.ultraLabel28.TabIndex = 68;
- this.ultraLabel28.Text = "至";
- this.ultraLabel28.Visible = false;
- //
- // txt_SUPPREGCAPCURRENCY
- //
- this.txt_SUPPREGCAPCURRENCY.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_SUPPREGCAPCURRENCY.Location = new System.Drawing.Point(524, 131);
- this.txt_SUPPREGCAPCURRENCY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPREGCAPCURRENCY.Name = "txt_SUPPREGCAPCURRENCY";
- this.txt_SUPPREGCAPCURRENCY.Size = new System.Drawing.Size(89, 24);
- this.txt_SUPPREGCAPCURRENCY.TabIndex = 67;
- //
- // txt_SUPPOFFICEPROVINCENATION
- //
- this.txt_SUPPOFFICEPROVINCENATION.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.txt_SUPPOFFICEPROVINCENATION.Location = new System.Drawing.Point(1201, 11);
- this.txt_SUPPOFFICEPROVINCENATION.Margin = new System.Windows.Forms.Padding(4);
- this.txt_SUPPOFFICEPROVINCENATION.Name = "txt_SUPPOFFICEPROVINCENATION";
- this.txt_SUPPOFFICEPROVINCENATION.Size = new System.Drawing.Size(89, 24);
- this.txt_SUPPOFFICEPROVINCENATION.TabIndex = 66;
- this.txt_SUPPOFFICEPROVINCENATION.SelectionChanged += new System.EventHandler(this.txt_SUPPOFFICEPROVINCENATION_SelectionChanged);
- //
- // txt_SUPPOFFICEPROVINCE
- //
- this.txt_SUPPOFFICEPROVINCE.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.txt_SUPPOFFICEPROVINCE.Location = new System.Drawing.Point(1296, 11);
- this.txt_SUPPOFFICEPROVINCE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_SUPPOFFICEPROVINCE.Name = "txt_SUPPOFFICEPROVINCE";
- this.txt_SUPPOFFICEPROVINCE.Size = new System.Drawing.Size(105, 24);
- this.txt_SUPPOFFICEPROVINCE.TabIndex = 65;
- //
- // txt_SUPPPROVINCE
- //
- this.txt_SUPPPROVINCE.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.txt_SUPPPROVINCE.Location = new System.Drawing.Point(869, 41);
- this.txt_SUPPPROVINCE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_SUPPPROVINCE.Name = "txt_SUPPPROVINCE";
- this.txt_SUPPPROVINCE.Size = new System.Drawing.Size(89, 24);
- this.txt_SUPPPROVINCE.TabIndex = 64;
- this.txt_SUPPPROVINCE.SelectionChanged += new System.EventHandler(this.txt_SUPPPROVINCE_SelectionChanged);
- //
- // txt_SUPPNATIONALITY
- //
- this.txt_SUPPNATIONALITY.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.txt_SUPPNATIONALITY.Location = new System.Drawing.Point(964, 11);
- this.txt_SUPPNATIONALITY.Margin = new System.Windows.Forms.Padding(4);
- this.txt_SUPPNATIONALITY.Name = "txt_SUPPNATIONALITY";
- this.txt_SUPPNATIONALITY.Size = new System.Drawing.Size(132, 24);
- this.txt_SUPPNATIONALITY.TabIndex = 63;
- this.txt_SUPPNATIONALITY.SelectionChanged += new System.EventHandler(this.txt_SUPPNATIONALITY_SelectionChanged);
- //
- // txt_island
- //
- this.txt_island.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
- this.txt_island.Location = new System.Drawing.Point(869, 11);
- this.txt_island.Margin = new System.Windows.Forms.Padding(4);
- this.txt_island.Name = "txt_island";
- this.txt_island.Size = new System.Drawing.Size(89, 24);
- this.txt_island.TabIndex = 12;
- this.txt_island.SelectionChanged += new System.EventHandler(this.txt_island_SelectionChanged);
- //
- // ultraLabel93
- //
- this.ultraLabel93.AutoSize = true;
- this.ultraLabel93.Location = new System.Drawing.Point(792, 74);
- this.ultraLabel93.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel93.Name = "ultraLabel93";
- this.ultraLabel93.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel93.TabIndex = 62;
- this.ultraLabel93.Text = "详细地址";
- //
- // txt_suppTaxRate
- //
- this.txt_suppTaxRate.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_suppTaxRate.Location = new System.Drawing.Point(663, 131);
- this.txt_suppTaxRate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_suppTaxRate.Name = "txt_suppTaxRate";
- this.txt_suppTaxRate.Size = new System.Drawing.Size(93, 24);
- this.txt_suppTaxRate.TabIndex = 61;
- //
- // ultraLabel11
- //
- this.ultraLabel11.AutoSize = true;
- this.ultraLabel11.Location = new System.Drawing.Point(619, 135);
- this.ultraLabel11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel11.TabIndex = 60;
- this.ultraLabel11.Text = "税率";
- //
- // txt_SUPPCONTACTTITLE
- //
- this.txt_SUPPCONTACTTITLE.Location = new System.Drawing.Point(869, 251);
- this.txt_SUPPCONTACTTITLE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCONTACTTITLE.Name = "txt_SUPPCONTACTTITLE";
- this.txt_SUPPCONTACTTITLE.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPCONTACTTITLE.TabIndex = 34;
- //
- // txt_SUPPCONTACTTEL
- //
- this.txt_SUPPCONTACTTEL.Location = new System.Drawing.Point(869, 161);
- this.txt_SUPPCONTACTTEL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCONTACTTEL.Name = "txt_SUPPCONTACTTEL";
- this.txt_SUPPCONTACTTEL.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPCONTACTTEL.TabIndex = 31;
- //
- // txt_SUPPCONTACTFAX
- //
- this.txt_SUPPCONTACTFAX.Location = new System.Drawing.Point(869, 221);
- this.txt_SUPPCONTACTFAX.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCONTACTFAX.Name = "txt_SUPPCONTACTFAX";
- this.txt_SUPPCONTACTFAX.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPCONTACTFAX.TabIndex = 33;
- //
- // txt_SUPPCONTACTCELLPHONE
- //
- this.txt_SUPPCONTACTCELLPHONE.Location = new System.Drawing.Point(869, 131);
- this.txt_SUPPCONTACTCELLPHONE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCONTACTCELLPHONE.Name = "txt_SUPPCONTACTCELLPHONE";
- this.txt_SUPPCONTACTCELLPHONE.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPCONTACTCELLPHONE.TabIndex = 30;
- //
- // txt_SUPPCONTACTEMAIL
- //
- this.txt_SUPPCONTACTEMAIL.Location = new System.Drawing.Point(869, 191);
- this.txt_SUPPCONTACTEMAIL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCONTACTEMAIL.Name = "txt_SUPPCONTACTEMAIL";
- this.txt_SUPPCONTACTEMAIL.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPCONTACTEMAIL.TabIndex = 32;
- //
- // txt_SUPPLIERLINKMAN
- //
- this.txt_SUPPLIERLINKMAN.Location = new System.Drawing.Point(869, 101);
- this.txt_SUPPLIERLINKMAN.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPLIERLINKMAN.Name = "txt_SUPPLIERLINKMAN";
- this.txt_SUPPLIERLINKMAN.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPLIERLINKMAN.TabIndex = 29;
- //
- // ultraLabel26
- //
- this.ultraLabel26.AutoSize = true;
- this.ultraLabel26.Location = new System.Drawing.Point(776, 254);
- this.ultraLabel26.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel26.TabIndex = 58;
- this.ultraLabel26.Text = "联系人职务";
- //
- // ultraLabel25
- //
- this.ultraLabel25.AutoSize = true;
- this.ultraLabel25.Location = new System.Drawing.Point(776, 164);
- this.ultraLabel25.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel25.TabIndex = 55;
- this.ultraLabel25.Text = "联系人电话";
- //
- // ultraLabel24
- //
- this.ultraLabel24.AutoSize = true;
- this.ultraLabel24.Location = new System.Drawing.Point(776, 224);
- this.ultraLabel24.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel24.TabIndex = 53;
- this.ultraLabel24.Text = "联系人传真";
- //
- // ultraLabel23
- //
- this.ultraLabel23.AutoSize = true;
- this.ultraLabel23.Location = new System.Drawing.Point(776, 134);
- this.ultraLabel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel23.TabIndex = 51;
- this.ultraLabel23.Text = "联系人手机";
- //
- // ultraLabel22
- //
- this.ultraLabel22.AutoSize = true;
- this.ultraLabel22.Location = new System.Drawing.Point(768, 194);
- this.ultraLabel22.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(90, 19);
- this.ultraLabel22.TabIndex = 50;
- this.ultraLabel22.Text = "联系人EMAIL";
- //
- // ultraLabel21
- //
- this.ultraLabel21.AutoSize = true;
- this.ultraLabel21.Location = new System.Drawing.Point(776, 104);
- this.ultraLabel21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel21.TabIndex = 48;
- this.ultraLabel21.Text = "联系人名称";
- //
- // txt_SUPPENDDATE
- //
- this.txt_SUPPENDDATE.DateButtons.Add(dateButton1);
- this.txt_SUPPENDDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPENDDATE.Location = new System.Drawing.Point(1372, 164);
- this.txt_SUPPENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPENDDATE.Name = "txt_SUPPENDDATE";
- this.txt_SUPPENDDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPENDDATE.ReadOnly = true;
- this.txt_SUPPENDDATE.Size = new System.Drawing.Size(111, 25);
- this.txt_SUPPENDDATE.TabIndex = 19;
- this.txt_SUPPENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPENDDATE.Visible = false;
- this.txt_SUPPENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
- //
- // txt_SUPPLICENDDATE
- //
- this.txt_SUPPLICENDDATE.DateButtons.Add(dateButton2);
- this.txt_SUPPLICENDDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPLICENDDATE.Location = new System.Drawing.Point(273, 129);
- this.txt_SUPPLICENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPLICENDDATE.Name = "txt_SUPPLICENDDATE";
- this.txt_SUPPLICENDDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPLICENDDATE.ReadOnly = true;
- this.txt_SUPPLICENDDATE.Size = new System.Drawing.Size(113, 25);
- this.txt_SUPPLICENDDATE.TabIndex = 22;
- this.txt_SUPPLICENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPLICENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
- //
- // txt_SUPPTAXENDDATE
- //
- this.txt_SUPPTAXENDDATE.DateButtons.Add(dateButton3);
- this.txt_SUPPTAXENDDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPTAXENDDATE.Location = new System.Drawing.Point(1369, 254);
- this.txt_SUPPTAXENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPTAXENDDATE.Name = "txt_SUPPTAXENDDATE";
- this.txt_SUPPTAXENDDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPTAXENDDATE.ReadOnly = true;
- this.txt_SUPPTAXENDDATE.Size = new System.Drawing.Size(113, 25);
- this.txt_SUPPTAXENDDATE.TabIndex = 26;
- this.txt_SUPPTAXENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPTAXENDDATE.Visible = false;
- this.txt_SUPPTAXENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
- //
- // txt_SUPPSTARTDATE
- //
- this.txt_SUPPSTARTDATE.DateButtons.Add(dateButton4);
- this.txt_SUPPSTARTDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPSTARTDATE.Location = new System.Drawing.Point(1236, 164);
- this.txt_SUPPSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPSTARTDATE.Name = "txt_SUPPSTARTDATE";
- this.txt_SUPPSTARTDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPSTARTDATE.ReadOnly = true;
- this.txt_SUPPSTARTDATE.Size = new System.Drawing.Size(107, 25);
- this.txt_SUPPSTARTDATE.TabIndex = 18;
- this.txt_SUPPSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPSTARTDATE.Visible = false;
- this.txt_SUPPSTARTDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
- //
- // txt_SUPPLICSTARTDATE
- //
- this.txt_SUPPLICSTARTDATE.DateButtons.Add(dateButton5);
- this.txt_SUPPLICSTARTDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPLICSTARTDATE.Location = new System.Drawing.Point(140, 129);
- this.txt_SUPPLICSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPLICSTARTDATE.Name = "txt_SUPPLICSTARTDATE";
- this.txt_SUPPLICSTARTDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPLICSTARTDATE.ReadOnly = true;
- this.txt_SUPPLICSTARTDATE.Size = new System.Drawing.Size(107, 25);
- this.txt_SUPPLICSTARTDATE.TabIndex = 21;
- this.txt_SUPPLICSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPLICSTARTDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
- //
- // txt_SUPPTAXSTARTDATE
- //
- this.txt_SUPPTAXSTARTDATE.DateButtons.Add(dateButton6);
- this.txt_SUPPTAXSTARTDATE.Format = "yyyy/MM/dd";
- this.txt_SUPPTAXSTARTDATE.Location = new System.Drawing.Point(1245, 249);
- this.txt_SUPPTAXSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPTAXSTARTDATE.Name = "txt_SUPPTAXSTARTDATE";
- this.txt_SUPPTAXSTARTDATE.NonAutoSizeHeight = 25;
- this.txt_SUPPTAXSTARTDATE.ReadOnly = true;
- this.txt_SUPPTAXSTARTDATE.Size = new System.Drawing.Size(107, 25);
- this.txt_SUPPTAXSTARTDATE.TabIndex = 25;
- this.txt_SUPPTAXSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- this.txt_SUPPTAXSTARTDATE.Visible = false;
- //
- // txt_SUPPISSUBCOMPANY
- //
- this.txt_SUPPISSUBCOMPANY.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem13.DataValue = "0";
- valueListItem13.DisplayText = "否";
- valueListItem14.DataValue = "1";
- valueListItem14.DisplayText = "是";
- this.txt_SUPPISSUBCOMPANY.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem13,
- valueListItem14});
- this.txt_SUPPISSUBCOMPANY.Location = new System.Drawing.Point(524, 251);
- this.txt_SUPPISSUBCOMPANY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPISSUBCOMPANY.Name = "txt_SUPPISSUBCOMPANY";
- this.txt_SUPPISSUBCOMPANY.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPISSUBCOMPANY.TabIndex = 15;
- //
- // txt_SUPPISMANUFACTURER
- //
- this.txt_SUPPISMANUFACTURER.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem27.DataValue = "0";
- valueListItem27.DisplayText = "否";
- valueListItem28.DataValue = "1";
- valueListItem28.DisplayText = "是";
- this.txt_SUPPISMANUFACTURER.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem27,
- valueListItem28});
- this.txt_SUPPISMANUFACTURER.Location = new System.Drawing.Point(524, 191);
- this.txt_SUPPISMANUFACTURER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPISMANUFACTURER.Name = "txt_SUPPISMANUFACTURER";
- this.txt_SUPPISMANUFACTURER.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPISMANUFACTURER.TabIndex = 16;
- //
- // txt_SUPPISINTERNAL
- //
- this.txt_SUPPISINTERNAL.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem18.DataValue = "0";
- valueListItem18.DisplayText = "否";
- valueListItem19.DataValue = "1";
- valueListItem19.DisplayText = "是";
- this.txt_SUPPISINTERNAL.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem18,
- valueListItem19});
- this.txt_SUPPISINTERNAL.Location = new System.Drawing.Point(524, 221);
- this.txt_SUPPISINTERNAL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPISINTERNAL.Name = "txt_SUPPISINTERNAL";
- this.txt_SUPPISINTERNAL.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPISINTERNAL.TabIndex = 24;
- //
- // txt_SUPPADDRESS
- //
- this.txt_SUPPADDRESS.Location = new System.Drawing.Point(869, 71);
- this.txt_SUPPADDRESS.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPADDRESS.Name = "txt_SUPPADDRESS";
- this.txt_SUPPADDRESS.Size = new System.Drawing.Size(227, 24);
- this.txt_SUPPADDRESS.TabIndex = 20;
- //
- // txt_SUPPRELATIONGRADE
- //
- this.txt_SUPPRELATIONGRADE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem15.DataValue = "ValueListItem0";
- valueListItem15.DisplayText = "A";
- valueListItem16.DataValue = "ValueListItem1";
- valueListItem16.DisplayText = "B";
- valueListItem17.DataValue = "ValueListItem2";
- valueListItem17.DisplayText = "C";
- this.txt_SUPPRELATIONGRADE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem15,
- valueListItem16,
- valueListItem17});
- this.txt_SUPPRELATIONGRADE.Location = new System.Drawing.Point(524, 161);
- this.txt_SUPPRELATIONGRADE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPRELATIONGRADE.Name = "txt_SUPPRELATIONGRADE";
- this.txt_SUPPRELATIONGRADE.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPRELATIONGRADE.TabIndex = 28;
- //
- // txt_SUPPPERGRADE
- //
- this.txt_SUPPPERGRADE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txt_SUPPPERGRADE.Location = new System.Drawing.Point(524, 71);
- this.txt_SUPPPERGRADE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPPERGRADE.Name = "txt_SUPPPERGRADE";
- this.txt_SUPPPERGRADE.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPPERGRADE.TabIndex = 12;
- //
- // txt_SUPPREGCAPITAL
- //
- appearance1.TextHAlignAsString = "Right";
- this.txt_SUPPREGCAPITAL.Appearance = appearance1;
- this.txt_SUPPREGCAPITAL.Location = new System.Drawing.Point(524, 101);
- this.txt_SUPPREGCAPITAL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPREGCAPITAL.Name = "txt_SUPPREGCAPITAL";
- this.txt_SUPPREGCAPITAL.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
- this.txt_SUPPREGCAPITAL.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPREGCAPITAL.TabIndex = 4;
- this.txt_SUPPREGCAPITAL.Text = "0";
- //
- // ultraLabel82
- //
- this.ultraLabel82.AutoSize = true;
- this.ultraLabel82.Location = new System.Drawing.Point(431, 198);
- this.ultraLabel82.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel82.Name = "ultraLabel82";
- this.ultraLabel82.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel82.TabIndex = 47;
- this.ultraLabel82.Text = "是否制造商";
- //
- // ultraLabel83
- //
- this.ultraLabel83.AutoSize = true;
- this.ultraLabel83.Location = new System.Drawing.Point(413, 228);
- this.ultraLabel83.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel83.Name = "ultraLabel83";
- this.ultraLabel83.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel83.TabIndex = 46;
- this.ultraLabel83.Text = "是否内部供方";
- //
- // ultraLabel84
- //
- this.ultraLabel84.AutoSize = true;
- this.ultraLabel84.Location = new System.Drawing.Point(413, 164);
- this.ultraLabel84.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel84.Name = "ultraLabel84";
- this.ultraLabel84.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel84.TabIndex = 45;
- this.ultraLabel84.Text = "合作关系等级";
- //
- // ultraLabel85
- //
- this.ultraLabel85.AutoSize = true;
- this.ultraLabel85.Location = new System.Drawing.Point(784, 44);
- this.ultraLabel85.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel85.Name = "ultraLabel85";
- this.ultraLabel85.Size = new System.Drawing.Size(75, 19);
- this.ultraLabel85.TabIndex = 44;
- this.ultraLabel85.Text = "省份/城市";
- //
- // ultraLabel86
- //
- this.ultraLabel86.AutoSize = true;
- this.ultraLabel86.Location = new System.Drawing.Point(447, 74);
- this.ultraLabel86.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel86.Name = "ultraLabel86";
- this.ultraLabel86.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel86.TabIndex = 43;
- this.ultraLabel86.Text = "评定等级";
- //
- // ultraLabel87
- //
- this.ultraLabel87.AutoSize = true;
- this.ultraLabel87.Location = new System.Drawing.Point(447, 135);
- this.ultraLabel87.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel87.Name = "ultraLabel87";
- this.ultraLabel87.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel87.TabIndex = 42;
- this.ultraLabel87.Text = "注册币种";
- //
- // ultraLabel88
- //
- this.ultraLabel88.AutoSize = true;
- this.ultraLabel88.Location = new System.Drawing.Point(447, 104);
- this.ultraLabel88.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel88.Name = "ultraLabel88";
- this.ultraLabel88.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel88.TabIndex = 41;
- this.ultraLabel88.Text = "注册资金";
- //
- // ultraLabel39
- //
- this.ultraLabel39.AutoSize = true;
- this.ultraLabel39.Location = new System.Drawing.Point(413, 256);
- this.ultraLabel39.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel39.TabIndex = 40;
- this.ultraLabel39.Text = "是否为子公司";
- //
- // txt_SUPPOPERATESCOPE
- //
- this.txt_SUPPOPERATESCOPE.Location = new System.Drawing.Point(1201, 45);
- this.txt_SUPPOPERATESCOPE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPOPERATESCOPE.Multiline = true;
- this.txt_SUPPOPERATESCOPE.Name = "txt_SUPPOPERATESCOPE";
- this.txt_SUPPOPERATESCOPE.Size = new System.Drawing.Size(200, 229);
- this.txt_SUPPOPERATESCOPE.TabIndex = 23;
- //
- // txt_SUPPLICNUM
- //
- this.txt_SUPPLICNUM.Location = new System.Drawing.Point(140, 99);
- this.txt_SUPPLICNUM.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPLICNUM.Name = "txt_SUPPLICNUM";
- this.txt_SUPPLICNUM.ReadOnly = true;
- this.txt_SUPPLICNUM.Size = new System.Drawing.Size(247, 24);
- this.txt_SUPPLICNUM.TabIndex = 27;
- //
- // txt_SUPPCITY
- //
- this.txt_SUPPCITY.Location = new System.Drawing.Point(964, 41);
- this.txt_SUPPCITY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCITY.Name = "txt_SUPPCITY";
- this.txt_SUPPCITY.Size = new System.Drawing.Size(132, 24);
- this.txt_SUPPCITY.TabIndex = 11;
- //
- // txt_SUPPREGISTRARNAME
- //
- this.txt_SUPPREGISTRARNAME.Location = new System.Drawing.Point(273, 71);
- this.txt_SUPPREGISTRARNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPREGISTRARNAME.Name = "txt_SUPPREGISTRARNAME";
- this.txt_SUPPREGISTRARNAME.Size = new System.Drawing.Size(113, 24);
- this.txt_SUPPREGISTRARNAME.TabIndex = 7;
- //
- // txt_SUPPSHORTNAME
- //
- this.txt_SUPPSHORTNAME.Location = new System.Drawing.Point(140, 71);
- this.txt_SUPPSHORTNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPSHORTNAME.Name = "txt_SUPPSHORTNAME";
- this.txt_SUPPSHORTNAME.Size = new System.Drawing.Size(84, 24);
- this.txt_SUPPSHORTNAME.TabIndex = 3;
- //
- // ultraLabel20
- //
- this.ultraLabel20.AutoSize = true;
- this.ultraLabel20.Location = new System.Drawing.Point(1124, 48);
- this.ultraLabel20.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel20.TabIndex = 31;
- this.ultraLabel20.Text = "经营范围";
- //
- // ultraLabel19
- //
- this.ultraLabel19.AutoSize = true;
- this.ultraLabel19.Location = new System.Drawing.Point(32, 102);
- this.ultraLabel19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel19.TabIndex = 30;
- this.ultraLabel19.Text = "营业执照号码";
- //
- // ultraLabel16
- //
- this.ultraLabel16.AutoSize = true;
- this.ultraLabel16.Location = new System.Drawing.Point(229, 76);
- this.ultraLabel16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel16.TabIndex = 27;
- this.ultraLabel16.Text = "法人";
- //
- // ultraLabel15
- //
- this.ultraLabel15.AutoSize = true;
- this.ultraLabel15.Location = new System.Drawing.Point(29, 72);
- this.ultraLabel15.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel15.TabIndex = 26;
- this.ultraLabel15.Text = "供 方 简 称";
- //
- // txt_ORGCODE
- //
- this.txt_ORGCODE.Location = new System.Drawing.Point(1236, 194);
- this.txt_ORGCODE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_ORGCODE.Name = "txt_ORGCODE";
- this.txt_ORGCODE.ReadOnly = true;
- this.txt_ORGCODE.Size = new System.Drawing.Size(247, 24);
- this.txt_ORGCODE.TabIndex = 14;
- this.txt_ORGCODE.Visible = false;
- //
- // txt_SUPPCHARACTER
- //
- this.txt_SUPPCHARACTER.Location = new System.Drawing.Point(524, 11);
- this.txt_SUPPCHARACTER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCHARACTER.Name = "txt_SUPPCHARACTER";
- this.txt_SUPPCHARACTER.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPCHARACTER.TabIndex = 6;
- //
- // ultraLabel14
- //
- this.ultraLabel14.AutoSize = true;
- this.ultraLabel14.Location = new System.Drawing.Point(1125, 198);
- this.ultraLabel14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel14.TabIndex = 19;
- this.ultraLabel14.Text = "组织结构代码";
- this.ultraLabel14.Visible = false;
- //
- // ultraLabel10
- //
- this.ultraLabel10.AutoSize = true;
- this.ultraLabel10.Location = new System.Drawing.Point(1125, 170);
- this.ultraLabel10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel10.TabIndex = 17;
- this.ultraLabel10.Text = "供方有效日期";
- this.ultraLabel10.Visible = false;
- //
- // ultraLabel9
- //
- this.ultraLabel9.AutoSize = true;
- this.ultraLabel9.Location = new System.Drawing.Point(447, 14);
- this.ultraLabel9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel9.TabIndex = 16;
- this.ultraLabel9.Text = "公司性质";
- //
- // txt_SUPPNAME
- //
- this.txt_SUPPNAME.Location = new System.Drawing.Point(140, 41);
- this.txt_SUPPNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPNAME.Name = "txt_SUPPNAME";
- this.txt_SUPPNAME.Size = new System.Drawing.Size(247, 24);
- this.txt_SUPPNAME.TabIndex = 2;
- //
- // txt_SUPPINDUSTRYTYPE
- //
- this.txt_SUPPINDUSTRYTYPE.Location = new System.Drawing.Point(524, 41);
- this.txt_SUPPINDUSTRYTYPE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPINDUSTRYTYPE.Name = "txt_SUPPINDUSTRYTYPE";
- this.txt_SUPPINDUSTRYTYPE.Size = new System.Drawing.Size(232, 24);
- this.txt_SUPPINDUSTRYTYPE.TabIndex = 13;
- //
- // ultraLabel8
- //
- this.ultraLabel8.AutoSize = true;
- this.ultraLabel8.Location = new System.Drawing.Point(29, 45);
- this.ultraLabel8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel8.TabIndex = 11;
- this.ultraLabel8.Text = "供 方 名 称";
- //
- // ultraLabel7
- //
- this.ultraLabel7.AutoSize = true;
- this.ultraLabel7.Location = new System.Drawing.Point(447, 44);
- this.ultraLabel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel7.TabIndex = 10;
- this.ultraLabel7.Text = "行业类型";
- //
- // ultraLabel5
- //
- this.ultraLabel5.AutoSize = true;
- this.ultraLabel5.Location = new System.Drawing.Point(1125, 258);
- this.ultraLabel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel5.TabIndex = 8;
- this.ultraLabel5.Text = "税号有效日期";
- this.ultraLabel5.Visible = false;
- //
- // txt_SUPPTAXID
- //
- this.txt_SUPPTAXID.Location = new System.Drawing.Point(1236, 224);
- this.txt_SUPPTAXID.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPTAXID.Name = "txt_SUPPTAXID";
- this.txt_SUPPTAXID.ReadOnly = true;
- this.txt_SUPPTAXID.Size = new System.Drawing.Size(247, 24);
- this.txt_SUPPTAXID.TabIndex = 5;
- this.txt_SUPPTAXID.Visible = false;
- //
- // txt_SUPPCODE
- //
- this.txt_SUPPCODE.Location = new System.Drawing.Point(140, 11);
- this.txt_SUPPCODE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_SUPPCODE.Name = "txt_SUPPCODE";
- this.txt_SUPPCODE.Size = new System.Drawing.Size(247, 24);
- this.txt_SUPPCODE.TabIndex = 1;
- //
- // ultraLabel4
- //
- this.ultraLabel4.AutoSize = true;
- this.ultraLabel4.Location = new System.Drawing.Point(1125, 14);
- this.ultraLabel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel4.TabIndex = 3;
- this.ultraLabel4.Text = "办公省份";
- //
- // ultraLabel3
- //
- this.ultraLabel3.AutoSize = true;
- this.ultraLabel3.Location = new System.Drawing.Point(784, 14);
- this.ultraLabel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(75, 19);
- this.ultraLabel3.TabIndex = 2;
- this.ultraLabel3.Text = "洲际/国家";
- //
- // ultraLabel2
- //
- this.ultraLabel2.AutoSize = true;
- this.ultraLabel2.Location = new System.Drawing.Point(1125, 228);
- this.ultraLabel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel2.TabIndex = 1;
- this.ultraLabel2.Text = "税 号/ 标 识";
- this.ultraLabel2.Visible = false;
- //
- // ultraLabel1
- //
- this.ultraLabel1.AutoSize = true;
- this.ultraLabel1.Location = new System.Drawing.Point(29, 14);
- this.ultraLabel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "供 方 代 码";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.txtPayType);
- this.ultraTabPageControl3.Controls.Add(this.ultraLabel98);
- this.ultraTabPageControl3.Controls.Add(this.ultraLabel27);
- this.ultraTabPageControl3.Controls.Add(this.txt_BANKNAME);
- this.ultraTabPageControl3.Controls.Add(this.txt_BANKACCOUNT);
- this.ultraTabPageControl3.Controls.Add(this.ultraLabel32);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1515, 295);
- //
- // txtPayType
- //
- this.txtPayType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.txtPayType.Location = new System.Drawing.Point(189, 150);
- this.txtPayType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txtPayType.Name = "txtPayType";
- this.txtPayType.Size = new System.Drawing.Size(149, 24);
- this.txtPayType.TabIndex = 68;
- //
- // ultraLabel98
- //
- this.ultraLabel98.AutoSize = true;
- this.ultraLabel98.Location = new System.Drawing.Point(111, 154);
- this.ultraLabel98.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel98.Name = "ultraLabel98";
- this.ultraLabel98.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel98.TabIndex = 8;
- this.ultraLabel98.Text = "付款方式";
- //
- // ultraLabel27
- //
- this.ultraLabel27.AutoSize = true;
- this.ultraLabel27.Location = new System.Drawing.Point(111, 86);
- this.ultraLabel27.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel27.TabIndex = 7;
- this.ultraLabel27.Text = "银行名称";
- //
- // txt_BANKNAME
- //
- appearance4.TextHAlignAsString = "Right";
- this.txt_BANKNAME.Appearance = appearance4;
- this.txt_BANKNAME.Location = new System.Drawing.Point(188, 85);
- this.txt_BANKNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_BANKNAME.Name = "txt_BANKNAME";
- this.txt_BANKNAME.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
- this.txt_BANKNAME.Size = new System.Drawing.Size(365, 24);
- this.txt_BANKNAME.TabIndex = 6;
- //
- // txt_BANKACCOUNT
- //
- appearance27.TextHAlignAsString = "Right";
- this.txt_BANKACCOUNT.Appearance = appearance27;
- this.txt_BANKACCOUNT.Location = new System.Drawing.Point(188, 116);
- this.txt_BANKACCOUNT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_BANKACCOUNT.Name = "txt_BANKACCOUNT";
- this.txt_BANKACCOUNT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
- this.txt_BANKACCOUNT.Size = new System.Drawing.Size(365, 24);
- this.txt_BANKACCOUNT.TabIndex = 3;
- //
- // ultraLabel32
- //
- this.ultraLabel32.AutoSize = true;
- this.ultraLabel32.Location = new System.Drawing.Point(111, 119);
- this.ultraLabel32.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel32.TabIndex = 4;
- this.ultraLabel32.Text = "银行账号";
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.upLoadFile);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel99);
- this.ultraTabPageControl4.Controls.Add(this.txt_arch_code);
- this.ultraTabPageControl4.Controls.Add(this.btn_submitAppend);
- this.ultraTabPageControl4.Controls.Add(this.txt_certPath);
- this.ultraTabPageControl4.Controls.Add(this.txt_certpath_local);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel96);
- this.ultraTabPageControl4.Controls.Add(this.txt_CERTVALID_end);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel95);
- this.ultraTabPageControl4.Controls.Add(this.txt_certNo_v);
- this.ultraTabPageControl4.Controls.Add(this.txt_certpath_old);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel94);
- this.ultraTabPageControl4.Controls.Add(this.craftImg);
- this.ultraTabPageControl4.Controls.Add(this.txt_CERTVALID_start);
- this.ultraTabPageControl4.Controls.Add(this.txt_ap_type);
- this.ultraTabPageControl4.Controls.Add(this.txt_ap_constraint);
- this.ultraTabPageControl4.Controls.Add(this.txt_CERTDESC);
- this.ultraTabPageControl4.Controls.Add(this.txt_CERTIOFFICER);
- this.ultraTabPageControl4.Controls.Add(this.txt_CERTNO);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel37);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel38);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel35);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel36);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel34);
- this.ultraTabPageControl4.Controls.Add(this.ultraLabel33);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(1515, 295);
- //
- // upLoadFile
- //
- this.upLoadFile.Location = new System.Drawing.Point(927, 10);
- this.upLoadFile.Margin = new System.Windows.Forms.Padding(4);
- this.upLoadFile.Name = "upLoadFile";
- this.upLoadFile.Size = new System.Drawing.Size(100, 242);
- this.upLoadFile.TabIndex = 104;
- this.upLoadFile.Text = "上传资质信息";
- this.upLoadFile.Click += new System.EventHandler(this.upLoadFile_Click);
- //
- // ultraLabel99
- //
- this.ultraLabel99.AutoSize = true;
- this.ultraLabel99.Location = new System.Drawing.Point(77, 172);
- this.ultraLabel99.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel99.Name = "ultraLabel99";
- this.ultraLabel99.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel99.TabIndex = 103;
- this.ultraLabel99.Text = "结构代码";
- //
- // txt_arch_code
- //
- this.txt_arch_code.Location = new System.Drawing.Point(156, 169);
- this.txt_arch_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_arch_code.Name = "txt_arch_code";
- this.txt_arch_code.Size = new System.Drawing.Size(267, 24);
- this.txt_arch_code.TabIndex = 102;
- //
- // btn_submitAppend
- //
- this.btn_submitAppend.Location = new System.Drawing.Point(789, 10);
- this.btn_submitAppend.Margin = new System.Windows.Forms.Padding(4);
- this.btn_submitAppend.Name = "btn_submitAppend";
- this.btn_submitAppend.Size = new System.Drawing.Size(100, 242);
- this.btn_submitAppend.TabIndex = 97;
- this.btn_submitAppend.Text = "添加营业执照代码";
- this.btn_submitAppend.Click += new System.EventHandler(this.btn_submitAppend_Click);
- //
- // txt_certPath
- //
- editorButton2.Key = "insert";
- editorButton2.Text = "选择";
- this.txt_certPath.ButtonsRight.Add(editorButton2);
- this.txt_certPath.Location = new System.Drawing.Point(156, 16);
- this.txt_certPath.Margin = new System.Windows.Forms.Padding(4);
- this.txt_certPath.Name = "txt_certPath";
- this.txt_certPath.ReadOnly = true;
- this.txt_certPath.Size = new System.Drawing.Size(267, 24);
- this.txt_certPath.TabIndex = 96;
- this.txt_certPath.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_certPath_EditorButtonClick);
- //
- // txt_certpath_local
- //
- this.txt_certpath_local.Location = new System.Drawing.Point(156, 50);
- this.txt_certpath_local.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_certpath_local.Name = "txt_certpath_local";
- this.txt_certpath_local.ReadOnly = true;
- this.txt_certpath_local.Size = new System.Drawing.Size(267, 24);
- this.txt_certpath_local.TabIndex = 94;
- //
- // ultraLabel96
- //
- this.ultraLabel96.AutoSize = true;
- this.ultraLabel96.Location = new System.Drawing.Point(79, 52);
- this.ultraLabel96.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel96.Name = "ultraLabel96";
- this.ultraLabel96.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel96.TabIndex = 93;
- this.ultraLabel96.Text = "本地地址";
- //
- // txt_CERTVALID_end
- //
- this.txt_CERTVALID_end.DateButtons.Add(dateButton7);
- this.txt_CERTVALID_end.Location = new System.Drawing.Point(156, 228);
- this.txt_CERTVALID_end.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_CERTVALID_end.Name = "txt_CERTVALID_end";
- this.txt_CERTVALID_end.NonAutoSizeHeight = 25;
- this.txt_CERTVALID_end.Size = new System.Drawing.Size(267, 25);
- this.txt_CERTVALID_end.TabIndex = 73;
- this.txt_CERTVALID_end.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- //
- // ultraLabel95
- //
- this.ultraLabel95.AutoSize = true;
- this.ultraLabel95.Location = new System.Drawing.Point(61, 229);
- this.ultraLabel95.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel95.Name = "ultraLabel95";
- this.ultraLabel95.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel95.TabIndex = 74;
- this.ultraLabel95.Text = "有效期截止";
- //
- // txt_certNo_v
- //
- this.txt_certNo_v.Location = new System.Drawing.Point(1281, 20);
- this.txt_certNo_v.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_certNo_v.Name = "txt_certNo_v";
- this.txt_certNo_v.Size = new System.Drawing.Size(139, 24);
- this.txt_certNo_v.TabIndex = 71;
- this.txt_certNo_v.Visible = false;
- //
- // txt_certpath_old
- //
- this.txt_certpath_old.Location = new System.Drawing.Point(1281, 55);
- this.txt_certpath_old.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_certpath_old.Name = "txt_certpath_old";
- this.txt_certpath_old.Size = new System.Drawing.Size(139, 24);
- this.txt_certpath_old.TabIndex = 70;
- this.txt_certpath_old.Visible = false;
- //
- // ultraLabel94
- //
- this.ultraLabel94.AutoSize = true;
- this.ultraLabel94.Location = new System.Drawing.Point(77, 20);
- this.ultraLabel94.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel94.Name = "ultraLabel94";
- this.ultraLabel94.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel94.TabIndex = 69;
- this.ultraLabel94.Text = "证书文件";
- //
- // txt_CERTVALID_start
- //
- this.txt_CERTVALID_start.DateButtons.Add(dateButton8);
- this.txt_CERTVALID_start.Location = new System.Drawing.Point(156, 198);
- this.txt_CERTVALID_start.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_CERTVALID_start.Name = "txt_CERTVALID_start";
- this.txt_CERTVALID_start.NonAutoSizeHeight = 25;
- this.txt_CERTVALID_start.Size = new System.Drawing.Size(267, 25);
- this.txt_CERTVALID_start.TabIndex = 3;
- this.txt_CERTVALID_start.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
- //
- // txt_ap_type
- //
- this.txt_ap_type.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem4.DataValue = "1";
- valueListItem4.DisplayText = "营业执照";
- valueListItem23.DataValue = "4";
- valueListItem23.DisplayText = "质量管理体系";
- valueListItem24.DataValue = "5";
- valueListItem24.DisplayText = "环境管理体系";
- valueListItem25.DataValue = "6";
- valueListItem25.DisplayText = "职业健康与安全管理体系";
- valueListItem26.DataValue = "7";
- valueListItem26.DisplayText = "授权委托书";
- valueListItem29.DataValue = "8";
- valueListItem29.DisplayText = "其它";
- this.txt_ap_type.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem4,
- valueListItem23,
- valueListItem24,
- valueListItem25,
- valueListItem26,
- valueListItem29});
- this.txt_ap_type.Location = new System.Drawing.Point(156, 141);
- this.txt_ap_type.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_ap_type.Name = "txt_ap_type";
- this.txt_ap_type.Size = new System.Drawing.Size(267, 24);
- this.txt_ap_type.TabIndex = 5;
- //
- // txt_ap_constraint
- //
- this.txt_ap_constraint.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem10.DataValue = "1";
- valueListItem10.DisplayText = "A类";
- valueListItem11.DataValue = "2";
- valueListItem11.DisplayText = "B类";
- valueListItem12.DataValue = "3";
- valueListItem12.DisplayText = "C类";
- this.txt_ap_constraint.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem10,
- valueListItem11,
- valueListItem12});
- this.txt_ap_constraint.Location = new System.Drawing.Point(156, 112);
- this.txt_ap_constraint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_ap_constraint.Name = "txt_ap_constraint";
- this.txt_ap_constraint.Size = new System.Drawing.Size(267, 24);
- this.txt_ap_constraint.TabIndex = 1;
- //
- // txt_CERTDESC
- //
- this.txt_CERTDESC.Location = new System.Drawing.Point(515, 49);
- this.txt_CERTDESC.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_CERTDESC.Multiline = true;
- this.txt_CERTDESC.Name = "txt_CERTDESC";
- this.txt_CERTDESC.Size = new System.Drawing.Size(267, 202);
- this.txt_CERTDESC.TabIndex = 6;
- //
- // txt_CERTIOFFICER
- //
- this.txt_CERTIOFFICER.Location = new System.Drawing.Point(515, 18);
- this.txt_CERTIOFFICER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_CERTIOFFICER.Name = "txt_CERTIOFFICER";
- this.txt_CERTIOFFICER.Size = new System.Drawing.Size(267, 24);
- this.txt_CERTIOFFICER.TabIndex = 2;
- //
- // txt_CERTNO
- //
- this.txt_CERTNO.Location = new System.Drawing.Point(156, 81);
- this.txt_CERTNO.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_CERTNO.Name = "txt_CERTNO";
- this.txt_CERTNO.ReadOnly = true;
- this.txt_CERTNO.Size = new System.Drawing.Size(267, 24);
- this.txt_CERTNO.TabIndex = 4;
- //
- // ultraLabel37
- //
- this.ultraLabel37.AutoSize = true;
- this.ultraLabel37.Location = new System.Drawing.Point(439, 51);
- this.ultraLabel37.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel37.TabIndex = 5;
- this.ultraLabel37.Text = "证书描述";
- //
- // ultraLabel38
- //
- this.ultraLabel38.AutoSize = true;
- this.ultraLabel38.Location = new System.Drawing.Point(61, 200);
- this.ultraLabel38.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.Size = new System.Drawing.Size(83, 19);
- this.ultraLabel38.TabIndex = 4;
- this.ultraLabel38.Text = "有效期开始";
- //
- // ultraLabel35
- //
- this.ultraLabel35.AutoSize = true;
- this.ultraLabel35.Location = new System.Drawing.Point(77, 142);
- this.ultraLabel35.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel35.Name = "ultraLabel35";
- this.ultraLabel35.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel35.TabIndex = 3;
- this.ultraLabel35.Text = "证书类型";
- //
- // ultraLabel36
- //
- this.ultraLabel36.AutoSize = true;
- this.ultraLabel36.Location = new System.Drawing.Point(439, 20);
- this.ultraLabel36.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel36.Name = "ultraLabel36";
- this.ultraLabel36.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel36.TabIndex = 2;
- this.ultraLabel36.Text = "发放机构";
- //
- // ultraLabel34
- //
- this.ultraLabel34.AutoSize = true;
- this.ultraLabel34.Location = new System.Drawing.Point(93, 85);
- this.ultraLabel34.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel34.Name = "ultraLabel34";
- this.ultraLabel34.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel34.TabIndex = 1;
- this.ultraLabel34.Text = "文件名";
- //
- // ultraLabel33
- //
- this.ultraLabel33.AutoSize = true;
- this.ultraLabel33.Location = new System.Drawing.Point(44, 115);
- this.ultraLabel33.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel33.Name = "ultraLabel33";
- this.ultraLabel33.Size = new System.Drawing.Size(98, 19);
- this.ultraLabel33.TabIndex = 0;
- this.ultraLabel33.Text = "证书强制类型";
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.txt_Rate_Year);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel101);
- this.ultraTabPageControl2.Controls.Add(this.Combo_Rate);
- this.ultraTabPageControl2.Controls.Add(this.ultraLabel100);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 25);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1515, 295);
- //
- // txt_Rate_Year
- //
- this.txt_Rate_Year.Location = new System.Drawing.Point(283, 12);
- this.txt_Rate_Year.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.txt_Rate_Year.Name = "txt_Rate_Year";
- this.txt_Rate_Year.Size = new System.Drawing.Size(123, 25);
- this.txt_Rate_Year.TabIndex = 18;
- //
- // ultraLabel101
- //
- this.ultraLabel101.AutoSize = true;
- this.ultraLabel101.Location = new System.Drawing.Point(241, 15);
- this.ultraLabel101.Name = "ultraLabel101";
- this.ultraLabel101.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel101.TabIndex = 2;
- this.ultraLabel101.Text = "年份";
- //
- // Combo_Rate
- //
- this.Combo_Rate.Location = new System.Drawing.Point(57, 15);
- this.Combo_Rate.Name = "Combo_Rate";
- this.Combo_Rate.Size = new System.Drawing.Size(144, 24);
- this.Combo_Rate.TabIndex = 1;
- //
- // ultraLabel100
- //
- this.ultraLabel100.AutoSize = true;
- this.ultraLabel100.Location = new System.Drawing.Point(13, 15);
- this.ultraLabel100.Name = "ultraLabel100";
- this.ultraLabel100.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel100.TabIndex = 0;
- this.ultraLabel100.Text = "评级";
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn4,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn19,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn23,
- this.dataColumn24,
- this.dataColumn36,
- this.dataColumn41,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45,
- this.dataColumn50,
- this.dataColumn25,
- this.dataColumn27,
- this.dataColumn53,
- this.dataColumn54,
- this.dataColumn55,
- this.dataColumn56});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "代码";
- this.dataColumn1.ColumnName = "suppCode";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "名称";
- this.dataColumn2.ColumnName = "suppName";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "简称";
- this.dataColumn3.ColumnName = "suppShortName";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "生效日期";
- this.dataColumn4.ColumnName = "suppStartDate";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "失效日期";
- this.dataColumn5.ColumnName = "suppEndDate";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "税号生效日期";
- this.dataColumn6.ColumnName = "suppTaxStartDate";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "税号失效日期";
- this.dataColumn7.ColumnName = "suppTaxEndDate";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "是否内部供方";
- this.dataColumn8.ColumnName = "suppIsInternal";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "是否制造商";
- this.dataColumn9.ColumnName = "suppIsManufacturer";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "是否子公司";
- this.dataColumn10.ColumnName = "suppIsSubCompany";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "联系人";
- this.dataColumn11.ColumnName = "supplierLinkMan";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "传真";
- this.dataColumn12.ColumnName = "suppContactFax";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "电话";
- this.dataColumn13.ColumnName = "suppContactTel";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "EMAIL";
- this.dataColumn14.ColumnName = "suppContactEmail";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "手机";
- this.dataColumn15.ColumnName = "suppContactCellPhone";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "职务";
- this.dataColumn16.ColumnName = "suppContactTitle";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "备注";
- this.dataColumn17.ColumnName = "suppComment";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "信用等级";
- this.dataColumn18.ColumnName = "suppCreditRate";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "状态";
- this.dataColumn19.ColumnName = "status";
- //
- // dataColumn20
- //
- this.dataColumn20.Caption = "数据状态";
- this.dataColumn20.ColumnName = "validflag";
- //
- // dataColumn21
- //
- this.dataColumn21.Caption = "创建人";
- this.dataColumn21.ColumnName = "createName";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "创建时间";
- this.dataColumn22.ColumnName = "createTime";
- //
- // dataColumn23
- //
- this.dataColumn23.Caption = "修改人";
- this.dataColumn23.ColumnName = "updateName";
- //
- // dataColumn24
- //
- this.dataColumn24.Caption = "修改时间";
- this.dataColumn24.ColumnName = "updateTime";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "是否生效";
- this.dataColumn36.ColumnName = "suspendStatus";
- //
- // dataColumn41
- //
- this.dataColumn41.Caption = "注册资金";
- this.dataColumn41.ColumnName = "SUPPREGCAPITAL";
- //
- // dataColumn42
- //
- this.dataColumn42.Caption = "税率(%)";
- this.dataColumn42.ColumnName = "suppTaxRate";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "税号";
- this.dataColumn43.ColumnName = "suppTaxId";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "营业执照号码";
- this.dataColumn44.ColumnName = "SuppLicNum";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "组织机构代码";
- this.dataColumn45.ColumnName = "orgCode";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "注册货币类型";
- this.dataColumn50.ColumnName = "SUPPREGCAPCURRENCY";
- //
- // dataColumn25
- //
- this.dataColumn25.Caption = "邮编";
- this.dataColumn25.ColumnName = "SUPPADDPOSTAL";
- //
- // dataColumn27
- //
- this.dataColumn27.Caption = "供方类型";
- this.dataColumn27.ColumnName = "suppType";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "招标系统账号";
- this.dataColumn53.ColumnName = "account";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "财务账号";
- this.dataColumn54.ColumnName = "accountcw";
- //
- // dataColumn55
- //
- this.dataColumn55.Caption = "日期有效期截止标志";
- this.dataColumn55.ColumnName = "end";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "结算代码";
- this.dataColumn56.ColumnName = "balanceCode";
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable2});
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn26,
- this.dataColumn29,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn57});
- this.dataTable2.TableName = "Table1";
- //
- // dataColumn26
- //
- this.dataColumn26.Caption = "银行名称";
- this.dataColumn26.ColumnName = "bankName";
- //
- // dataColumn29
- //
- this.dataColumn29.Caption = "银行帐号";
- this.dataColumn29.ColumnName = "bankAccount";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = " 供货商代码";
- this.dataColumn38.ColumnName = "suppCode";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "序列代码";
- this.dataColumn39.ColumnName = "id";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "付款方式";
- this.dataColumn57.ColumnName = "payTypeName";
- //
- // dataSet4
- //
- this.dataSet4.DataSetName = "NewDataSet";
- this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable4});
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn28,
- this.dataColumn51,
- this.dataColumn52});
- this.dataTable4.TableName = "Table1";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "物料编码";
- this.dataColumn28.ColumnName = "itemCode";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "物料名称";
- this.dataColumn51.ColumnName = "itemName";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "物料中类";
- this.dataColumn52.ColumnName = "remark2";
- //
- // dataSet3
- //
- this.dataSet3.DataSetName = "NewDataSet";
- this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable3});
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn37,
- this.dataColumn40,
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn58});
- this.dataTable3.TableName = "Table1";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "证书强制类型";
- this.dataColumn30.ColumnName = "certiConstraint";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "证书发放机构";
- this.dataColumn31.ColumnName = "certiOfficer";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "证书编号";
- this.dataColumn32.ColumnName = "certNo";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "证书类型";
- this.dataColumn33.ColumnName = "certType";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "有效期开始";
- this.dataColumn34.ColumnName = "certValidStart";
- //
- // dataColumn35
- //
- this.dataColumn35.Caption = "证书描述";
- this.dataColumn35.ColumnName = "certDesc";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "供货商代码";
- this.dataColumn37.ColumnName = "suppCode";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "文件编号";
- this.dataColumn40.ColumnName = "id";
- //
- // dataColumn46
- //
- this.dataColumn46.Caption = "文件名";
- this.dataColumn46.ColumnName = "certPath";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "相对路径";
- this.dataColumn47.ColumnName = "certPathOld";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "主键";
- this.dataColumn48.ColumnName = "certNoV";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "有效期截止";
- this.dataColumn49.ColumnName = "certValidEnd";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "结构代码";
- this.dataColumn58.ColumnName = "archCode";
- //
- // ultraLabel40
- //
- this.ultraLabel40.Location = new System.Drawing.Point(715, 188);
- this.ultraLabel40.Name = "ultraLabel40";
- this.ultraLabel40.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel40.TabIndex = 40;
- this.ultraLabel40.Text = "供应商经营范围";
- //
- // ultraLabel41
- //
- this.ultraLabel41.Location = new System.Drawing.Point(715, 158);
- this.ultraLabel41.Name = "ultraLabel41";
- this.ultraLabel41.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel41.TabIndex = 31;
- this.ultraLabel41.Text = "供应商经营范围";
- //
- // ultraLabel42
- //
- this.ultraLabel42.Location = new System.Drawing.Point(715, 127);
- this.ultraLabel42.Name = "ultraLabel42";
- this.ultraLabel42.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel42.TabIndex = 30;
- this.ultraLabel42.Text = "供应商营业执照号码";
- //
- // ultraLabel43
- //
- this.ultraLabel43.Location = new System.Drawing.Point(715, 99);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel43.TabIndex = 29;
- this.ultraLabel43.Text = "供应商失效日期";
- //
- // ultraLabel44
- //
- this.ultraLabel44.Location = new System.Drawing.Point(715, 70);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel44.TabIndex = 28;
- this.ultraLabel44.Text = "城市";
- //
- // ultraLabel45
- //
- this.ultraLabel45.Location = new System.Drawing.Point(715, 43);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel45.TabIndex = 27;
- this.ultraLabel45.Text = "法人";
- //
- // ultraLabel46
- //
- this.ultraLabel46.Location = new System.Drawing.Point(715, 13);
- this.ultraLabel46.Name = "ultraLabel46";
- this.ultraLabel46.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel46.TabIndex = 26;
- this.ultraLabel46.Text = "供应商中文简称";
- //
- // dateTimePicker1
- //
- this.dateTimePicker1.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker1.Location = new System.Drawing.Point(518, 154);
- this.dateTimePicker1.Name = "dateTimePicker1";
- this.dateTimePicker1.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker1.TabIndex = 39;
- //
- // dateTimePicker2
- //
- this.dateTimePicker2.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker2.Location = new System.Drawing.Point(518, 128);
- this.dateTimePicker2.Name = "dateTimePicker2";
- this.dateTimePicker2.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker2.TabIndex = 39;
- //
- // dateTimePicker3
- //
- this.dateTimePicker3.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker3.Location = new System.Drawing.Point(168, 161);
- this.dateTimePicker3.Name = "dateTimePicker3";
- this.dateTimePicker3.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker3.TabIndex = 39;
- //
- // dateTimePicker4
- //
- this.dateTimePicker4.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker4.Location = new System.Drawing.Point(873, 100);
- this.dateTimePicker4.Name = "dateTimePicker4";
- this.dateTimePicker4.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker4.TabIndex = 39;
- //
- // dateTimePicker5
- //
- this.dateTimePicker5.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker5.Location = new System.Drawing.Point(518, 100);
- this.dateTimePicker5.Name = "dateTimePicker5";
- this.dateTimePicker5.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker5.TabIndex = 39;
- //
- // dateTimePicker6
- //
- this.dateTimePicker6.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker6.Location = new System.Drawing.Point(168, 128);
- this.dateTimePicker6.Name = "dateTimePicker6";
- this.dateTimePicker6.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker6.TabIndex = 38;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.Location = new System.Drawing.Point(873, 157);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor1.TabIndex = 37;
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(873, 127);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor2.TabIndex = 36;
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.Location = new System.Drawing.Point(873, 70);
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor3.TabIndex = 34;
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.Location = new System.Drawing.Point(873, 43);
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor4.TabIndex = 33;
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.Location = new System.Drawing.Point(873, 14);
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor5.TabIndex = 32;
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.Location = new System.Drawing.Point(518, 187);
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor6.TabIndex = 25;
- //
- // ultraTextEditor7
- //
- this.ultraTextEditor7.Location = new System.Drawing.Point(518, 69);
- this.ultraTextEditor7.Name = "ultraTextEditor7";
- this.ultraTextEditor7.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor7.TabIndex = 21;
- //
- // ultraTextEditor8
- //
- this.ultraTextEditor8.Location = new System.Drawing.Point(518, 43);
- this.ultraTextEditor8.Name = "ultraTextEditor8";
- this.ultraTextEditor8.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor8.TabIndex = 20;
- //
- // ultraLabel47
- //
- this.ultraLabel47.Location = new System.Drawing.Point(365, 188);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel47.TabIndex = 19;
- this.ultraLabel47.Text = "组织结构代码";
- //
- // ultraLabel48
- //
- this.ultraLabel48.Location = new System.Drawing.Point(365, 159);
- this.ultraLabel48.Name = "ultraLabel48";
- this.ultraLabel48.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel48.TabIndex = 18;
- this.ultraLabel48.Text = "营业执照失效日期";
- //
- // ultraLabel49
- //
- this.ultraLabel49.Location = new System.Drawing.Point(365, 130);
- this.ultraLabel49.Name = "ultraLabel49";
- this.ultraLabel49.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel49.TabIndex = 18;
- this.ultraLabel49.Text = "供应商税号失效日期";
- //
- // ultraLabel50
- //
- this.ultraLabel50.Location = new System.Drawing.Point(365, 72);
- this.ultraLabel50.Name = "ultraLabel50";
- this.ultraLabel50.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel50.TabIndex = 17;
- this.ultraLabel50.Text = "省份";
- //
- // ultraLabel51
- //
- this.ultraLabel51.Location = new System.Drawing.Point(365, 100);
- this.ultraLabel51.Name = "ultraLabel51";
- this.ultraLabel51.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel51.TabIndex = 17;
- this.ultraLabel51.Text = "供应商生效日期";
- //
- // ultraLabel52
- //
- this.ultraLabel52.Location = new System.Drawing.Point(365, 43);
- this.ultraLabel52.Name = "ultraLabel52";
- this.ultraLabel52.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel52.TabIndex = 16;
- this.ultraLabel52.Text = "公司性质";
- //
- // ultraTextEditor9
- //
- this.ultraTextEditor9.Location = new System.Drawing.Point(518, 12);
- this.ultraTextEditor9.Name = "ultraTextEditor9";
- this.ultraTextEditor9.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor9.TabIndex = 15;
- //
- // ultraTextEditor10
- //
- this.ultraTextEditor10.Location = new System.Drawing.Point(168, 188);
- this.ultraTextEditor10.Name = "ultraTextEditor10";
- this.ultraTextEditor10.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor10.TabIndex = 14;
- //
- // ultraLabel53
- //
- this.ultraLabel53.Location = new System.Drawing.Point(365, 15);
- this.ultraLabel53.Name = "ultraLabel53";
- this.ultraLabel53.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel53.TabIndex = 11;
- this.ultraLabel53.Text = "供应商名称";
- //
- // ultraLabel54
- //
- this.ultraLabel54.Location = new System.Drawing.Point(7, 182);
- this.ultraLabel54.Name = "ultraLabel54";
- this.ultraLabel54.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel54.TabIndex = 10;
- this.ultraLabel54.Text = "供货商行业类型";
- //
- // ultraLabel55
- //
- this.ultraLabel55.Location = new System.Drawing.Point(7, 156);
- this.ultraLabel55.Name = "ultraLabel55";
- this.ultraLabel55.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel55.TabIndex = 9;
- this.ultraLabel55.Text = "营业执照生效日期";
- //
- // ultraLabel56
- //
- this.ultraLabel56.Location = new System.Drawing.Point(7, 128);
- this.ultraLabel56.Name = "ultraLabel56";
- this.ultraLabel56.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel56.TabIndex = 8;
- this.ultraLabel56.Text = "供货商税号生效日期";
- //
- // ultraTextEditor11
- //
- this.ultraTextEditor11.Location = new System.Drawing.Point(168, 100);
- this.ultraTextEditor11.Name = "ultraTextEditor11";
- this.ultraTextEditor11.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor11.TabIndex = 7;
- //
- // ultraTextEditor12
- //
- this.ultraTextEditor12.Location = new System.Drawing.Point(168, 68);
- this.ultraTextEditor12.Name = "ultraTextEditor12";
- this.ultraTextEditor12.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor12.TabIndex = 6;
- //
- // ultraTextEditor13
- //
- this.ultraTextEditor13.Location = new System.Drawing.Point(168, 39);
- this.ultraTextEditor13.Name = "ultraTextEditor13";
- this.ultraTextEditor13.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor13.TabIndex = 5;
- //
- // ultraTextEditor14
- //
- this.ultraTextEditor14.Location = new System.Drawing.Point(168, 11);
- this.ultraTextEditor14.Name = "ultraTextEditor14";
- this.ultraTextEditor14.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor14.TabIndex = 4;
- //
- // ultraLabel57
- //
- this.ultraLabel57.Location = new System.Drawing.Point(7, 99);
- this.ultraLabel57.Name = "ultraLabel57";
- this.ultraLabel57.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel57.TabIndex = 3;
- this.ultraLabel57.Text = "办公省份";
- //
- // ultraLabel58
- //
- this.ultraLabel58.Location = new System.Drawing.Point(7, 70);
- this.ultraLabel58.Name = "ultraLabel58";
- this.ultraLabel58.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel58.TabIndex = 2;
- this.ultraLabel58.Text = "国家";
- //
- // ultraLabel59
- //
- this.ultraLabel59.Location = new System.Drawing.Point(7, 41);
- this.ultraLabel59.Name = "ultraLabel59";
- this.ultraLabel59.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel59.TabIndex = 1;
- this.ultraLabel59.Text = "税号/标识";
- //
- // ultraLabel60
- //
- this.ultraLabel60.Location = new System.Drawing.Point(7, 12);
- this.ultraLabel60.Name = "ultraLabel60";
- this.ultraLabel60.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel60.TabIndex = 0;
- this.ultraLabel60.Text = "供货商代码";
- //
- // ultraLabel61
- //
- this.ultraLabel61.Location = new System.Drawing.Point(715, 188);
- this.ultraLabel61.Name = "ultraLabel61";
- this.ultraLabel61.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel61.TabIndex = 40;
- this.ultraLabel61.Text = "供应商经营范围";
- //
- // ultraLabel62
- //
- this.ultraLabel62.Location = new System.Drawing.Point(715, 158);
- this.ultraLabel62.Name = "ultraLabel62";
- this.ultraLabel62.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel62.TabIndex = 31;
- this.ultraLabel62.Text = "供应商经营范围";
- //
- // ultraLabel63
- //
- this.ultraLabel63.Location = new System.Drawing.Point(715, 127);
- this.ultraLabel63.Name = "ultraLabel63";
- this.ultraLabel63.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel63.TabIndex = 30;
- this.ultraLabel63.Text = "供应商营业执照号码";
- //
- // ultraLabel64
- //
- this.ultraLabel64.Location = new System.Drawing.Point(715, 99);
- this.ultraLabel64.Name = "ultraLabel64";
- this.ultraLabel64.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel64.TabIndex = 29;
- this.ultraLabel64.Text = "供应商失效日期";
- //
- // ultraLabel65
- //
- this.ultraLabel65.Location = new System.Drawing.Point(715, 70);
- this.ultraLabel65.Name = "ultraLabel65";
- this.ultraLabel65.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel65.TabIndex = 28;
- this.ultraLabel65.Text = "城市";
- //
- // ultraLabel66
- //
- this.ultraLabel66.Location = new System.Drawing.Point(715, 43);
- this.ultraLabel66.Name = "ultraLabel66";
- this.ultraLabel66.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel66.TabIndex = 27;
- this.ultraLabel66.Text = "法人";
- //
- // ultraLabel67
- //
- this.ultraLabel67.Location = new System.Drawing.Point(715, 13);
- this.ultraLabel67.Name = "ultraLabel67";
- this.ultraLabel67.Size = new System.Drawing.Size(152, 23);
- this.ultraLabel67.TabIndex = 26;
- this.ultraLabel67.Text = "供应商中文简称";
- //
- // dateTimePicker7
- //
- this.dateTimePicker7.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker7.Location = new System.Drawing.Point(518, 154);
- this.dateTimePicker7.Name = "dateTimePicker7";
- this.dateTimePicker7.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker7.TabIndex = 39;
- //
- // dateTimePicker8
- //
- this.dateTimePicker8.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker8.Location = new System.Drawing.Point(518, 128);
- this.dateTimePicker8.Name = "dateTimePicker8";
- this.dateTimePicker8.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker8.TabIndex = 39;
- //
- // dateTimePicker9
- //
- this.dateTimePicker9.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker9.Location = new System.Drawing.Point(168, 161);
- this.dateTimePicker9.Name = "dateTimePicker9";
- this.dateTimePicker9.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker9.TabIndex = 39;
- //
- // dateTimePicker10
- //
- this.dateTimePicker10.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker10.Location = new System.Drawing.Point(873, 100);
- this.dateTimePicker10.Name = "dateTimePicker10";
- this.dateTimePicker10.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker10.TabIndex = 39;
- //
- // dateTimePicker11
- //
- this.dateTimePicker11.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker11.Location = new System.Drawing.Point(518, 100);
- this.dateTimePicker11.Name = "dateTimePicker11";
- this.dateTimePicker11.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker11.TabIndex = 39;
- //
- // dateTimePicker12
- //
- this.dateTimePicker12.CustomFormat = "yyyy-MM-dd ";
- this.dateTimePicker12.Location = new System.Drawing.Point(168, 128);
- this.dateTimePicker12.Name = "dateTimePicker12";
- this.dateTimePicker12.Size = new System.Drawing.Size(191, 25);
- this.dateTimePicker12.TabIndex = 38;
- //
- // ultraTextEditor15
- //
- this.ultraTextEditor15.Location = new System.Drawing.Point(873, 157);
- this.ultraTextEditor15.Name = "ultraTextEditor15";
- this.ultraTextEditor15.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor15.TabIndex = 37;
- //
- // ultraTextEditor16
- //
- this.ultraTextEditor16.Location = new System.Drawing.Point(873, 127);
- this.ultraTextEditor16.Name = "ultraTextEditor16";
- this.ultraTextEditor16.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor16.TabIndex = 36;
- //
- // ultraTextEditor17
- //
- this.ultraTextEditor17.Location = new System.Drawing.Point(873, 70);
- this.ultraTextEditor17.Name = "ultraTextEditor17";
- this.ultraTextEditor17.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor17.TabIndex = 34;
- //
- // ultraTextEditor18
- //
- this.ultraTextEditor18.Location = new System.Drawing.Point(873, 43);
- this.ultraTextEditor18.Name = "ultraTextEditor18";
- this.ultraTextEditor18.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor18.TabIndex = 33;
- //
- // ultraTextEditor19
- //
- this.ultraTextEditor19.Location = new System.Drawing.Point(873, 14);
- this.ultraTextEditor19.Name = "ultraTextEditor19";
- this.ultraTextEditor19.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor19.TabIndex = 32;
- //
- // ultraTextEditor20
- //
- this.ultraTextEditor20.Location = new System.Drawing.Point(518, 187);
- this.ultraTextEditor20.Name = "ultraTextEditor20";
- this.ultraTextEditor20.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor20.TabIndex = 25;
- //
- // ultraTextEditor21
- //
- this.ultraTextEditor21.Location = new System.Drawing.Point(518, 69);
- this.ultraTextEditor21.Name = "ultraTextEditor21";
- this.ultraTextEditor21.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor21.TabIndex = 21;
- //
- // ultraTextEditor22
- //
- this.ultraTextEditor22.Location = new System.Drawing.Point(518, 43);
- this.ultraTextEditor22.Name = "ultraTextEditor22";
- this.ultraTextEditor22.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor22.TabIndex = 20;
- //
- // ultraLabel68
- //
- this.ultraLabel68.Location = new System.Drawing.Point(365, 188);
- this.ultraLabel68.Name = "ultraLabel68";
- this.ultraLabel68.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel68.TabIndex = 19;
- this.ultraLabel68.Text = "组织结构代码";
- //
- // ultraLabel69
- //
- this.ultraLabel69.Location = new System.Drawing.Point(365, 159);
- this.ultraLabel69.Name = "ultraLabel69";
- this.ultraLabel69.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel69.TabIndex = 18;
- this.ultraLabel69.Text = "营业执照失效日期";
- //
- // ultraLabel70
- //
- this.ultraLabel70.Location = new System.Drawing.Point(365, 130);
- this.ultraLabel70.Name = "ultraLabel70";
- this.ultraLabel70.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel70.TabIndex = 18;
- this.ultraLabel70.Text = "供应商税号失效日期";
- //
- // ultraLabel71
- //
- this.ultraLabel71.Location = new System.Drawing.Point(365, 72);
- this.ultraLabel71.Name = "ultraLabel71";
- this.ultraLabel71.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel71.TabIndex = 17;
- this.ultraLabel71.Text = "省份";
- //
- // ultraLabel72
- //
- this.ultraLabel72.Location = new System.Drawing.Point(365, 100);
- this.ultraLabel72.Name = "ultraLabel72";
- this.ultraLabel72.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel72.TabIndex = 17;
- this.ultraLabel72.Text = "供应商生效日期";
- //
- // ultraLabel73
- //
- this.ultraLabel73.Location = new System.Drawing.Point(365, 43);
- this.ultraLabel73.Name = "ultraLabel73";
- this.ultraLabel73.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel73.TabIndex = 16;
- this.ultraLabel73.Text = "公司性质";
- //
- // ultraTextEditor23
- //
- this.ultraTextEditor23.Location = new System.Drawing.Point(518, 12);
- this.ultraTextEditor23.Name = "ultraTextEditor23";
- this.ultraTextEditor23.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor23.TabIndex = 15;
- //
- // ultraTextEditor24
- //
- this.ultraTextEditor24.Location = new System.Drawing.Point(168, 188);
- this.ultraTextEditor24.Name = "ultraTextEditor24";
- this.ultraTextEditor24.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor24.TabIndex = 14;
- //
- // ultraLabel74
- //
- this.ultraLabel74.Location = new System.Drawing.Point(365, 15);
- this.ultraLabel74.Name = "ultraLabel74";
- this.ultraLabel74.Size = new System.Drawing.Size(160, 23);
- this.ultraLabel74.TabIndex = 11;
- this.ultraLabel74.Text = "供应商名称";
- //
- // ultraLabel75
- //
- this.ultraLabel75.Location = new System.Drawing.Point(7, 182);
- this.ultraLabel75.Name = "ultraLabel75";
- this.ultraLabel75.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel75.TabIndex = 10;
- this.ultraLabel75.Text = "供货商行业类型";
- //
- // ultraLabel76
- //
- this.ultraLabel76.Location = new System.Drawing.Point(7, 156);
- this.ultraLabel76.Name = "ultraLabel76";
- this.ultraLabel76.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel76.TabIndex = 9;
- this.ultraLabel76.Text = "营业执照生效日期";
- //
- // ultraLabel77
- //
- this.ultraLabel77.Location = new System.Drawing.Point(7, 128);
- this.ultraLabel77.Name = "ultraLabel77";
- this.ultraLabel77.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel77.TabIndex = 8;
- this.ultraLabel77.Text = "供货商税号生效日期";
- //
- // ultraTextEditor25
- //
- this.ultraTextEditor25.Location = new System.Drawing.Point(168, 100);
- this.ultraTextEditor25.Name = "ultraTextEditor25";
- this.ultraTextEditor25.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor25.TabIndex = 7;
- //
- // ultraTextEditor26
- //
- this.ultraTextEditor26.Location = new System.Drawing.Point(168, 68);
- this.ultraTextEditor26.Name = "ultraTextEditor26";
- this.ultraTextEditor26.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor26.TabIndex = 6;
- //
- // ultraTextEditor27
- //
- this.ultraTextEditor27.Location = new System.Drawing.Point(168, 39);
- this.ultraTextEditor27.Name = "ultraTextEditor27";
- this.ultraTextEditor27.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor27.TabIndex = 5;
- //
- // ultraTextEditor28
- //
- this.ultraTextEditor28.Location = new System.Drawing.Point(168, 11);
- this.ultraTextEditor28.Name = "ultraTextEditor28";
- this.ultraTextEditor28.Size = new System.Drawing.Size(191, 24);
- this.ultraTextEditor28.TabIndex = 4;
- //
- // ultraLabel78
- //
- this.ultraLabel78.Location = new System.Drawing.Point(7, 99);
- this.ultraLabel78.Name = "ultraLabel78";
- this.ultraLabel78.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel78.TabIndex = 3;
- this.ultraLabel78.Text = "办公省份";
- //
- // ultraLabel79
- //
- this.ultraLabel79.Location = new System.Drawing.Point(7, 70);
- this.ultraLabel79.Name = "ultraLabel79";
- this.ultraLabel79.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel79.TabIndex = 2;
- this.ultraLabel79.Text = "国家";
- //
- // ultraLabel80
- //
- this.ultraLabel80.Location = new System.Drawing.Point(7, 41);
- this.ultraLabel80.Name = "ultraLabel80";
- this.ultraLabel80.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel80.TabIndex = 1;
- this.ultraLabel80.Text = "税号/标识";
- //
- // ultraLabel81
- //
- this.ultraLabel81.Location = new System.Drawing.Point(7, 12);
- this.ultraLabel81.Name = "ultraLabel81";
- this.ultraLabel81.Size = new System.Drawing.Size(147, 23);
- this.ultraLabel81.TabIndex = 0;
- this.ultraLabel81.Text = "供货商代码";
- //
- // ultraPanel2
- //
- //
- // ultraPanel2.ClientArea
- //
- this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel4);
- this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel2.Location = new System.Drawing.Point(0, 40);
- this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel2.Name = "ultraPanel2";
- this.ultraPanel2.Size = new System.Drawing.Size(1523, 692);
- this.ultraPanel2.TabIndex = 1;
- //
- // ultraPanel4
- //
- //
- // ultraPanel4.ClientArea
- //
- this.ultraPanel4.ClientArea.Controls.Add(this.splitContainer2);
- this.ultraPanel4.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
- this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
- this.ultraPanel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraPanel4.Name = "ultraPanel4";
- this.ultraPanel4.Size = new System.Drawing.Size(1523, 692);
- this.ultraPanel4.TabIndex = 1;
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Margin = new System.Windows.Forms.Padding(4);
- this.splitContainer2.Name = "splitContainer2";
- this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox4);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.splitContainer1);
- this.splitContainer2.Size = new System.Drawing.Size(1523, 342);
- this.splitContainer2.SplitterDistance = 158;
- this.splitContainer2.SplitterWidth = 5;
- this.splitContainer2.TabIndex = 2;
- //
- // ultraGroupBox4
- //
- this.ultraGroupBox4.Controls.Add(this.ultraGrid1);
- this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox4.Name = "ultraGroupBox4";
- this.ultraGroupBox4.Size = new System.Drawing.Size(1523, 158);
- this.ultraGroupBox4.TabIndex = 2;
- this.ultraGroupBox4.Text = "供应商列表";
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataSource = this.dataSet1;
- appearance76.BackColor = System.Drawing.SystemColors.Window;
- appearance76.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid1.DisplayLayout.Appearance = appearance76;
- ultraGridColumn1.Header.VisiblePosition = 1;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.ParentGroupIndex = 2;
- ultraGridColumn1.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Header.VisiblePosition = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.ParentGroupIndex = 2;
- ultraGridColumn2.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn2.Width = 211;
- ultraGridColumn3.Header.VisiblePosition = 17;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn4.Header.VisiblePosition = 22;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.ParentGroupIndex = 4;
- ultraGridColumn4.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn5.Header.VisiblePosition = 23;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.ParentGroupIndex = 4;
- ultraGridColumn5.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn6.Header.Caption = "生效日期";
- ultraGridColumn6.Header.VisiblePosition = 24;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.ParentGroupIndex = 5;
- ultraGridColumn6.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn7.Header.Caption = "失效日期";
- ultraGridColumn7.Header.VisiblePosition = 25;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 5;
- ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn8.Header.VisiblePosition = 26;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn9.Header.VisiblePosition = 20;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn9.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn10.Header.VisiblePosition = 19;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.Header.VisiblePosition = 9;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.Width = 111;
- ultraGridColumn12.Header.VisiblePosition = 11;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn13.Header.VisiblePosition = 10;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn14.Header.VisiblePosition = 12;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn15.Header.VisiblePosition = 13;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn16.Header.VisiblePosition = 14;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn17.Header.VisiblePosition = 27;
- ultraGridColumn17.Hidden = true;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn18.Header.VisiblePosition = 21;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 1;
- ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
- appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- ultraGridColumn19.CellAppearance = appearance33;
- ultraGridColumn19.Header.VisiblePosition = 6;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 4;
- ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
- ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn19.Width = 75;
- ultraGridColumn20.Header.VisiblePosition = 7;
- ultraGridColumn20.Hidden = true;
- ultraGridColumn21.Header.VisiblePosition = 28;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 50;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn22.Header.VisiblePosition = 29;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 52;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn23.Header.VisiblePosition = 30;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 48;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn24.Header.VisiblePosition = 31;
- ultraGridColumn24.Hidden = true;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 50;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
- appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- ultraGridColumn25.CellAppearance = appearance34;
- ultraGridColumn25.Header.Caption = "是否暂挂";
- ultraGridColumn25.Header.VisiblePosition = 8;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.ParentGroupIndex = 4;
- ultraGridColumn25.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn25.Width = 73;
- ultraGridColumn26.Header.VisiblePosition = 16;
- ultraGridColumn26.Hidden = true;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.Header.Caption = "税率";
- ultraGridColumn27.Header.VisiblePosition = 18;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn28.Header.VisiblePosition = 3;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.ParentGroupIndex = 3;
- ultraGridColumn28.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.Header.VisiblePosition = 4;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 5;
- ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
- ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.Header.VisiblePosition = 5;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 4;
- ultraGridColumn31.Header.VisiblePosition = 15;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn32.Header.VisiblePosition = 32;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.ParentGroupIndex = 0;
- ultraGridColumn32.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
- ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
- appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- ultraGridColumn33.CellAppearance = appearance35;
- ultraGridColumn33.Header.VisiblePosition = 33;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 4;
- ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 16);
- ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn34.Header.VisiblePosition = 34;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 44;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn35.Header.VisiblePosition = 35;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 46;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn36.Header.VisiblePosition = 36;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn37.Header.VisiblePosition = 37;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 48;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 3;
- ultraGridColumn38.DataType = typeof(bool);
- ultraGridColumn38.Header.Caption = "序号";
- ultraGridColumn38.Header.VisiblePosition = 0;
- ultraGridColumn38.Hidden = true;
- ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38});
- ultraGridGroup1.Header.Caption = "供方联络信息";
- ultraGridGroup1.Key = "NewGroup0";
- ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup1.RowLayoutGroupInfo.OriginX = 22;
- ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
- ultraGridGroup1.RowLayoutGroupInfo.SpanX = 14;
- ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
- ultraGridGroup2.Header.Caption = "分类信息";
- ultraGridGroup2.Key = "NewGroup1";
- ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup2.RowLayoutGroupInfo.OriginX = 36;
- ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
- ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
- ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
- ultraGridGroup3.Header.Caption = "供应商";
- ultraGridGroup3.Key = "NewGroup2";
- ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup3.RowLayoutGroupInfo.OriginX = 0;
- ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup3.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
- ultraGridGroup3.RowLayoutGroupInfo.SpanX = 4;
- ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
- ultraGridGroup4.Header.Caption = "税号";
- ultraGridGroup4.Hidden = true;
- ultraGridGroup4.Key = "NewGroup3";
- ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup4.RowLayoutGroupInfo.OriginX = 14;
- ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup4.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
- ultraGridGroup4.RowLayoutGroupInfo.SpanX = 6;
- ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
- ultraGridGroup5.Header.Caption = "供方状态";
- ultraGridGroup5.Key = "NewGroup4";
- ultraGridGroup5.RowLayoutGroupInfo.LabelSpan = 1;
- ultraGridGroup5.RowLayoutGroupInfo.OriginX = 4;
- ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup5.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
- ultraGridGroup5.RowLayoutGroupInfo.SpanX = 10;
- ultraGridGroup5.RowLayoutGroupInfo.SpanY = 3;
- ultraGridGroup6.Key = "营业执照";
- ultraGridGroup6.RowLayoutGroupInfo.OriginX = 14;
- ultraGridGroup6.RowLayoutGroupInfo.OriginY = 0;
- ultraGridGroup6.RowLayoutGroupInfo.SpanX = 6;
- ultraGridGroup6.RowLayoutGroupInfo.SpanY = 4;
- ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
- ultraGridGroup1,
- ultraGridGroup2,
- ultraGridGroup3,
- ultraGridGroup4,
- ultraGridGroup5,
- ultraGridGroup6});
- ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance80.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance80.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance80.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance80;
- appearance81.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance81;
- this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
- appearance82.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance82.BackColor2 = System.Drawing.SystemColors.Control;
- appearance82.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance82.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance82;
- this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance83.BackColor = System.Drawing.SystemColors.Window;
- appearance83.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance83;
- appearance84.BackColor = System.Drawing.SystemColors.Highlight;
- appearance84.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance84;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance85.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance85;
- appearance86.BorderColor = System.Drawing.Color.Silver;
- appearance86.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance86;
- this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
- appearance87.BackColor = System.Drawing.SystemColors.Control;
- appearance87.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance87.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance87.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance87.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance87;
- appearance88.TextHAlignAsString = "Left";
- this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance88;
- this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance89.BackColor = System.Drawing.SystemColors.Window;
- appearance89.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance89;
- this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance90.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance90;
- this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1517, 134);
- this.ultraGrid1.TabIndex = 1;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.splitContainer1.Name = "splitContainer1";
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.splitContainer3);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox2);
- this.splitContainer1.Size = new System.Drawing.Size(1523, 179);
- this.splitContainer1.SplitterDistance = 960;
- this.splitContainer1.TabIndex = 1;
- //
- // splitContainer3
- //
- this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer3.Location = new System.Drawing.Point(0, 0);
- this.splitContainer3.Margin = new System.Windows.Forms.Padding(4);
- this.splitContainer3.Name = "splitContainer3";
- //
- // splitContainer3.Panel1
- //
- this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox1);
- //
- // splitContainer3.Panel2
- //
- this.splitContainer3.Panel2.Controls.Add(this.所属物料);
- this.splitContainer3.Size = new System.Drawing.Size(960, 179);
- this.splitContainer3.SplitterDistance = 316;
- this.splitContainer3.SplitterWidth = 5;
- this.splitContainer3.TabIndex = 1;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.ultraGrid5);
- this.ultraGroupBox1.Controls.Add(this.ultraGrid2);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(316, 179);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.Text = "银行信息列表";
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataSource = this.dataSet5;
- appearance2.BackColor = System.Drawing.SystemColors.Window;
- appearance2.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid5.DisplayLayout.Appearance = appearance2;
- ultraGridColumn39.Header.VisiblePosition = 0;
- ultraGridColumn40.Header.VisiblePosition = 1;
- ultraGridColumn41.Header.VisiblePosition = 2;
- ultraGridColumn41.Hidden = true;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41});
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance3.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance3.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance3.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance3;
- appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
- this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance5.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance5.BackColor2 = System.Drawing.SystemColors.Control;
- appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance5.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance5;
- this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
- appearance9.BackColor = System.Drawing.SystemColors.Window;
- appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance9;
- appearance30.BackColor = System.Drawing.SystemColors.Highlight;
- appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance30;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance32.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance32;
- appearance28.BorderColor = System.Drawing.Color.Silver;
- appearance28.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance28;
- this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
- appearance8.BackColor = System.Drawing.SystemColors.Control;
- appearance8.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance8.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance8.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance8;
- appearance7.TextHAlignAsString = "Left";
- this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance7;
- this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- appearance31.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance31;
- this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance29.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance29;
- this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Location = new System.Drawing.Point(3, 172);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(310, 4);
- this.ultraGrid5.TabIndex = 1;
- this.ultraGrid5.Text = "ultraGrid5";
- this.ultraGrid5.AfterRowActivate += new System.EventHandler(this.ultraGrid5_AfterRowActivate);
- this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
- //
- // dataSet5
- //
- this.dataSet5.DataSetName = "NewDataSet";
- this.dataSet5.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable5});
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn59,
- this.dataColumn60,
- this.dataColumn61});
- this.dataTable5.TableName = "Table1";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "评级";
- this.dataColumn59.ColumnName = "rate";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "年份";
- this.dataColumn60.ColumnName = "rateYear";
- //
- // dataColumn61
- //
- this.dataColumn61.ColumnName = "id";
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataSource = this.dataSet2;
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid2.DisplayLayout.Appearance = appearance13;
- ultraGridColumn42.Header.VisiblePosition = 2;
- ultraGridColumn42.Width = 181;
- ultraGridColumn43.Header.VisiblePosition = 1;
- ultraGridColumn43.Width = 147;
- ultraGridColumn44.Header.VisiblePosition = 3;
- ultraGridColumn44.Hidden = true;
- ultraGridColumn45.Header.VisiblePosition = 4;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn46.Header.VisiblePosition = 5;
- ultraGridColumn47.DataType = typeof(bool);
- ultraGridColumn47.Header.Caption = "选择";
- ultraGridColumn47.Header.VisiblePosition = 0;
- ultraGridColumn47.Hidden = true;
- ultraGridColumn47.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47});
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance14.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance14;
- appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
- this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
- appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance16.BackColor2 = System.Drawing.SystemColors.Control;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
- this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
- appearance17.BackColor = System.Drawing.SystemColors.Window;
- appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance17;
- appearance18.BackColor = System.Drawing.SystemColors.Highlight;
- appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance18;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance19;
- appearance20.BorderColor = System.Drawing.Color.Silver;
- appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance20;
- this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
- appearance21.BackColor = System.Drawing.SystemColors.Control;
- appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance21.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance21;
- appearance22.TextHAlignAsString = "Left";
- this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance22;
- this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance23;
- this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
- this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid2.Location = new System.Drawing.Point(3, 21);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(310, 151);
- this.ultraGrid2.TabIndex = 0;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
- //
- // 所属物料
- //
- this.所属物料.Controls.Add(this.ultraGrid4);
- this.所属物料.Dock = System.Windows.Forms.DockStyle.Fill;
- this.所属物料.Location = new System.Drawing.Point(0, 0);
- this.所属物料.Margin = new System.Windows.Forms.Padding(4);
- this.所属物料.Name = "所属物料";
- this.所属物料.Size = new System.Drawing.Size(639, 179);
- this.所属物料.TabIndex = 0;
- this.所属物料.Text = "可供物料";
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table1";
- this.ultraGrid4.DataSource = this.dataSet4;
- appearance10.BackColor = System.Drawing.SystemColors.Window;
- appearance10.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid4.DisplayLayout.Appearance = appearance10;
- ultraGridColumn48.Header.VisiblePosition = 1;
- ultraGridColumn49.Header.VisiblePosition = 2;
- ultraGridColumn50.Header.VisiblePosition = 0;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50});
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance11.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance11.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance11.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance11;
- appearance25.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance25;
- this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
- appearance12.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance12.BackColor2 = System.Drawing.SystemColors.Control;
- appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance12.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance12;
- this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
- appearance52.BackColor = System.Drawing.SystemColors.Window;
- appearance52.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance52;
- appearance55.BackColor = System.Drawing.SystemColors.Highlight;
- appearance55.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance55;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance57.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance57;
- appearance53.BorderColor = System.Drawing.Color.Silver;
- appearance53.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance53;
- this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
- appearance51.BackColor = System.Drawing.SystemColors.Control;
- appearance51.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance51.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance51.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance51.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance51;
- appearance26.TextHAlignAsString = "Left";
- this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance26;
- this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance56.BackColor = System.Drawing.SystemColors.Window;
- appearance56.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance56;
- this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance54.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance54;
- this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Location = new System.Drawing.Point(3, 21);
- this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(633, 155);
- this.ultraGrid4.TabIndex = 0;
- this.ultraGrid4.Text = "ultraGrid4";
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(559, 179);
- this.ultraGroupBox2.TabIndex = 0;
- this.ultraGroupBox2.Text = "资质信息列表";
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataSource = this.dataSet3;
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraGrid3.DisplayLayout.Appearance = appearance37;
- ultraGridColumn51.Header.VisiblePosition = 6;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn52.Header.VisiblePosition = 7;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn53.Header.Caption = "证书名";
- ultraGridColumn53.Header.VisiblePosition = 1;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(138, 0);
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn54.Header.VisiblePosition = 4;
- ultraGridColumn54.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn55.Header.VisiblePosition = 5;
- ultraGridColumn55.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn56.Header.VisiblePosition = 2;
- ultraGridColumn56.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(137, 0);
- ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn57.Header.VisiblePosition = 8;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn58.Header.Caption = "编号";
- ultraGridColumn58.Header.VisiblePosition = 9;
- ultraGridColumn58.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn59.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
- ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn59.EditorComponent = this.craftImg;
- ultraGridColumn59.Header.Caption = "文件";
- ultraGridColumn59.Header.VisiblePosition = 3;
- ultraGridColumn59.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(183, 0);
- ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn60.Header.VisiblePosition = 10;
- ultraGridColumn60.Hidden = true;
- ultraGridColumn61.Header.Caption = "序列号";
- ultraGridColumn61.Header.VisiblePosition = 11;
- ultraGridColumn61.Hidden = true;
- ultraGridColumn62.Header.VisiblePosition = 12;
- ultraGridColumn62.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn63.Header.VisiblePosition = 13;
- ultraGridColumn63.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(137, 0);
- ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn64.DataType = typeof(bool);
- ultraGridColumn64.Header.Caption = "选择";
- ultraGridColumn64.Header.VisiblePosition = 0;
- ultraGridColumn64.Hidden = true;
- ultraGridColumn64.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59,
- ultraGridColumn60,
- ultraGridColumn61,
- ultraGridColumn62,
- ultraGridColumn63,
- ultraGridColumn64});
- ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance38.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance38;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
- this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance40.BackColor2 = System.Drawing.SystemColors.Control;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
- this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
- appearance41.BackColor = System.Drawing.SystemColors.Window;
- appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance41;
- appearance42.BackColor = System.Drawing.SystemColors.Highlight;
- appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance42;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance43;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance44;
- this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
- appearance45.BackColor = System.Drawing.SystemColors.Control;
- appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance45.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance45;
- appearance46.TextHAlignAsString = "Left";
- this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance46;
- this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance47.BackColor = System.Drawing.SystemColors.Window;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance47;
- this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
- this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid3.Location = new System.Drawing.Point(3, 21);
- this.ultraGrid3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(553, 155);
- this.ultraGrid3.TabIndex = 0;
- this.ultraGrid3.Text = "ultraGrid3";
- this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
- this.ultraGrid3.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1523, 350);
- this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 342);
- this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1523, 350);
- this.ultraExpandableGroupBox1.TabIndex = 0;
- this.ultraExpandableGroupBox1.Text = "编辑区域";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTabControl1);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 26);
- this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1517, 321);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl4);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
- this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1517, 321);
- this.ultraTabControl1.TabIndex = 1;
- ultraTab5.TabPage = this.ultraTabPageControl1;
- ultraTab5.Text = "基本信息";
- ultraTab7.TabPage = this.ultraTabPageControl3;
- ultraTab7.Text = "银行信息";
- ultraTab8.TabPage = this.ultraTabPageControl4;
- ultraTab8.Text = "资质信息";
- ultraTab1.TabPage = this.ultraTabPageControl2;
- ultraTab1.Text = "评级信息";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab5,
- ultraTab7,
- ultraTab8,
- ultraTab1});
- this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1515, 295);
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.cop_suppType);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel30);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel92);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel17);
- this.ultraGroupBox3.Controls.Add(this.QsuspendStatus);
- this.ultraGroupBox3.Controls.Add(this.Qstatus);
- this.ultraGroupBox3.Controls.Add(this.textBox3);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel91);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel89);
- this.ultraGroupBox3.Controls.Add(this.ultraLabel31);
- this.ultraGroupBox3.Controls.Add(this.textBox2);
- this.ultraGroupBox3.Controls.Add(this.textBox1);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1523, 40);
- this.ultraGroupBox3.TabIndex = 2;
- //
- // cop_suppType
- //
- this.cop_suppType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem38.DataValue = " ";
- valueListItem38.DisplayText = "全部";
- valueListItem20.DataValue = "1";
- valueListItem20.DisplayText = "未生效";
- valueListItem35.DataValue = "2";
- valueListItem35.DisplayText = "审批中";
- valueListItem36.DataValue = "3";
- valueListItem36.DisplayText = "已审批";
- valueListItem37.DataValue = "4";
- valueListItem37.DisplayText = "已生效";
- this.cop_suppType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem38,
- valueListItem20,
- valueListItem35,
- valueListItem36,
- valueListItem37});
- this.cop_suppType.Location = new System.Drawing.Point(647, 6);
- this.cop_suppType.Margin = new System.Windows.Forms.Padding(4);
- this.cop_suppType.Name = "cop_suppType";
- this.cop_suppType.Size = new System.Drawing.Size(124, 24);
- this.cop_suppType.TabIndex = 23;
- //
- // ultraLabel30
- //
- this.ultraLabel30.AutoSize = true;
- this.ultraLabel30.Location = new System.Drawing.Point(572, 9);
- this.ultraLabel30.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel30.Name = "ultraLabel30";
- this.ultraLabel30.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel30.TabIndex = 22;
- this.ultraLabel30.Text = "供方类型";
- //
- // ultraLabel92
- //
- this.ultraLabel92.AutoSize = true;
- this.ultraLabel92.Location = new System.Drawing.Point(992, 9);
- this.ultraLabel92.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel92.Name = "ultraLabel92";
- this.ultraLabel92.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel92.TabIndex = 21;
- this.ultraLabel92.Text = "是否暂挂";
- //
- // ultraLabel17
- //
- this.ultraLabel17.AutoSize = true;
- this.ultraLabel17.Location = new System.Drawing.Point(784, 9);
- this.ultraLabel17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(67, 19);
- this.ultraLabel17.TabIndex = 20;
- this.ultraLabel17.Text = "审批状态";
- //
- // QsuspendStatus
- //
- this.QsuspendStatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem48.DataValue = " ";
- valueListItem48.DisplayText = "全部";
- valueListItem49.DataValue = "0";
- valueListItem49.DisplayText = "正常";
- valueListItem50.DataValue = "1";
- valueListItem50.DisplayText = "暂挂";
- this.QsuspendStatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem48,
- valueListItem49,
- valueListItem50});
- this.QsuspendStatus.Location = new System.Drawing.Point(1071, 6);
- this.QsuspendStatus.Margin = new System.Windows.Forms.Padding(4);
- this.QsuspendStatus.Name = "QsuspendStatus";
- this.QsuspendStatus.Size = new System.Drawing.Size(124, 24);
- this.QsuspendStatus.TabIndex = 19;
- //
- // Qstatus
- //
- this.Qstatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem1.DataValue = " ";
- valueListItem1.DisplayText = "全部";
- valueListItem2.DataValue = "1";
- valueListItem2.DisplayText = "未生效";
- valueListItem3.DataValue = "2";
- valueListItem3.DisplayText = "审批中";
- valueListItem7.DataValue = "3";
- valueListItem7.DisplayText = "已审批";
- valueListItem8.DataValue = "4";
- valueListItem8.DisplayText = "已生效";
- valueListItem9.DataValue = "9";
- valueListItem9.DisplayText = "已作废";
- this.Qstatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem1,
- valueListItem2,
- valueListItem3,
- valueListItem7,
- valueListItem8,
- valueListItem9});
- this.Qstatus.Location = new System.Drawing.Point(856, 6);
- this.Qstatus.Margin = new System.Windows.Forms.Padding(4);
- this.Qstatus.Name = "Qstatus";
- this.Qstatus.Size = new System.Drawing.Size(124, 24);
- this.Qstatus.TabIndex = 18;
- //
- // textBox3
- //
- this.textBox3.Location = new System.Drawing.Point(61, 6);
- this.textBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(123, 25);
- this.textBox3.TabIndex = 17;
- //
- // ultraLabel91
- //
- this.ultraLabel91.AutoSize = true;
- this.ultraLabel91.Location = new System.Drawing.Point(17, 9);
- this.ultraLabel91.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel91.Name = "ultraLabel91";
- this.ultraLabel91.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel91.TabIndex = 16;
- this.ultraLabel91.Text = "代码";
- //
- // ultraLabel89
- //
- this.ultraLabel89.AutoSize = true;
- this.ultraLabel89.Location = new System.Drawing.Point(379, 9);
- this.ultraLabel89.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel89.Name = "ultraLabel89";
- this.ultraLabel89.Size = new System.Drawing.Size(52, 19);
- this.ultraLabel89.TabIndex = 15;
- this.ultraLabel89.Text = "联系人";
- //
- // ultraLabel31
- //
- this.ultraLabel31.AutoSize = true;
- this.ultraLabel31.Location = new System.Drawing.Point(193, 9);
- this.ultraLabel31.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.ultraLabel31.Name = "ultraLabel31";
- this.ultraLabel31.Size = new System.Drawing.Size(36, 19);
- this.ultraLabel31.TabIndex = 14;
- this.ultraLabel31.Text = "名称";
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(441, 6);
- this.textBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(123, 25);
- this.textBox2.TabIndex = 13;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(236, 6);
- this.textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(123, 25);
- this.textBox1.TabIndex = 12;
- //
- // SupplierManagement
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.AutoSize = true;
- this.ClientSize = new System.Drawing.Size(1523, 732);
- this.Controls.Add(this.ultraPanel2);
- this.Controls.Add(this.ultraGroupBox3);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.Name = "SupplierManagement";
- this.Text = "供应商管理";
- this.Load += new System.EventHandler(this.SupplierManagement_Load);
- ((System.ComponentModel.ISupportInitialize)(this.craftImg)).EndInit();
- this.ultraTabPageControl1.ResumeLayout(false);
- this.ultraTabPageControl1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_balanceCode)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_account_cw)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_suppType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_postAdd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPCURRENCY)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCENATION)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPROVINCE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNATIONALITY)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_island)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_suppTaxRate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTITLE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTEL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTFAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTCELLPHONE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTEMAIL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLIERLINKMAN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPENDDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICENDDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXENDDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSTARTDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICSTARTDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXSTARTDATE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISSUBCOMPANY)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISMANUFACTURER)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISINTERNAL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPADDRESS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPRELATIONGRADE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPERGRADE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPITAL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOPERATESCOPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICNUM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCITY)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGISTRARNAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSHORTNAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ORGCODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCHARACTER)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPINDUSTRYTYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCODE)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- this.ultraTabPageControl3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txtPayType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BANKNAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BANKACCOUNT)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- this.ultraTabPageControl4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_arch_code)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certPath)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_local)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_end)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certNo_v)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_old)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_start)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ap_type)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ap_constraint)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTDESC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTIOFFICER)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CERTNO)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraTabPageControl2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.Combo_Rate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
- this.ultraPanel2.ClientArea.ResumeLayout(false);
- this.ultraPanel2.ResumeLayout(false);
- this.ultraPanel4.ClientArea.ResumeLayout(false);
- this.ultraPanel4.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
- this.ultraGroupBox4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.splitContainer3.Panel1.ResumeLayout(false);
- this.splitContainer3.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
- this.splitContainer3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.所属物料)).EndInit();
- this.所属物料.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.ultraGroupBox3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cop_suppType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.QsuspendStatus)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Qstatus)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.Misc.UltraPanel ultraPanel2;
- private Infragistics.Win.Misc.UltraPanel ultraPanel4;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPNAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPINDUSTRYTYPE;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPTAXID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCODE;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ORGCODE;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPOPERATESCOPE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCITY;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPREGISTRARNAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPSHORTNAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn18;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn20;
- private System.Data.DataColumn dataColumn21;
- private System.Data.DataColumn dataColumn22;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BANKACCOUNT;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTDESC;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTIOFFICER;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTNO;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private Infragistics.Win.Misc.UltraLabel ultraLabel35;
- private Infragistics.Win.Misc.UltraLabel ultraLabel36;
- private Infragistics.Win.Misc.UltraLabel ultraLabel34;
- private Infragistics.Win.Misc.UltraLabel ultraLabel33;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ap_type;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ap_constraint;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPLICNUM;
- private System.Data.DataSet dataSet2;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataSet dataSet3;
- private System.Data.DataTable dataTable3;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn38;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn39;
- private System.Data.DataColumn dataColumn40;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPREGCAPITAL;
- private Infragistics.Win.Misc.UltraLabel ultraLabel82;
- private Infragistics.Win.Misc.UltraLabel ultraLabel83;
- private Infragistics.Win.Misc.UltraLabel ultraLabel84;
- private Infragistics.Win.Misc.UltraLabel ultraLabel85;
- private Infragistics.Win.Misc.UltraLabel ultraLabel86;
- private Infragistics.Win.Misc.UltraLabel ultraLabel87;
- private Infragistics.Win.Misc.UltraLabel ultraLabel88;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.Misc.UltraLabel ultraLabel40;
- private Infragistics.Win.Misc.UltraLabel ultraLabel41;
- private Infragistics.Win.Misc.UltraLabel ultraLabel42;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.Misc.UltraLabel ultraLabel46;
- private System.Windows.Forms.DateTimePicker dateTimePicker1;
- private System.Windows.Forms.DateTimePicker dateTimePicker2;
- private System.Windows.Forms.DateTimePicker dateTimePicker3;
- private System.Windows.Forms.DateTimePicker dateTimePicker4;
- private System.Windows.Forms.DateTimePicker dateTimePicker5;
- private System.Windows.Forms.DateTimePicker dateTimePicker6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private Infragistics.Win.Misc.UltraLabel ultraLabel48;
- private Infragistics.Win.Misc.UltraLabel ultraLabel49;
- private Infragistics.Win.Misc.UltraLabel ultraLabel50;
- private Infragistics.Win.Misc.UltraLabel ultraLabel51;
- private Infragistics.Win.Misc.UltraLabel ultraLabel52;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel53;
- private Infragistics.Win.Misc.UltraLabel ultraLabel54;
- private Infragistics.Win.Misc.UltraLabel ultraLabel55;
- private Infragistics.Win.Misc.UltraLabel ultraLabel56;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel57;
- private Infragistics.Win.Misc.UltraLabel ultraLabel58;
- private Infragistics.Win.Misc.UltraLabel ultraLabel59;
- private Infragistics.Win.Misc.UltraLabel ultraLabel60;
- private Infragistics.Win.Misc.UltraLabel ultraLabel61;
- private Infragistics.Win.Misc.UltraLabel ultraLabel62;
- private Infragistics.Win.Misc.UltraLabel ultraLabel63;
- private Infragistics.Win.Misc.UltraLabel ultraLabel64;
- private Infragistics.Win.Misc.UltraLabel ultraLabel65;
- private Infragistics.Win.Misc.UltraLabel ultraLabel66;
- private Infragistics.Win.Misc.UltraLabel ultraLabel67;
- private System.Windows.Forms.DateTimePicker dateTimePicker7;
- private System.Windows.Forms.DateTimePicker dateTimePicker8;
- private System.Windows.Forms.DateTimePicker dateTimePicker9;
- private System.Windows.Forms.DateTimePicker dateTimePicker10;
- private System.Windows.Forms.DateTimePicker dateTimePicker11;
- private System.Windows.Forms.DateTimePicker dateTimePicker12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel68;
- private Infragistics.Win.Misc.UltraLabel ultraLabel69;
- private Infragistics.Win.Misc.UltraLabel ultraLabel70;
- private Infragistics.Win.Misc.UltraLabel ultraLabel71;
- private Infragistics.Win.Misc.UltraLabel ultraLabel72;
- private Infragistics.Win.Misc.UltraLabel ultraLabel73;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel74;
- private Infragistics.Win.Misc.UltraLabel ultraLabel75;
- private Infragistics.Win.Misc.UltraLabel ultraLabel76;
- private Infragistics.Win.Misc.UltraLabel ultraLabel77;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel78;
- private Infragistics.Win.Misc.UltraLabel ultraLabel79;
- private Infragistics.Win.Misc.UltraLabel ultraLabel80;
- private Infragistics.Win.Misc.UltraLabel ultraLabel81;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPADDRESS;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPRELATIONGRADE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPPERGRADE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISINTERNAL;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISMANUFACTURER;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISSUBCOMPANY;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Data.DataColumn dataColumn41;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPLICSTARTDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPTAXSTARTDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPENDDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPLICENDDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPTAXENDDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPSTARTDATE;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CERTVALID_start;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTTITLE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTTEL;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTFAX;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTCELLPHONE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTEMAIL;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPLIERLINKMAN;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_suppTaxRate;
- private System.Data.DataColumn dataColumn42;
- private Infragistics.Win.Misc.UltraLabel ultraLabel93;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPPROVINCE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPNATIONALITY;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_island;
- private System.Data.DataColumn dataColumn43;
- private System.Data.DataColumn dataColumn44;
- private System.Data.DataColumn dataColumn45;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPOFFICEPROVINCE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPOFFICEPROVINCENATION;
- private System.Data.DataColumn dataColumn46;
- private System.Data.DataColumn dataColumn47;
- private Infragistics.Win.Misc.UltraLabel ultraLabel94;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor craftImg;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certpath_old;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certNo_v;
- private System.Data.DataColumn dataColumn48;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel92;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor QsuspendStatus;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Qstatus;
- private System.Windows.Forms.TextBox textBox3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel91;
- private Infragistics.Win.Misc.UltraLabel ultraLabel89;
- private Infragistics.Win.Misc.UltraLabel ultraLabel31;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.TextBox textBox1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
- private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CERTVALID_end;
- private Infragistics.Win.Misc.UltraLabel ultraLabel95;
- private System.Data.DataColumn dataColumn49;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPREGCAPCURRENCY;
- private System.Data.DataColumn dataColumn50;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BANKNAME;
- private Infragistics.Win.Misc.UltraLabel ultraLabel29;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_postAdd;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCHARACTER;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_suppType;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cop_suppType;
- private Infragistics.Win.Misc.UltraLabel ultraLabel30;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn27;
- private System.Windows.Forms.SplitContainer splitContainer3;
- private Infragistics.Win.Misc.UltraGroupBox 所属物料;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private System.Data.DataSet dataSet4;
- private System.Data.DataTable dataTable4;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn51;
- private System.Data.DataColumn dataColumn52;
- private System.Data.DataColumn dataColumn53;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_account_cw;
- private Infragistics.Win.Misc.UltraLabel ultraLabel90;
- private System.Data.DataColumn dataColumn54;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certpath_local;
- private Infragistics.Win.Misc.UltraLabel ultraLabel96;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certPath;
- private Infragistics.Win.Misc.UltraButton btn_submitAppend;
- private System.Data.DataColumn dataColumn55;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_balanceCode;
- private Infragistics.Win.Misc.UltraLabel ultraLabel97;
- private System.Data.DataColumn dataColumn56;
- private Infragistics.Win.Misc.UltraLabel ultraLabel98;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txtPayType;
- private System.Data.DataColumn dataColumn57;
- private Infragistics.Win.Misc.UltraLabel ultraLabel99;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_arch_code;
- private System.Data.DataColumn dataColumn58;
- private Infragistics.Win.Misc.UltraButton upLoadFile;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel100;
- private System.Data.DataSet dataSet5;
- private System.Data.DataTable dataTable5;
- private System.Data.DataColumn dataColumn59;
- private System.Data.DataColumn dataColumn60;
- private Infragistics.Win.Misc.UltraLabel ultraLabel101;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Combo_Rate;
- private System.Data.DataColumn dataColumn61;
- private System.Windows.Forms.TextBox txt_Rate_Year;
- }
- }
|