SupplierManagement.Designer.cs 276 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689
  1. namespace Pur
  2. {
  3. partial class SupplierManagement
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("select");
  29. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton1 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  30. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton2 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  31. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton3 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  32. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton4 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  33. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton5 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  34. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton6 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  35. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  36. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  37. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  38. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  39. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  40. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  41. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  42. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  43. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  44. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton("insert");
  48. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton7 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  49. Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton dateButton8 = new Infragistics.Win.UltraWinSchedule.CalendarCombo.DateButton();
  50. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  51. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  52. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  53. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  54. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  55. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  56. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  57. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  58. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  59. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppName");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppShortName");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppStartDate", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Descending, false);
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppEndDate");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxStartDate");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxEndDate");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsInternal");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsManufacturer");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppIsSubCompany");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("supplierLinkMan");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactFax");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactTel");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactEmail");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactCellPhone");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppContactTitle");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppComment");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCreditRate");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("status");
  80. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("validflag");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createName");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateName");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suspendStatus");
  87. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPREGCAPITAL");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxRate");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppTaxId");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppLicNum");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orgCode");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPREGCAPCURRENCY");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPADDPOSTAL");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppType");
  96. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("account");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("accountcw");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("end");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("balanceCode");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
  102. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 1113366579);
  103. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup2 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup1", 1113366580);
  104. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup3 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup2", 1113366581);
  105. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup4 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup3", 1113366582);
  106. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup5 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup4", 1113366583);
  107. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup6 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("营业执照", 1113366584);
  108. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  121. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("rate");
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("rateYear");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
  124. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  132. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  134. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  136. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bankName");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bankAccount");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
  140. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
  141. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("payTypeName");
  142. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
  143. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  144. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  156. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemCode");
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark2");
  159. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  160. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  161. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  162. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  163. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  164. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  165. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  166. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  167. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  170. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  171. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  172. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certiConstraint");
  173. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certiOfficer");
  174. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certNo");
  175. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certType");
  176. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certValidStart");
  177. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certDesc");
  178. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("suppCode");
  179. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
  180. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certPath");
  181. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certPathOld");
  182. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certNoV");
  183. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("certValidEnd");
  184. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("archCode");
  185. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
  186. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  188. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  189. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  190. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  195. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  197. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  198. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  199. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  200. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  201. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  202. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  203. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  204. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  205. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  206. Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
  207. Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
  208. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  209. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  210. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  211. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  212. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  213. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  214. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  215. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SupplierManagement));
  216. this.craftImg = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  217. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  218. this.txt_balanceCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  219. this.ultraLabel97 = new Infragistics.Win.Misc.UltraLabel();
  220. this.txt_account_cw = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  221. this.ultraLabel90 = new Infragistics.Win.Misc.UltraLabel();
  222. this.txt_suppType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  223. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  224. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  225. this.txt_postAdd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  226. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  227. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  228. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  229. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  230. this.txt_SUPPREGCAPCURRENCY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  231. this.txt_SUPPOFFICEPROVINCENATION = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  232. this.txt_SUPPOFFICEPROVINCE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  233. this.txt_SUPPPROVINCE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  234. this.txt_SUPPNATIONALITY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  235. this.txt_island = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  236. this.ultraLabel93 = new Infragistics.Win.Misc.UltraLabel();
  237. this.txt_suppTaxRate = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  238. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  239. this.txt_SUPPCONTACTTITLE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  240. this.txt_SUPPCONTACTTEL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  241. this.txt_SUPPCONTACTFAX = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  242. this.txt_SUPPCONTACTCELLPHONE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  243. this.txt_SUPPCONTACTEMAIL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  244. this.txt_SUPPLIERLINKMAN = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  245. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  246. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  247. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  248. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  249. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  250. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  251. this.txt_SUPPENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  252. this.txt_SUPPLICENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  253. this.txt_SUPPTAXENDDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  254. this.txt_SUPPSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  255. this.txt_SUPPLICSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  256. this.txt_SUPPTAXSTARTDATE = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  257. this.txt_SUPPISSUBCOMPANY = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  258. this.txt_SUPPISMANUFACTURER = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  259. this.txt_SUPPISINTERNAL = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  260. this.txt_SUPPADDRESS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  261. this.txt_SUPPRELATIONGRADE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  262. this.txt_SUPPPERGRADE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  263. this.txt_SUPPREGCAPITAL = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  264. this.ultraLabel82 = new Infragistics.Win.Misc.UltraLabel();
  265. this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
  266. this.ultraLabel84 = new Infragistics.Win.Misc.UltraLabel();
  267. this.ultraLabel85 = new Infragistics.Win.Misc.UltraLabel();
  268. this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
  269. this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
  270. this.ultraLabel88 = new Infragistics.Win.Misc.UltraLabel();
  271. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  272. this.txt_SUPPOPERATESCOPE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  273. this.txt_SUPPLICNUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  274. this.txt_SUPPCITY = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  275. this.txt_SUPPREGISTRARNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  276. this.txt_SUPPSHORTNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  277. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  278. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  279. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  280. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  281. this.txt_ORGCODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  282. this.txt_SUPPCHARACTER = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  283. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  284. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  285. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  286. this.txt_SUPPNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  287. this.txt_SUPPINDUSTRYTYPE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  288. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  289. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  290. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  291. this.txt_SUPPTAXID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  292. this.txt_SUPPCODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  293. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  294. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  295. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  296. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  297. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  298. this.txtPayType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  299. this.ultraLabel98 = new Infragistics.Win.Misc.UltraLabel();
  300. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  301. this.txt_BANKNAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  302. this.txt_BANKACCOUNT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  303. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  304. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  305. this.upLoadFile = new Infragistics.Win.Misc.UltraButton();
  306. this.ultraLabel99 = new Infragistics.Win.Misc.UltraLabel();
  307. this.txt_arch_code = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  308. this.btn_submitAppend = new Infragistics.Win.Misc.UltraButton();
  309. this.txt_certPath = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  310. this.txt_certpath_local = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  311. this.ultraLabel96 = new Infragistics.Win.Misc.UltraLabel();
  312. this.txt_CERTVALID_end = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  313. this.ultraLabel95 = new Infragistics.Win.Misc.UltraLabel();
  314. this.txt_certNo_v = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  315. this.txt_certpath_old = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  316. this.ultraLabel94 = new Infragistics.Win.Misc.UltraLabel();
  317. this.txt_CERTVALID_start = new Infragistics.Win.UltraWinSchedule.UltraCalendarCombo();
  318. this.txt_ap_type = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  319. this.txt_ap_constraint = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  320. this.txt_CERTDESC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  321. this.txt_CERTIOFFICER = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  322. this.txt_CERTNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  323. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  324. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  325. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  326. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  327. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  328. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  329. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  330. this.txt_Rate_Year = new System.Windows.Forms.TextBox();
  331. this.ultraLabel101 = new Infragistics.Win.Misc.UltraLabel();
  332. this.Combo_Rate = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  333. this.ultraLabel100 = new Infragistics.Win.Misc.UltraLabel();
  334. this.dataSet1 = new System.Data.DataSet();
  335. this.dataTable1 = new System.Data.DataTable();
  336. this.dataColumn1 = new System.Data.DataColumn();
  337. this.dataColumn2 = new System.Data.DataColumn();
  338. this.dataColumn3 = new System.Data.DataColumn();
  339. this.dataColumn4 = new System.Data.DataColumn();
  340. this.dataColumn5 = new System.Data.DataColumn();
  341. this.dataColumn6 = new System.Data.DataColumn();
  342. this.dataColumn7 = new System.Data.DataColumn();
  343. this.dataColumn8 = new System.Data.DataColumn();
  344. this.dataColumn9 = new System.Data.DataColumn();
  345. this.dataColumn10 = new System.Data.DataColumn();
  346. this.dataColumn11 = new System.Data.DataColumn();
  347. this.dataColumn12 = new System.Data.DataColumn();
  348. this.dataColumn13 = new System.Data.DataColumn();
  349. this.dataColumn14 = new System.Data.DataColumn();
  350. this.dataColumn15 = new System.Data.DataColumn();
  351. this.dataColumn16 = new System.Data.DataColumn();
  352. this.dataColumn17 = new System.Data.DataColumn();
  353. this.dataColumn18 = new System.Data.DataColumn();
  354. this.dataColumn19 = new System.Data.DataColumn();
  355. this.dataColumn20 = new System.Data.DataColumn();
  356. this.dataColumn21 = new System.Data.DataColumn();
  357. this.dataColumn22 = new System.Data.DataColumn();
  358. this.dataColumn23 = new System.Data.DataColumn();
  359. this.dataColumn24 = new System.Data.DataColumn();
  360. this.dataColumn36 = new System.Data.DataColumn();
  361. this.dataColumn41 = new System.Data.DataColumn();
  362. this.dataColumn42 = new System.Data.DataColumn();
  363. this.dataColumn43 = new System.Data.DataColumn();
  364. this.dataColumn44 = new System.Data.DataColumn();
  365. this.dataColumn45 = new System.Data.DataColumn();
  366. this.dataColumn50 = new System.Data.DataColumn();
  367. this.dataColumn25 = new System.Data.DataColumn();
  368. this.dataColumn27 = new System.Data.DataColumn();
  369. this.dataColumn53 = new System.Data.DataColumn();
  370. this.dataColumn54 = new System.Data.DataColumn();
  371. this.dataColumn55 = new System.Data.DataColumn();
  372. this.dataColumn56 = new System.Data.DataColumn();
  373. this.dataSet2 = new System.Data.DataSet();
  374. this.dataTable2 = new System.Data.DataTable();
  375. this.dataColumn26 = new System.Data.DataColumn();
  376. this.dataColumn29 = new System.Data.DataColumn();
  377. this.dataColumn38 = new System.Data.DataColumn();
  378. this.dataColumn39 = new System.Data.DataColumn();
  379. this.dataColumn57 = new System.Data.DataColumn();
  380. this.dataSet4 = new System.Data.DataSet();
  381. this.dataTable4 = new System.Data.DataTable();
  382. this.dataColumn28 = new System.Data.DataColumn();
  383. this.dataColumn51 = new System.Data.DataColumn();
  384. this.dataColumn52 = new System.Data.DataColumn();
  385. this.dataSet3 = new System.Data.DataSet();
  386. this.dataTable3 = new System.Data.DataTable();
  387. this.dataColumn30 = new System.Data.DataColumn();
  388. this.dataColumn31 = new System.Data.DataColumn();
  389. this.dataColumn32 = new System.Data.DataColumn();
  390. this.dataColumn33 = new System.Data.DataColumn();
  391. this.dataColumn34 = new System.Data.DataColumn();
  392. this.dataColumn35 = new System.Data.DataColumn();
  393. this.dataColumn37 = new System.Data.DataColumn();
  394. this.dataColumn40 = new System.Data.DataColumn();
  395. this.dataColumn46 = new System.Data.DataColumn();
  396. this.dataColumn47 = new System.Data.DataColumn();
  397. this.dataColumn48 = new System.Data.DataColumn();
  398. this.dataColumn49 = new System.Data.DataColumn();
  399. this.dataColumn58 = new System.Data.DataColumn();
  400. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  401. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  402. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  403. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  404. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  405. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  406. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  407. this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
  408. this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
  409. this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
  410. this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
  411. this.dateTimePicker5 = new System.Windows.Forms.DateTimePicker();
  412. this.dateTimePicker6 = new System.Windows.Forms.DateTimePicker();
  413. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  414. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  415. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  416. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  417. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  418. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  419. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  420. this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  421. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  422. this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
  423. this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
  424. this.ultraLabel50 = new Infragistics.Win.Misc.UltraLabel();
  425. this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
  426. this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
  427. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  428. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  429. this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
  430. this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
  431. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  432. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  433. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  434. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  435. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  436. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  437. this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
  438. this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
  439. this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
  440. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  441. this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
  442. this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
  443. this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
  444. this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
  445. this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
  446. this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
  447. this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
  448. this.dateTimePicker7 = new System.Windows.Forms.DateTimePicker();
  449. this.dateTimePicker8 = new System.Windows.Forms.DateTimePicker();
  450. this.dateTimePicker9 = new System.Windows.Forms.DateTimePicker();
  451. this.dateTimePicker10 = new System.Windows.Forms.DateTimePicker();
  452. this.dateTimePicker11 = new System.Windows.Forms.DateTimePicker();
  453. this.dateTimePicker12 = new System.Windows.Forms.DateTimePicker();
  454. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  455. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  456. this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  457. this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  458. this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  459. this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  460. this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  461. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  462. this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
  463. this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
  464. this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
  465. this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
  466. this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
  467. this.ultraLabel73 = new Infragistics.Win.Misc.UltraLabel();
  468. this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  469. this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  470. this.ultraLabel74 = new Infragistics.Win.Misc.UltraLabel();
  471. this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
  472. this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
  473. this.ultraLabel77 = new Infragistics.Win.Misc.UltraLabel();
  474. this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  475. this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  476. this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  477. this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  478. this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
  479. this.ultraLabel79 = new Infragistics.Win.Misc.UltraLabel();
  480. this.ultraLabel80 = new Infragistics.Win.Misc.UltraLabel();
  481. this.ultraLabel81 = new Infragistics.Win.Misc.UltraLabel();
  482. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  483. this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
  484. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  485. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  486. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  487. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  488. this.splitContainer3 = new System.Windows.Forms.SplitContainer();
  489. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  490. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  491. this.dataSet5 = new System.Data.DataSet();
  492. this.dataTable5 = new System.Data.DataTable();
  493. this.dataColumn59 = new System.Data.DataColumn();
  494. this.dataColumn60 = new System.Data.DataColumn();
  495. this.dataColumn61 = new System.Data.DataColumn();
  496. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  497. this.所属物料 = new Infragistics.Win.Misc.UltraGroupBox();
  498. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  499. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  500. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  501. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  502. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  503. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  504. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  505. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  506. this.cop_suppType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  507. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  508. this.ultraLabel92 = new Infragistics.Win.Misc.UltraLabel();
  509. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  510. this.QsuspendStatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  511. this.Qstatus = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  512. this.textBox3 = new System.Windows.Forms.TextBox();
  513. this.ultraLabel91 = new Infragistics.Win.Misc.UltraLabel();
  514. this.ultraLabel89 = new Infragistics.Win.Misc.UltraLabel();
  515. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  516. this.textBox2 = new System.Windows.Forms.TextBox();
  517. this.textBox1 = new System.Windows.Forms.TextBox();
  518. ((System.ComponentModel.ISupportInitialize)(this.craftImg)).BeginInit();
  519. this.ultraTabPageControl1.SuspendLayout();
  520. ((System.ComponentModel.ISupportInitialize)(this.txt_balanceCode)).BeginInit();
  521. ((System.ComponentModel.ISupportInitialize)(this.txt_account_cw)).BeginInit();
  522. ((System.ComponentModel.ISupportInitialize)(this.txt_suppType)).BeginInit();
  523. ((System.ComponentModel.ISupportInitialize)(this.txt_postAdd)).BeginInit();
  524. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPCURRENCY)).BeginInit();
  525. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCENATION)).BeginInit();
  526. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCE)).BeginInit();
  527. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPROVINCE)).BeginInit();
  528. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNATIONALITY)).BeginInit();
  529. ((System.ComponentModel.ISupportInitialize)(this.txt_island)).BeginInit();
  530. ((System.ComponentModel.ISupportInitialize)(this.txt_suppTaxRate)).BeginInit();
  531. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTITLE)).BeginInit();
  532. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTEL)).BeginInit();
  533. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTFAX)).BeginInit();
  534. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTCELLPHONE)).BeginInit();
  535. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTEMAIL)).BeginInit();
  536. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLIERLINKMAN)).BeginInit();
  537. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPENDDATE)).BeginInit();
  538. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICENDDATE)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXENDDATE)).BeginInit();
  540. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSTARTDATE)).BeginInit();
  541. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICSTARTDATE)).BeginInit();
  542. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXSTARTDATE)).BeginInit();
  543. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISSUBCOMPANY)).BeginInit();
  544. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISMANUFACTURER)).BeginInit();
  545. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISINTERNAL)).BeginInit();
  546. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPADDRESS)).BeginInit();
  547. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPRELATIONGRADE)).BeginInit();
  548. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPERGRADE)).BeginInit();
  549. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPITAL)).BeginInit();
  550. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOPERATESCOPE)).BeginInit();
  551. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICNUM)).BeginInit();
  552. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCITY)).BeginInit();
  553. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGISTRARNAME)).BeginInit();
  554. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSHORTNAME)).BeginInit();
  555. ((System.ComponentModel.ISupportInitialize)(this.txt_ORGCODE)).BeginInit();
  556. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCHARACTER)).BeginInit();
  557. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNAME)).BeginInit();
  558. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPINDUSTRYTYPE)).BeginInit();
  559. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXID)).BeginInit();
  560. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCODE)).BeginInit();
  561. this.ultraTabPageControl3.SuspendLayout();
  562. ((System.ComponentModel.ISupportInitialize)(this.txtPayType)).BeginInit();
  563. ((System.ComponentModel.ISupportInitialize)(this.txt_BANKNAME)).BeginInit();
  564. ((System.ComponentModel.ISupportInitialize)(this.txt_BANKACCOUNT)).BeginInit();
  565. this.ultraTabPageControl4.SuspendLayout();
  566. ((System.ComponentModel.ISupportInitialize)(this.txt_arch_code)).BeginInit();
  567. ((System.ComponentModel.ISupportInitialize)(this.txt_certPath)).BeginInit();
  568. ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_local)).BeginInit();
  569. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_end)).BeginInit();
  570. ((System.ComponentModel.ISupportInitialize)(this.txt_certNo_v)).BeginInit();
  571. ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_old)).BeginInit();
  572. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_start)).BeginInit();
  573. ((System.ComponentModel.ISupportInitialize)(this.txt_ap_type)).BeginInit();
  574. ((System.ComponentModel.ISupportInitialize)(this.txt_ap_constraint)).BeginInit();
  575. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTDESC)).BeginInit();
  576. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTIOFFICER)).BeginInit();
  577. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTNO)).BeginInit();
  578. this.ultraTabPageControl2.SuspendLayout();
  579. ((System.ComponentModel.ISupportInitialize)(this.Combo_Rate)).BeginInit();
  580. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  581. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  582. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  583. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  584. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
  585. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  586. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  587. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  588. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  589. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  590. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  591. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  592. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  593. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  594. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  595. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
  596. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  597. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  598. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  599. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  600. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  601. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  602. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  603. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  604. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
  605. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
  606. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
  607. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
  608. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
  609. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  610. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
  611. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
  612. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
  613. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
  614. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
  615. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
  616. this.ultraPanel2.ClientArea.SuspendLayout();
  617. this.ultraPanel2.SuspendLayout();
  618. this.ultraPanel4.ClientArea.SuspendLayout();
  619. this.ultraPanel4.SuspendLayout();
  620. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  621. this.splitContainer2.Panel1.SuspendLayout();
  622. this.splitContainer2.Panel2.SuspendLayout();
  623. this.splitContainer2.SuspendLayout();
  624. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  625. this.ultraGroupBox4.SuspendLayout();
  626. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  627. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  628. this.splitContainer1.Panel1.SuspendLayout();
  629. this.splitContainer1.Panel2.SuspendLayout();
  630. this.splitContainer1.SuspendLayout();
  631. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
  632. this.splitContainer3.Panel1.SuspendLayout();
  633. this.splitContainer3.Panel2.SuspendLayout();
  634. this.splitContainer3.SuspendLayout();
  635. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  636. this.ultraGroupBox1.SuspendLayout();
  637. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  638. ((System.ComponentModel.ISupportInitialize)(this.dataSet5)).BeginInit();
  639. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  640. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  641. ((System.ComponentModel.ISupportInitialize)(this.所属物料)).BeginInit();
  642. this.所属物料.SuspendLayout();
  643. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  644. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  645. this.ultraGroupBox2.SuspendLayout();
  646. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  647. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  648. this.ultraExpandableGroupBox1.SuspendLayout();
  649. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  650. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  651. this.ultraTabControl1.SuspendLayout();
  652. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  653. this.ultraGroupBox3.SuspendLayout();
  654. ((System.ComponentModel.ISupportInitialize)(this.cop_suppType)).BeginInit();
  655. ((System.ComponentModel.ISupportInitialize)(this.QsuspendStatus)).BeginInit();
  656. ((System.ComponentModel.ISupportInitialize)(this.Qstatus)).BeginInit();
  657. this.SuspendLayout();
  658. //
  659. // craftImg
  660. //
  661. editorButton1.Key = "select";
  662. editorButton1.Text = "查看";
  663. this.craftImg.ButtonsRight.Add(editorButton1);
  664. this.craftImg.Location = new System.Drawing.Point(1279, 88);
  665. this.craftImg.Margin = new System.Windows.Forms.Padding(4);
  666. this.craftImg.Name = "craftImg";
  667. this.craftImg.Size = new System.Drawing.Size(223, 24);
  668. this.craftImg.TabIndex = 68;
  669. this.craftImg.Visible = false;
  670. this.craftImg.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.craftImg_EditorButtonClick);
  671. //
  672. // ultraTabPageControl1
  673. //
  674. this.ultraTabPageControl1.Controls.Add(this.txt_balanceCode);
  675. this.ultraTabPageControl1.Controls.Add(this.ultraLabel97);
  676. this.ultraTabPageControl1.Controls.Add(this.txt_account_cw);
  677. this.ultraTabPageControl1.Controls.Add(this.ultraLabel90);
  678. this.ultraTabPageControl1.Controls.Add(this.txt_suppType);
  679. this.ultraTabPageControl1.Controls.Add(this.ultraLabel18);
  680. this.ultraTabPageControl1.Controls.Add(this.ultraLabel13);
  681. this.ultraTabPageControl1.Controls.Add(this.txt_postAdd);
  682. this.ultraTabPageControl1.Controls.Add(this.ultraLabel6);
  683. this.ultraTabPageControl1.Controls.Add(this.ultraLabel29);
  684. this.ultraTabPageControl1.Controls.Add(this.ultraLabel12);
  685. this.ultraTabPageControl1.Controls.Add(this.ultraLabel28);
  686. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGCAPCURRENCY);
  687. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOFFICEPROVINCENATION);
  688. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOFFICEPROVINCE);
  689. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPPROVINCE);
  690. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPNATIONALITY);
  691. this.ultraTabPageControl1.Controls.Add(this.txt_island);
  692. this.ultraTabPageControl1.Controls.Add(this.ultraLabel93);
  693. this.ultraTabPageControl1.Controls.Add(this.txt_suppTaxRate);
  694. this.ultraTabPageControl1.Controls.Add(this.ultraLabel11);
  695. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTTITLE);
  696. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTTEL);
  697. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTFAX);
  698. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTCELLPHONE);
  699. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCONTACTEMAIL);
  700. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLIERLINKMAN);
  701. this.ultraTabPageControl1.Controls.Add(this.ultraLabel26);
  702. this.ultraTabPageControl1.Controls.Add(this.ultraLabel25);
  703. this.ultraTabPageControl1.Controls.Add(this.ultraLabel24);
  704. this.ultraTabPageControl1.Controls.Add(this.ultraLabel23);
  705. this.ultraTabPageControl1.Controls.Add(this.ultraLabel22);
  706. this.ultraTabPageControl1.Controls.Add(this.ultraLabel21);
  707. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPENDDATE);
  708. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICENDDATE);
  709. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXENDDATE);
  710. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPSTARTDATE);
  711. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICSTARTDATE);
  712. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXSTARTDATE);
  713. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISSUBCOMPANY);
  714. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISMANUFACTURER);
  715. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPISINTERNAL);
  716. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPADDRESS);
  717. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPRELATIONGRADE);
  718. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPPERGRADE);
  719. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGCAPITAL);
  720. this.ultraTabPageControl1.Controls.Add(this.ultraLabel82);
  721. this.ultraTabPageControl1.Controls.Add(this.ultraLabel83);
  722. this.ultraTabPageControl1.Controls.Add(this.ultraLabel84);
  723. this.ultraTabPageControl1.Controls.Add(this.ultraLabel85);
  724. this.ultraTabPageControl1.Controls.Add(this.ultraLabel86);
  725. this.ultraTabPageControl1.Controls.Add(this.ultraLabel87);
  726. this.ultraTabPageControl1.Controls.Add(this.ultraLabel88);
  727. this.ultraTabPageControl1.Controls.Add(this.ultraLabel39);
  728. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPOPERATESCOPE);
  729. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPLICNUM);
  730. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCITY);
  731. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPREGISTRARNAME);
  732. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPSHORTNAME);
  733. this.ultraTabPageControl1.Controls.Add(this.ultraLabel20);
  734. this.ultraTabPageControl1.Controls.Add(this.ultraLabel19);
  735. this.ultraTabPageControl1.Controls.Add(this.ultraLabel16);
  736. this.ultraTabPageControl1.Controls.Add(this.ultraLabel15);
  737. this.ultraTabPageControl1.Controls.Add(this.txt_ORGCODE);
  738. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCHARACTER);
  739. this.ultraTabPageControl1.Controls.Add(this.ultraLabel14);
  740. this.ultraTabPageControl1.Controls.Add(this.ultraLabel10);
  741. this.ultraTabPageControl1.Controls.Add(this.ultraLabel9);
  742. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPNAME);
  743. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPINDUSTRYTYPE);
  744. this.ultraTabPageControl1.Controls.Add(this.ultraLabel8);
  745. this.ultraTabPageControl1.Controls.Add(this.ultraLabel7);
  746. this.ultraTabPageControl1.Controls.Add(this.ultraLabel5);
  747. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPTAXID);
  748. this.ultraTabPageControl1.Controls.Add(this.txt_SUPPCODE);
  749. this.ultraTabPageControl1.Controls.Add(this.ultraLabel4);
  750. this.ultraTabPageControl1.Controls.Add(this.ultraLabel3);
  751. this.ultraTabPageControl1.Controls.Add(this.ultraLabel2);
  752. this.ultraTabPageControl1.Controls.Add(this.ultraLabel1);
  753. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  754. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  755. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  756. this.ultraTabPageControl1.Size = new System.Drawing.Size(1515, 295);
  757. //
  758. // txt_balanceCode
  759. //
  760. this.txt_balanceCode.Location = new System.Drawing.Point(140, 219);
  761. this.txt_balanceCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  762. this.txt_balanceCode.Name = "txt_balanceCode";
  763. this.txt_balanceCode.Size = new System.Drawing.Size(245, 24);
  764. this.txt_balanceCode.TabIndex = 80;
  765. //
  766. // ultraLabel97
  767. //
  768. this.ultraLabel97.AutoSize = true;
  769. this.ultraLabel97.Location = new System.Drawing.Point(63, 222);
  770. this.ultraLabel97.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  771. this.ultraLabel97.Name = "ultraLabel97";
  772. this.ultraLabel97.Size = new System.Drawing.Size(67, 19);
  773. this.ultraLabel97.TabIndex = 79;
  774. this.ultraLabel97.Text = "结算代码";
  775. //
  776. // txt_account_cw
  777. //
  778. this.txt_account_cw.Location = new System.Drawing.Point(140, 190);
  779. this.txt_account_cw.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  780. this.txt_account_cw.Name = "txt_account_cw";
  781. this.txt_account_cw.Size = new System.Drawing.Size(245, 24);
  782. this.txt_account_cw.TabIndex = 78;
  783. //
  784. // ultraLabel90
  785. //
  786. this.ultraLabel90.AutoSize = true;
  787. this.ultraLabel90.Location = new System.Drawing.Point(63, 194);
  788. this.ultraLabel90.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  789. this.ultraLabel90.Name = "ultraLabel90";
  790. this.ultraLabel90.Size = new System.Drawing.Size(67, 19);
  791. this.ultraLabel90.TabIndex = 77;
  792. this.ultraLabel90.Text = "财务账号";
  793. //
  794. // txt_suppType
  795. //
  796. this.txt_suppType.Location = new System.Drawing.Point(140, 159);
  797. this.txt_suppType.Margin = new System.Windows.Forms.Padding(4);
  798. this.txt_suppType.Name = "txt_suppType";
  799. this.txt_suppType.Size = new System.Drawing.Size(245, 24);
  800. this.txt_suppType.TabIndex = 76;
  801. //
  802. // ultraLabel18
  803. //
  804. this.ultraLabel18.AutoSize = true;
  805. this.ultraLabel18.Location = new System.Drawing.Point(64, 166);
  806. this.ultraLabel18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  807. this.ultraLabel18.Name = "ultraLabel18";
  808. this.ultraLabel18.Size = new System.Drawing.Size(67, 19);
  809. this.ultraLabel18.TabIndex = 74;
  810. this.ultraLabel18.Text = "供方类型";
  811. //
  812. // ultraLabel13
  813. //
  814. this.ultraLabel13.AutoSize = true;
  815. this.ultraLabel13.Location = new System.Drawing.Point(64, 255);
  816. this.ultraLabel13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  817. this.ultraLabel13.Name = "ultraLabel13";
  818. this.ultraLabel13.Size = new System.Drawing.Size(67, 19);
  819. this.ultraLabel13.TabIndex = 73;
  820. this.ultraLabel13.Text = "邮 编";
  821. //
  822. // txt_postAdd
  823. //
  824. this.txt_postAdd.Location = new System.Drawing.Point(140, 251);
  825. this.txt_postAdd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  826. this.txt_postAdd.Name = "txt_postAdd";
  827. this.txt_postAdd.Size = new System.Drawing.Size(245, 24);
  828. this.txt_postAdd.TabIndex = 72;
  829. //
  830. // ultraLabel6
  831. //
  832. this.ultraLabel6.AutoSize = true;
  833. this.ultraLabel6.Location = new System.Drawing.Point(1347, 168);
  834. this.ultraLabel6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  835. this.ultraLabel6.Name = "ultraLabel6";
  836. this.ultraLabel6.Size = new System.Drawing.Size(21, 19);
  837. this.ultraLabel6.TabIndex = 71;
  838. this.ultraLabel6.Text = "至";
  839. this.ultraLabel6.Visible = false;
  840. //
  841. // ultraLabel29
  842. //
  843. this.ultraLabel29.AutoSize = true;
  844. this.ultraLabel29.Location = new System.Drawing.Point(32, 132);
  845. this.ultraLabel29.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  846. this.ultraLabel29.Name = "ultraLabel29";
  847. this.ultraLabel29.Size = new System.Drawing.Size(98, 19);
  848. this.ultraLabel29.TabIndex = 70;
  849. this.ultraLabel29.Text = "执照有效日期";
  850. //
  851. // ultraLabel12
  852. //
  853. this.ultraLabel12.AutoSize = true;
  854. this.ultraLabel12.Location = new System.Drawing.Point(248, 136);
  855. this.ultraLabel12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  856. this.ultraLabel12.Name = "ultraLabel12";
  857. this.ultraLabel12.Size = new System.Drawing.Size(21, 19);
  858. this.ultraLabel12.TabIndex = 69;
  859. this.ultraLabel12.Text = "至";
  860. //
  861. // ultraLabel28
  862. //
  863. this.ultraLabel28.AutoSize = true;
  864. this.ultraLabel28.Location = new System.Drawing.Point(1355, 258);
  865. this.ultraLabel28.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  866. this.ultraLabel28.Name = "ultraLabel28";
  867. this.ultraLabel28.Size = new System.Drawing.Size(21, 19);
  868. this.ultraLabel28.TabIndex = 68;
  869. this.ultraLabel28.Text = "至";
  870. this.ultraLabel28.Visible = false;
  871. //
  872. // txt_SUPPREGCAPCURRENCY
  873. //
  874. this.txt_SUPPREGCAPCURRENCY.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  875. this.txt_SUPPREGCAPCURRENCY.Location = new System.Drawing.Point(524, 131);
  876. this.txt_SUPPREGCAPCURRENCY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  877. this.txt_SUPPREGCAPCURRENCY.Name = "txt_SUPPREGCAPCURRENCY";
  878. this.txt_SUPPREGCAPCURRENCY.Size = new System.Drawing.Size(89, 24);
  879. this.txt_SUPPREGCAPCURRENCY.TabIndex = 67;
  880. //
  881. // txt_SUPPOFFICEPROVINCENATION
  882. //
  883. this.txt_SUPPOFFICEPROVINCENATION.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  884. this.txt_SUPPOFFICEPROVINCENATION.Location = new System.Drawing.Point(1201, 11);
  885. this.txt_SUPPOFFICEPROVINCENATION.Margin = new System.Windows.Forms.Padding(4);
  886. this.txt_SUPPOFFICEPROVINCENATION.Name = "txt_SUPPOFFICEPROVINCENATION";
  887. this.txt_SUPPOFFICEPROVINCENATION.Size = new System.Drawing.Size(89, 24);
  888. this.txt_SUPPOFFICEPROVINCENATION.TabIndex = 66;
  889. this.txt_SUPPOFFICEPROVINCENATION.SelectionChanged += new System.EventHandler(this.txt_SUPPOFFICEPROVINCENATION_SelectionChanged);
  890. //
  891. // txt_SUPPOFFICEPROVINCE
  892. //
  893. this.txt_SUPPOFFICEPROVINCE.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  894. this.txt_SUPPOFFICEPROVINCE.Location = new System.Drawing.Point(1296, 11);
  895. this.txt_SUPPOFFICEPROVINCE.Margin = new System.Windows.Forms.Padding(4);
  896. this.txt_SUPPOFFICEPROVINCE.Name = "txt_SUPPOFFICEPROVINCE";
  897. this.txt_SUPPOFFICEPROVINCE.Size = new System.Drawing.Size(105, 24);
  898. this.txt_SUPPOFFICEPROVINCE.TabIndex = 65;
  899. //
  900. // txt_SUPPPROVINCE
  901. //
  902. this.txt_SUPPPROVINCE.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  903. this.txt_SUPPPROVINCE.Location = new System.Drawing.Point(869, 41);
  904. this.txt_SUPPPROVINCE.Margin = new System.Windows.Forms.Padding(4);
  905. this.txt_SUPPPROVINCE.Name = "txt_SUPPPROVINCE";
  906. this.txt_SUPPPROVINCE.Size = new System.Drawing.Size(89, 24);
  907. this.txt_SUPPPROVINCE.TabIndex = 64;
  908. this.txt_SUPPPROVINCE.SelectionChanged += new System.EventHandler(this.txt_SUPPPROVINCE_SelectionChanged);
  909. //
  910. // txt_SUPPNATIONALITY
  911. //
  912. this.txt_SUPPNATIONALITY.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  913. this.txt_SUPPNATIONALITY.Location = new System.Drawing.Point(964, 11);
  914. this.txt_SUPPNATIONALITY.Margin = new System.Windows.Forms.Padding(4);
  915. this.txt_SUPPNATIONALITY.Name = "txt_SUPPNATIONALITY";
  916. this.txt_SUPPNATIONALITY.Size = new System.Drawing.Size(132, 24);
  917. this.txt_SUPPNATIONALITY.TabIndex = 63;
  918. this.txt_SUPPNATIONALITY.SelectionChanged += new System.EventHandler(this.txt_SUPPNATIONALITY_SelectionChanged);
  919. //
  920. // txt_island
  921. //
  922. this.txt_island.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend;
  923. this.txt_island.Location = new System.Drawing.Point(869, 11);
  924. this.txt_island.Margin = new System.Windows.Forms.Padding(4);
  925. this.txt_island.Name = "txt_island";
  926. this.txt_island.Size = new System.Drawing.Size(89, 24);
  927. this.txt_island.TabIndex = 12;
  928. this.txt_island.SelectionChanged += new System.EventHandler(this.txt_island_SelectionChanged);
  929. //
  930. // ultraLabel93
  931. //
  932. this.ultraLabel93.AutoSize = true;
  933. this.ultraLabel93.Location = new System.Drawing.Point(792, 74);
  934. this.ultraLabel93.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  935. this.ultraLabel93.Name = "ultraLabel93";
  936. this.ultraLabel93.Size = new System.Drawing.Size(67, 19);
  937. this.ultraLabel93.TabIndex = 62;
  938. this.ultraLabel93.Text = "详细地址";
  939. //
  940. // txt_suppTaxRate
  941. //
  942. this.txt_suppTaxRate.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  943. this.txt_suppTaxRate.Location = new System.Drawing.Point(663, 131);
  944. this.txt_suppTaxRate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  945. this.txt_suppTaxRate.Name = "txt_suppTaxRate";
  946. this.txt_suppTaxRate.Size = new System.Drawing.Size(93, 24);
  947. this.txt_suppTaxRate.TabIndex = 61;
  948. //
  949. // ultraLabel11
  950. //
  951. this.ultraLabel11.AutoSize = true;
  952. this.ultraLabel11.Location = new System.Drawing.Point(619, 135);
  953. this.ultraLabel11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  954. this.ultraLabel11.Name = "ultraLabel11";
  955. this.ultraLabel11.Size = new System.Drawing.Size(36, 19);
  956. this.ultraLabel11.TabIndex = 60;
  957. this.ultraLabel11.Text = "税率";
  958. //
  959. // txt_SUPPCONTACTTITLE
  960. //
  961. this.txt_SUPPCONTACTTITLE.Location = new System.Drawing.Point(869, 251);
  962. this.txt_SUPPCONTACTTITLE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  963. this.txt_SUPPCONTACTTITLE.Name = "txt_SUPPCONTACTTITLE";
  964. this.txt_SUPPCONTACTTITLE.Size = new System.Drawing.Size(227, 24);
  965. this.txt_SUPPCONTACTTITLE.TabIndex = 34;
  966. //
  967. // txt_SUPPCONTACTTEL
  968. //
  969. this.txt_SUPPCONTACTTEL.Location = new System.Drawing.Point(869, 161);
  970. this.txt_SUPPCONTACTTEL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  971. this.txt_SUPPCONTACTTEL.Name = "txt_SUPPCONTACTTEL";
  972. this.txt_SUPPCONTACTTEL.Size = new System.Drawing.Size(227, 24);
  973. this.txt_SUPPCONTACTTEL.TabIndex = 31;
  974. //
  975. // txt_SUPPCONTACTFAX
  976. //
  977. this.txt_SUPPCONTACTFAX.Location = new System.Drawing.Point(869, 221);
  978. this.txt_SUPPCONTACTFAX.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  979. this.txt_SUPPCONTACTFAX.Name = "txt_SUPPCONTACTFAX";
  980. this.txt_SUPPCONTACTFAX.Size = new System.Drawing.Size(227, 24);
  981. this.txt_SUPPCONTACTFAX.TabIndex = 33;
  982. //
  983. // txt_SUPPCONTACTCELLPHONE
  984. //
  985. this.txt_SUPPCONTACTCELLPHONE.Location = new System.Drawing.Point(869, 131);
  986. this.txt_SUPPCONTACTCELLPHONE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  987. this.txt_SUPPCONTACTCELLPHONE.Name = "txt_SUPPCONTACTCELLPHONE";
  988. this.txt_SUPPCONTACTCELLPHONE.Size = new System.Drawing.Size(227, 24);
  989. this.txt_SUPPCONTACTCELLPHONE.TabIndex = 30;
  990. //
  991. // txt_SUPPCONTACTEMAIL
  992. //
  993. this.txt_SUPPCONTACTEMAIL.Location = new System.Drawing.Point(869, 191);
  994. this.txt_SUPPCONTACTEMAIL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  995. this.txt_SUPPCONTACTEMAIL.Name = "txt_SUPPCONTACTEMAIL";
  996. this.txt_SUPPCONTACTEMAIL.Size = new System.Drawing.Size(227, 24);
  997. this.txt_SUPPCONTACTEMAIL.TabIndex = 32;
  998. //
  999. // txt_SUPPLIERLINKMAN
  1000. //
  1001. this.txt_SUPPLIERLINKMAN.Location = new System.Drawing.Point(869, 101);
  1002. this.txt_SUPPLIERLINKMAN.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1003. this.txt_SUPPLIERLINKMAN.Name = "txt_SUPPLIERLINKMAN";
  1004. this.txt_SUPPLIERLINKMAN.Size = new System.Drawing.Size(227, 24);
  1005. this.txt_SUPPLIERLINKMAN.TabIndex = 29;
  1006. //
  1007. // ultraLabel26
  1008. //
  1009. this.ultraLabel26.AutoSize = true;
  1010. this.ultraLabel26.Location = new System.Drawing.Point(776, 254);
  1011. this.ultraLabel26.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1012. this.ultraLabel26.Name = "ultraLabel26";
  1013. this.ultraLabel26.Size = new System.Drawing.Size(83, 19);
  1014. this.ultraLabel26.TabIndex = 58;
  1015. this.ultraLabel26.Text = "联系人职务";
  1016. //
  1017. // ultraLabel25
  1018. //
  1019. this.ultraLabel25.AutoSize = true;
  1020. this.ultraLabel25.Location = new System.Drawing.Point(776, 164);
  1021. this.ultraLabel25.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1022. this.ultraLabel25.Name = "ultraLabel25";
  1023. this.ultraLabel25.Size = new System.Drawing.Size(83, 19);
  1024. this.ultraLabel25.TabIndex = 55;
  1025. this.ultraLabel25.Text = "联系人电话";
  1026. //
  1027. // ultraLabel24
  1028. //
  1029. this.ultraLabel24.AutoSize = true;
  1030. this.ultraLabel24.Location = new System.Drawing.Point(776, 224);
  1031. this.ultraLabel24.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1032. this.ultraLabel24.Name = "ultraLabel24";
  1033. this.ultraLabel24.Size = new System.Drawing.Size(83, 19);
  1034. this.ultraLabel24.TabIndex = 53;
  1035. this.ultraLabel24.Text = "联系人传真";
  1036. //
  1037. // ultraLabel23
  1038. //
  1039. this.ultraLabel23.AutoSize = true;
  1040. this.ultraLabel23.Location = new System.Drawing.Point(776, 134);
  1041. this.ultraLabel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1042. this.ultraLabel23.Name = "ultraLabel23";
  1043. this.ultraLabel23.Size = new System.Drawing.Size(83, 19);
  1044. this.ultraLabel23.TabIndex = 51;
  1045. this.ultraLabel23.Text = "联系人手机";
  1046. //
  1047. // ultraLabel22
  1048. //
  1049. this.ultraLabel22.AutoSize = true;
  1050. this.ultraLabel22.Location = new System.Drawing.Point(768, 194);
  1051. this.ultraLabel22.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1052. this.ultraLabel22.Name = "ultraLabel22";
  1053. this.ultraLabel22.Size = new System.Drawing.Size(90, 19);
  1054. this.ultraLabel22.TabIndex = 50;
  1055. this.ultraLabel22.Text = "联系人EMAIL";
  1056. //
  1057. // ultraLabel21
  1058. //
  1059. this.ultraLabel21.AutoSize = true;
  1060. this.ultraLabel21.Location = new System.Drawing.Point(776, 104);
  1061. this.ultraLabel21.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1062. this.ultraLabel21.Name = "ultraLabel21";
  1063. this.ultraLabel21.Size = new System.Drawing.Size(83, 19);
  1064. this.ultraLabel21.TabIndex = 48;
  1065. this.ultraLabel21.Text = "联系人名称";
  1066. //
  1067. // txt_SUPPENDDATE
  1068. //
  1069. this.txt_SUPPENDDATE.DateButtons.Add(dateButton1);
  1070. this.txt_SUPPENDDATE.Format = "yyyy/MM/dd";
  1071. this.txt_SUPPENDDATE.Location = new System.Drawing.Point(1372, 164);
  1072. this.txt_SUPPENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1073. this.txt_SUPPENDDATE.Name = "txt_SUPPENDDATE";
  1074. this.txt_SUPPENDDATE.NonAutoSizeHeight = 25;
  1075. this.txt_SUPPENDDATE.ReadOnly = true;
  1076. this.txt_SUPPENDDATE.Size = new System.Drawing.Size(111, 25);
  1077. this.txt_SUPPENDDATE.TabIndex = 19;
  1078. this.txt_SUPPENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1079. this.txt_SUPPENDDATE.Visible = false;
  1080. this.txt_SUPPENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
  1081. //
  1082. // txt_SUPPLICENDDATE
  1083. //
  1084. this.txt_SUPPLICENDDATE.DateButtons.Add(dateButton2);
  1085. this.txt_SUPPLICENDDATE.Format = "yyyy/MM/dd";
  1086. this.txt_SUPPLICENDDATE.Location = new System.Drawing.Point(273, 129);
  1087. this.txt_SUPPLICENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1088. this.txt_SUPPLICENDDATE.Name = "txt_SUPPLICENDDATE";
  1089. this.txt_SUPPLICENDDATE.NonAutoSizeHeight = 25;
  1090. this.txt_SUPPLICENDDATE.ReadOnly = true;
  1091. this.txt_SUPPLICENDDATE.Size = new System.Drawing.Size(113, 25);
  1092. this.txt_SUPPLICENDDATE.TabIndex = 22;
  1093. this.txt_SUPPLICENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1094. this.txt_SUPPLICENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
  1095. //
  1096. // txt_SUPPTAXENDDATE
  1097. //
  1098. this.txt_SUPPTAXENDDATE.DateButtons.Add(dateButton3);
  1099. this.txt_SUPPTAXENDDATE.Format = "yyyy/MM/dd";
  1100. this.txt_SUPPTAXENDDATE.Location = new System.Drawing.Point(1369, 254);
  1101. this.txt_SUPPTAXENDDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1102. this.txt_SUPPTAXENDDATE.Name = "txt_SUPPTAXENDDATE";
  1103. this.txt_SUPPTAXENDDATE.NonAutoSizeHeight = 25;
  1104. this.txt_SUPPTAXENDDATE.ReadOnly = true;
  1105. this.txt_SUPPTAXENDDATE.Size = new System.Drawing.Size(113, 25);
  1106. this.txt_SUPPTAXENDDATE.TabIndex = 26;
  1107. this.txt_SUPPTAXENDDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1108. this.txt_SUPPTAXENDDATE.Visible = false;
  1109. this.txt_SUPPTAXENDDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
  1110. //
  1111. // txt_SUPPSTARTDATE
  1112. //
  1113. this.txt_SUPPSTARTDATE.DateButtons.Add(dateButton4);
  1114. this.txt_SUPPSTARTDATE.Format = "yyyy/MM/dd";
  1115. this.txt_SUPPSTARTDATE.Location = new System.Drawing.Point(1236, 164);
  1116. this.txt_SUPPSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1117. this.txt_SUPPSTARTDATE.Name = "txt_SUPPSTARTDATE";
  1118. this.txt_SUPPSTARTDATE.NonAutoSizeHeight = 25;
  1119. this.txt_SUPPSTARTDATE.ReadOnly = true;
  1120. this.txt_SUPPSTARTDATE.Size = new System.Drawing.Size(107, 25);
  1121. this.txt_SUPPSTARTDATE.TabIndex = 18;
  1122. this.txt_SUPPSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1123. this.txt_SUPPSTARTDATE.Visible = false;
  1124. this.txt_SUPPSTARTDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
  1125. //
  1126. // txt_SUPPLICSTARTDATE
  1127. //
  1128. this.txt_SUPPLICSTARTDATE.DateButtons.Add(dateButton5);
  1129. this.txt_SUPPLICSTARTDATE.Format = "yyyy/MM/dd";
  1130. this.txt_SUPPLICSTARTDATE.Location = new System.Drawing.Point(140, 129);
  1131. this.txt_SUPPLICSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1132. this.txt_SUPPLICSTARTDATE.Name = "txt_SUPPLICSTARTDATE";
  1133. this.txt_SUPPLICSTARTDATE.NonAutoSizeHeight = 25;
  1134. this.txt_SUPPLICSTARTDATE.ReadOnly = true;
  1135. this.txt_SUPPLICSTARTDATE.Size = new System.Drawing.Size(107, 25);
  1136. this.txt_SUPPLICSTARTDATE.TabIndex = 21;
  1137. this.txt_SUPPLICSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1138. this.txt_SUPPLICSTARTDATE.BeforeDropDown += new System.ComponentModel.CancelEventHandler(this.txt_SUPPLICSTARTDATE_BeforeDropDown);
  1139. //
  1140. // txt_SUPPTAXSTARTDATE
  1141. //
  1142. this.txt_SUPPTAXSTARTDATE.DateButtons.Add(dateButton6);
  1143. this.txt_SUPPTAXSTARTDATE.Format = "yyyy/MM/dd";
  1144. this.txt_SUPPTAXSTARTDATE.Location = new System.Drawing.Point(1245, 249);
  1145. this.txt_SUPPTAXSTARTDATE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1146. this.txt_SUPPTAXSTARTDATE.Name = "txt_SUPPTAXSTARTDATE";
  1147. this.txt_SUPPTAXSTARTDATE.NonAutoSizeHeight = 25;
  1148. this.txt_SUPPTAXSTARTDATE.ReadOnly = true;
  1149. this.txt_SUPPTAXSTARTDATE.Size = new System.Drawing.Size(107, 25);
  1150. this.txt_SUPPTAXSTARTDATE.TabIndex = 25;
  1151. this.txt_SUPPTAXSTARTDATE.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1152. this.txt_SUPPTAXSTARTDATE.Visible = false;
  1153. //
  1154. // txt_SUPPISSUBCOMPANY
  1155. //
  1156. this.txt_SUPPISSUBCOMPANY.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1157. valueListItem13.DataValue = "0";
  1158. valueListItem13.DisplayText = "否";
  1159. valueListItem14.DataValue = "1";
  1160. valueListItem14.DisplayText = "是";
  1161. this.txt_SUPPISSUBCOMPANY.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1162. valueListItem13,
  1163. valueListItem14});
  1164. this.txt_SUPPISSUBCOMPANY.Location = new System.Drawing.Point(524, 251);
  1165. this.txt_SUPPISSUBCOMPANY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1166. this.txt_SUPPISSUBCOMPANY.Name = "txt_SUPPISSUBCOMPANY";
  1167. this.txt_SUPPISSUBCOMPANY.Size = new System.Drawing.Size(232, 24);
  1168. this.txt_SUPPISSUBCOMPANY.TabIndex = 15;
  1169. //
  1170. // txt_SUPPISMANUFACTURER
  1171. //
  1172. this.txt_SUPPISMANUFACTURER.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1173. valueListItem27.DataValue = "0";
  1174. valueListItem27.DisplayText = "否";
  1175. valueListItem28.DataValue = "1";
  1176. valueListItem28.DisplayText = "是";
  1177. this.txt_SUPPISMANUFACTURER.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1178. valueListItem27,
  1179. valueListItem28});
  1180. this.txt_SUPPISMANUFACTURER.Location = new System.Drawing.Point(524, 191);
  1181. this.txt_SUPPISMANUFACTURER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1182. this.txt_SUPPISMANUFACTURER.Name = "txt_SUPPISMANUFACTURER";
  1183. this.txt_SUPPISMANUFACTURER.Size = new System.Drawing.Size(232, 24);
  1184. this.txt_SUPPISMANUFACTURER.TabIndex = 16;
  1185. //
  1186. // txt_SUPPISINTERNAL
  1187. //
  1188. this.txt_SUPPISINTERNAL.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1189. valueListItem18.DataValue = "0";
  1190. valueListItem18.DisplayText = "否";
  1191. valueListItem19.DataValue = "1";
  1192. valueListItem19.DisplayText = "是";
  1193. this.txt_SUPPISINTERNAL.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1194. valueListItem18,
  1195. valueListItem19});
  1196. this.txt_SUPPISINTERNAL.Location = new System.Drawing.Point(524, 221);
  1197. this.txt_SUPPISINTERNAL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1198. this.txt_SUPPISINTERNAL.Name = "txt_SUPPISINTERNAL";
  1199. this.txt_SUPPISINTERNAL.Size = new System.Drawing.Size(232, 24);
  1200. this.txt_SUPPISINTERNAL.TabIndex = 24;
  1201. //
  1202. // txt_SUPPADDRESS
  1203. //
  1204. this.txt_SUPPADDRESS.Location = new System.Drawing.Point(869, 71);
  1205. this.txt_SUPPADDRESS.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1206. this.txt_SUPPADDRESS.Name = "txt_SUPPADDRESS";
  1207. this.txt_SUPPADDRESS.Size = new System.Drawing.Size(227, 24);
  1208. this.txt_SUPPADDRESS.TabIndex = 20;
  1209. //
  1210. // txt_SUPPRELATIONGRADE
  1211. //
  1212. this.txt_SUPPRELATIONGRADE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1213. valueListItem15.DataValue = "ValueListItem0";
  1214. valueListItem15.DisplayText = "A";
  1215. valueListItem16.DataValue = "ValueListItem1";
  1216. valueListItem16.DisplayText = "B";
  1217. valueListItem17.DataValue = "ValueListItem2";
  1218. valueListItem17.DisplayText = "C";
  1219. this.txt_SUPPRELATIONGRADE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1220. valueListItem15,
  1221. valueListItem16,
  1222. valueListItem17});
  1223. this.txt_SUPPRELATIONGRADE.Location = new System.Drawing.Point(524, 161);
  1224. this.txt_SUPPRELATIONGRADE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1225. this.txt_SUPPRELATIONGRADE.Name = "txt_SUPPRELATIONGRADE";
  1226. this.txt_SUPPRELATIONGRADE.Size = new System.Drawing.Size(232, 24);
  1227. this.txt_SUPPRELATIONGRADE.TabIndex = 28;
  1228. //
  1229. // txt_SUPPPERGRADE
  1230. //
  1231. this.txt_SUPPPERGRADE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1232. this.txt_SUPPPERGRADE.Location = new System.Drawing.Point(524, 71);
  1233. this.txt_SUPPPERGRADE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1234. this.txt_SUPPPERGRADE.Name = "txt_SUPPPERGRADE";
  1235. this.txt_SUPPPERGRADE.Size = new System.Drawing.Size(232, 24);
  1236. this.txt_SUPPPERGRADE.TabIndex = 12;
  1237. //
  1238. // txt_SUPPREGCAPITAL
  1239. //
  1240. appearance1.TextHAlignAsString = "Right";
  1241. this.txt_SUPPREGCAPITAL.Appearance = appearance1;
  1242. this.txt_SUPPREGCAPITAL.Location = new System.Drawing.Point(524, 101);
  1243. this.txt_SUPPREGCAPITAL.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1244. this.txt_SUPPREGCAPITAL.Name = "txt_SUPPREGCAPITAL";
  1245. this.txt_SUPPREGCAPITAL.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  1246. this.txt_SUPPREGCAPITAL.Size = new System.Drawing.Size(232, 24);
  1247. this.txt_SUPPREGCAPITAL.TabIndex = 4;
  1248. this.txt_SUPPREGCAPITAL.Text = "0";
  1249. //
  1250. // ultraLabel82
  1251. //
  1252. this.ultraLabel82.AutoSize = true;
  1253. this.ultraLabel82.Location = new System.Drawing.Point(431, 198);
  1254. this.ultraLabel82.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1255. this.ultraLabel82.Name = "ultraLabel82";
  1256. this.ultraLabel82.Size = new System.Drawing.Size(83, 19);
  1257. this.ultraLabel82.TabIndex = 47;
  1258. this.ultraLabel82.Text = "是否制造商";
  1259. //
  1260. // ultraLabel83
  1261. //
  1262. this.ultraLabel83.AutoSize = true;
  1263. this.ultraLabel83.Location = new System.Drawing.Point(413, 228);
  1264. this.ultraLabel83.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1265. this.ultraLabel83.Name = "ultraLabel83";
  1266. this.ultraLabel83.Size = new System.Drawing.Size(98, 19);
  1267. this.ultraLabel83.TabIndex = 46;
  1268. this.ultraLabel83.Text = "是否内部供方";
  1269. //
  1270. // ultraLabel84
  1271. //
  1272. this.ultraLabel84.AutoSize = true;
  1273. this.ultraLabel84.Location = new System.Drawing.Point(413, 164);
  1274. this.ultraLabel84.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1275. this.ultraLabel84.Name = "ultraLabel84";
  1276. this.ultraLabel84.Size = new System.Drawing.Size(98, 19);
  1277. this.ultraLabel84.TabIndex = 45;
  1278. this.ultraLabel84.Text = "合作关系等级";
  1279. //
  1280. // ultraLabel85
  1281. //
  1282. this.ultraLabel85.AutoSize = true;
  1283. this.ultraLabel85.Location = new System.Drawing.Point(784, 44);
  1284. this.ultraLabel85.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1285. this.ultraLabel85.Name = "ultraLabel85";
  1286. this.ultraLabel85.Size = new System.Drawing.Size(75, 19);
  1287. this.ultraLabel85.TabIndex = 44;
  1288. this.ultraLabel85.Text = "省份/城市";
  1289. //
  1290. // ultraLabel86
  1291. //
  1292. this.ultraLabel86.AutoSize = true;
  1293. this.ultraLabel86.Location = new System.Drawing.Point(447, 74);
  1294. this.ultraLabel86.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1295. this.ultraLabel86.Name = "ultraLabel86";
  1296. this.ultraLabel86.Size = new System.Drawing.Size(67, 19);
  1297. this.ultraLabel86.TabIndex = 43;
  1298. this.ultraLabel86.Text = "评定等级";
  1299. //
  1300. // ultraLabel87
  1301. //
  1302. this.ultraLabel87.AutoSize = true;
  1303. this.ultraLabel87.Location = new System.Drawing.Point(447, 135);
  1304. this.ultraLabel87.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1305. this.ultraLabel87.Name = "ultraLabel87";
  1306. this.ultraLabel87.Size = new System.Drawing.Size(67, 19);
  1307. this.ultraLabel87.TabIndex = 42;
  1308. this.ultraLabel87.Text = "注册币种";
  1309. //
  1310. // ultraLabel88
  1311. //
  1312. this.ultraLabel88.AutoSize = true;
  1313. this.ultraLabel88.Location = new System.Drawing.Point(447, 104);
  1314. this.ultraLabel88.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1315. this.ultraLabel88.Name = "ultraLabel88";
  1316. this.ultraLabel88.Size = new System.Drawing.Size(67, 19);
  1317. this.ultraLabel88.TabIndex = 41;
  1318. this.ultraLabel88.Text = "注册资金";
  1319. //
  1320. // ultraLabel39
  1321. //
  1322. this.ultraLabel39.AutoSize = true;
  1323. this.ultraLabel39.Location = new System.Drawing.Point(413, 256);
  1324. this.ultraLabel39.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1325. this.ultraLabel39.Name = "ultraLabel39";
  1326. this.ultraLabel39.Size = new System.Drawing.Size(98, 19);
  1327. this.ultraLabel39.TabIndex = 40;
  1328. this.ultraLabel39.Text = "是否为子公司";
  1329. //
  1330. // txt_SUPPOPERATESCOPE
  1331. //
  1332. this.txt_SUPPOPERATESCOPE.Location = new System.Drawing.Point(1201, 45);
  1333. this.txt_SUPPOPERATESCOPE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1334. this.txt_SUPPOPERATESCOPE.Multiline = true;
  1335. this.txt_SUPPOPERATESCOPE.Name = "txt_SUPPOPERATESCOPE";
  1336. this.txt_SUPPOPERATESCOPE.Size = new System.Drawing.Size(200, 229);
  1337. this.txt_SUPPOPERATESCOPE.TabIndex = 23;
  1338. //
  1339. // txt_SUPPLICNUM
  1340. //
  1341. this.txt_SUPPLICNUM.Location = new System.Drawing.Point(140, 99);
  1342. this.txt_SUPPLICNUM.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1343. this.txt_SUPPLICNUM.Name = "txt_SUPPLICNUM";
  1344. this.txt_SUPPLICNUM.ReadOnly = true;
  1345. this.txt_SUPPLICNUM.Size = new System.Drawing.Size(247, 24);
  1346. this.txt_SUPPLICNUM.TabIndex = 27;
  1347. //
  1348. // txt_SUPPCITY
  1349. //
  1350. this.txt_SUPPCITY.Location = new System.Drawing.Point(964, 41);
  1351. this.txt_SUPPCITY.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1352. this.txt_SUPPCITY.Name = "txt_SUPPCITY";
  1353. this.txt_SUPPCITY.Size = new System.Drawing.Size(132, 24);
  1354. this.txt_SUPPCITY.TabIndex = 11;
  1355. //
  1356. // txt_SUPPREGISTRARNAME
  1357. //
  1358. this.txt_SUPPREGISTRARNAME.Location = new System.Drawing.Point(273, 71);
  1359. this.txt_SUPPREGISTRARNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1360. this.txt_SUPPREGISTRARNAME.Name = "txt_SUPPREGISTRARNAME";
  1361. this.txt_SUPPREGISTRARNAME.Size = new System.Drawing.Size(113, 24);
  1362. this.txt_SUPPREGISTRARNAME.TabIndex = 7;
  1363. //
  1364. // txt_SUPPSHORTNAME
  1365. //
  1366. this.txt_SUPPSHORTNAME.Location = new System.Drawing.Point(140, 71);
  1367. this.txt_SUPPSHORTNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1368. this.txt_SUPPSHORTNAME.Name = "txt_SUPPSHORTNAME";
  1369. this.txt_SUPPSHORTNAME.Size = new System.Drawing.Size(84, 24);
  1370. this.txt_SUPPSHORTNAME.TabIndex = 3;
  1371. //
  1372. // ultraLabel20
  1373. //
  1374. this.ultraLabel20.AutoSize = true;
  1375. this.ultraLabel20.Location = new System.Drawing.Point(1124, 48);
  1376. this.ultraLabel20.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1377. this.ultraLabel20.Name = "ultraLabel20";
  1378. this.ultraLabel20.Size = new System.Drawing.Size(67, 19);
  1379. this.ultraLabel20.TabIndex = 31;
  1380. this.ultraLabel20.Text = "经营范围";
  1381. //
  1382. // ultraLabel19
  1383. //
  1384. this.ultraLabel19.AutoSize = true;
  1385. this.ultraLabel19.Location = new System.Drawing.Point(32, 102);
  1386. this.ultraLabel19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1387. this.ultraLabel19.Name = "ultraLabel19";
  1388. this.ultraLabel19.Size = new System.Drawing.Size(98, 19);
  1389. this.ultraLabel19.TabIndex = 30;
  1390. this.ultraLabel19.Text = "营业执照号码";
  1391. //
  1392. // ultraLabel16
  1393. //
  1394. this.ultraLabel16.AutoSize = true;
  1395. this.ultraLabel16.Location = new System.Drawing.Point(229, 76);
  1396. this.ultraLabel16.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1397. this.ultraLabel16.Name = "ultraLabel16";
  1398. this.ultraLabel16.Size = new System.Drawing.Size(36, 19);
  1399. this.ultraLabel16.TabIndex = 27;
  1400. this.ultraLabel16.Text = "法人";
  1401. //
  1402. // ultraLabel15
  1403. //
  1404. this.ultraLabel15.AutoSize = true;
  1405. this.ultraLabel15.Location = new System.Drawing.Point(29, 72);
  1406. this.ultraLabel15.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1407. this.ultraLabel15.Name = "ultraLabel15";
  1408. this.ultraLabel15.Size = new System.Drawing.Size(98, 19);
  1409. this.ultraLabel15.TabIndex = 26;
  1410. this.ultraLabel15.Text = "供 方 简 称";
  1411. //
  1412. // txt_ORGCODE
  1413. //
  1414. this.txt_ORGCODE.Location = new System.Drawing.Point(1236, 194);
  1415. this.txt_ORGCODE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1416. this.txt_ORGCODE.Name = "txt_ORGCODE";
  1417. this.txt_ORGCODE.ReadOnly = true;
  1418. this.txt_ORGCODE.Size = new System.Drawing.Size(247, 24);
  1419. this.txt_ORGCODE.TabIndex = 14;
  1420. this.txt_ORGCODE.Visible = false;
  1421. //
  1422. // txt_SUPPCHARACTER
  1423. //
  1424. this.txt_SUPPCHARACTER.Location = new System.Drawing.Point(524, 11);
  1425. this.txt_SUPPCHARACTER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1426. this.txt_SUPPCHARACTER.Name = "txt_SUPPCHARACTER";
  1427. this.txt_SUPPCHARACTER.Size = new System.Drawing.Size(232, 24);
  1428. this.txt_SUPPCHARACTER.TabIndex = 6;
  1429. //
  1430. // ultraLabel14
  1431. //
  1432. this.ultraLabel14.AutoSize = true;
  1433. this.ultraLabel14.Location = new System.Drawing.Point(1125, 198);
  1434. this.ultraLabel14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1435. this.ultraLabel14.Name = "ultraLabel14";
  1436. this.ultraLabel14.Size = new System.Drawing.Size(98, 19);
  1437. this.ultraLabel14.TabIndex = 19;
  1438. this.ultraLabel14.Text = "组织结构代码";
  1439. this.ultraLabel14.Visible = false;
  1440. //
  1441. // ultraLabel10
  1442. //
  1443. this.ultraLabel10.AutoSize = true;
  1444. this.ultraLabel10.Location = new System.Drawing.Point(1125, 170);
  1445. this.ultraLabel10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1446. this.ultraLabel10.Name = "ultraLabel10";
  1447. this.ultraLabel10.Size = new System.Drawing.Size(98, 19);
  1448. this.ultraLabel10.TabIndex = 17;
  1449. this.ultraLabel10.Text = "供方有效日期";
  1450. this.ultraLabel10.Visible = false;
  1451. //
  1452. // ultraLabel9
  1453. //
  1454. this.ultraLabel9.AutoSize = true;
  1455. this.ultraLabel9.Location = new System.Drawing.Point(447, 14);
  1456. this.ultraLabel9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1457. this.ultraLabel9.Name = "ultraLabel9";
  1458. this.ultraLabel9.Size = new System.Drawing.Size(67, 19);
  1459. this.ultraLabel9.TabIndex = 16;
  1460. this.ultraLabel9.Text = "公司性质";
  1461. //
  1462. // txt_SUPPNAME
  1463. //
  1464. this.txt_SUPPNAME.Location = new System.Drawing.Point(140, 41);
  1465. this.txt_SUPPNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1466. this.txt_SUPPNAME.Name = "txt_SUPPNAME";
  1467. this.txt_SUPPNAME.Size = new System.Drawing.Size(247, 24);
  1468. this.txt_SUPPNAME.TabIndex = 2;
  1469. //
  1470. // txt_SUPPINDUSTRYTYPE
  1471. //
  1472. this.txt_SUPPINDUSTRYTYPE.Location = new System.Drawing.Point(524, 41);
  1473. this.txt_SUPPINDUSTRYTYPE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1474. this.txt_SUPPINDUSTRYTYPE.Name = "txt_SUPPINDUSTRYTYPE";
  1475. this.txt_SUPPINDUSTRYTYPE.Size = new System.Drawing.Size(232, 24);
  1476. this.txt_SUPPINDUSTRYTYPE.TabIndex = 13;
  1477. //
  1478. // ultraLabel8
  1479. //
  1480. this.ultraLabel8.AutoSize = true;
  1481. this.ultraLabel8.Location = new System.Drawing.Point(29, 45);
  1482. this.ultraLabel8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1483. this.ultraLabel8.Name = "ultraLabel8";
  1484. this.ultraLabel8.Size = new System.Drawing.Size(98, 19);
  1485. this.ultraLabel8.TabIndex = 11;
  1486. this.ultraLabel8.Text = "供 方 名 称";
  1487. //
  1488. // ultraLabel7
  1489. //
  1490. this.ultraLabel7.AutoSize = true;
  1491. this.ultraLabel7.Location = new System.Drawing.Point(447, 44);
  1492. this.ultraLabel7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1493. this.ultraLabel7.Name = "ultraLabel7";
  1494. this.ultraLabel7.Size = new System.Drawing.Size(67, 19);
  1495. this.ultraLabel7.TabIndex = 10;
  1496. this.ultraLabel7.Text = "行业类型";
  1497. //
  1498. // ultraLabel5
  1499. //
  1500. this.ultraLabel5.AutoSize = true;
  1501. this.ultraLabel5.Location = new System.Drawing.Point(1125, 258);
  1502. this.ultraLabel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1503. this.ultraLabel5.Name = "ultraLabel5";
  1504. this.ultraLabel5.Size = new System.Drawing.Size(98, 19);
  1505. this.ultraLabel5.TabIndex = 8;
  1506. this.ultraLabel5.Text = "税号有效日期";
  1507. this.ultraLabel5.Visible = false;
  1508. //
  1509. // txt_SUPPTAXID
  1510. //
  1511. this.txt_SUPPTAXID.Location = new System.Drawing.Point(1236, 224);
  1512. this.txt_SUPPTAXID.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1513. this.txt_SUPPTAXID.Name = "txt_SUPPTAXID";
  1514. this.txt_SUPPTAXID.ReadOnly = true;
  1515. this.txt_SUPPTAXID.Size = new System.Drawing.Size(247, 24);
  1516. this.txt_SUPPTAXID.TabIndex = 5;
  1517. this.txt_SUPPTAXID.Visible = false;
  1518. //
  1519. // txt_SUPPCODE
  1520. //
  1521. this.txt_SUPPCODE.Location = new System.Drawing.Point(140, 11);
  1522. this.txt_SUPPCODE.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1523. this.txt_SUPPCODE.Name = "txt_SUPPCODE";
  1524. this.txt_SUPPCODE.Size = new System.Drawing.Size(247, 24);
  1525. this.txt_SUPPCODE.TabIndex = 1;
  1526. //
  1527. // ultraLabel4
  1528. //
  1529. this.ultraLabel4.AutoSize = true;
  1530. this.ultraLabel4.Location = new System.Drawing.Point(1125, 14);
  1531. this.ultraLabel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1532. this.ultraLabel4.Name = "ultraLabel4";
  1533. this.ultraLabel4.Size = new System.Drawing.Size(67, 19);
  1534. this.ultraLabel4.TabIndex = 3;
  1535. this.ultraLabel4.Text = "办公省份";
  1536. //
  1537. // ultraLabel3
  1538. //
  1539. this.ultraLabel3.AutoSize = true;
  1540. this.ultraLabel3.Location = new System.Drawing.Point(784, 14);
  1541. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1542. this.ultraLabel3.Name = "ultraLabel3";
  1543. this.ultraLabel3.Size = new System.Drawing.Size(75, 19);
  1544. this.ultraLabel3.TabIndex = 2;
  1545. this.ultraLabel3.Text = "洲际/国家";
  1546. //
  1547. // ultraLabel2
  1548. //
  1549. this.ultraLabel2.AutoSize = true;
  1550. this.ultraLabel2.Location = new System.Drawing.Point(1125, 228);
  1551. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1552. this.ultraLabel2.Name = "ultraLabel2";
  1553. this.ultraLabel2.Size = new System.Drawing.Size(98, 19);
  1554. this.ultraLabel2.TabIndex = 1;
  1555. this.ultraLabel2.Text = "税 号/ 标 识";
  1556. this.ultraLabel2.Visible = false;
  1557. //
  1558. // ultraLabel1
  1559. //
  1560. this.ultraLabel1.AutoSize = true;
  1561. this.ultraLabel1.Location = new System.Drawing.Point(29, 14);
  1562. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1563. this.ultraLabel1.Name = "ultraLabel1";
  1564. this.ultraLabel1.Size = new System.Drawing.Size(98, 19);
  1565. this.ultraLabel1.TabIndex = 0;
  1566. this.ultraLabel1.Text = "供 方 代 码";
  1567. //
  1568. // ultraTabPageControl3
  1569. //
  1570. this.ultraTabPageControl3.Controls.Add(this.txtPayType);
  1571. this.ultraTabPageControl3.Controls.Add(this.ultraLabel98);
  1572. this.ultraTabPageControl3.Controls.Add(this.ultraLabel27);
  1573. this.ultraTabPageControl3.Controls.Add(this.txt_BANKNAME);
  1574. this.ultraTabPageControl3.Controls.Add(this.txt_BANKACCOUNT);
  1575. this.ultraTabPageControl3.Controls.Add(this.ultraLabel32);
  1576. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1577. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1578. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1579. this.ultraTabPageControl3.Size = new System.Drawing.Size(1515, 295);
  1580. //
  1581. // txtPayType
  1582. //
  1583. this.txtPayType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1584. this.txtPayType.Location = new System.Drawing.Point(189, 150);
  1585. this.txtPayType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1586. this.txtPayType.Name = "txtPayType";
  1587. this.txtPayType.Size = new System.Drawing.Size(149, 24);
  1588. this.txtPayType.TabIndex = 68;
  1589. //
  1590. // ultraLabel98
  1591. //
  1592. this.ultraLabel98.AutoSize = true;
  1593. this.ultraLabel98.Location = new System.Drawing.Point(111, 154);
  1594. this.ultraLabel98.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1595. this.ultraLabel98.Name = "ultraLabel98";
  1596. this.ultraLabel98.Size = new System.Drawing.Size(67, 19);
  1597. this.ultraLabel98.TabIndex = 8;
  1598. this.ultraLabel98.Text = "付款方式";
  1599. //
  1600. // ultraLabel27
  1601. //
  1602. this.ultraLabel27.AutoSize = true;
  1603. this.ultraLabel27.Location = new System.Drawing.Point(111, 86);
  1604. this.ultraLabel27.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1605. this.ultraLabel27.Name = "ultraLabel27";
  1606. this.ultraLabel27.Size = new System.Drawing.Size(67, 19);
  1607. this.ultraLabel27.TabIndex = 7;
  1608. this.ultraLabel27.Text = "银行名称";
  1609. //
  1610. // txt_BANKNAME
  1611. //
  1612. appearance4.TextHAlignAsString = "Right";
  1613. this.txt_BANKNAME.Appearance = appearance4;
  1614. this.txt_BANKNAME.Location = new System.Drawing.Point(188, 85);
  1615. this.txt_BANKNAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1616. this.txt_BANKNAME.Name = "txt_BANKNAME";
  1617. this.txt_BANKNAME.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  1618. this.txt_BANKNAME.Size = new System.Drawing.Size(365, 24);
  1619. this.txt_BANKNAME.TabIndex = 6;
  1620. //
  1621. // txt_BANKACCOUNT
  1622. //
  1623. appearance27.TextHAlignAsString = "Right";
  1624. this.txt_BANKACCOUNT.Appearance = appearance27;
  1625. this.txt_BANKACCOUNT.Location = new System.Drawing.Point(188, 116);
  1626. this.txt_BANKACCOUNT.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1627. this.txt_BANKACCOUNT.Name = "txt_BANKACCOUNT";
  1628. this.txt_BANKACCOUNT.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  1629. this.txt_BANKACCOUNT.Size = new System.Drawing.Size(365, 24);
  1630. this.txt_BANKACCOUNT.TabIndex = 3;
  1631. //
  1632. // ultraLabel32
  1633. //
  1634. this.ultraLabel32.AutoSize = true;
  1635. this.ultraLabel32.Location = new System.Drawing.Point(111, 119);
  1636. this.ultraLabel32.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1637. this.ultraLabel32.Name = "ultraLabel32";
  1638. this.ultraLabel32.Size = new System.Drawing.Size(67, 19);
  1639. this.ultraLabel32.TabIndex = 4;
  1640. this.ultraLabel32.Text = "银行账号";
  1641. //
  1642. // ultraTabPageControl4
  1643. //
  1644. this.ultraTabPageControl4.Controls.Add(this.upLoadFile);
  1645. this.ultraTabPageControl4.Controls.Add(this.ultraLabel99);
  1646. this.ultraTabPageControl4.Controls.Add(this.txt_arch_code);
  1647. this.ultraTabPageControl4.Controls.Add(this.btn_submitAppend);
  1648. this.ultraTabPageControl4.Controls.Add(this.txt_certPath);
  1649. this.ultraTabPageControl4.Controls.Add(this.txt_certpath_local);
  1650. this.ultraTabPageControl4.Controls.Add(this.ultraLabel96);
  1651. this.ultraTabPageControl4.Controls.Add(this.txt_CERTVALID_end);
  1652. this.ultraTabPageControl4.Controls.Add(this.ultraLabel95);
  1653. this.ultraTabPageControl4.Controls.Add(this.txt_certNo_v);
  1654. this.ultraTabPageControl4.Controls.Add(this.txt_certpath_old);
  1655. this.ultraTabPageControl4.Controls.Add(this.ultraLabel94);
  1656. this.ultraTabPageControl4.Controls.Add(this.craftImg);
  1657. this.ultraTabPageControl4.Controls.Add(this.txt_CERTVALID_start);
  1658. this.ultraTabPageControl4.Controls.Add(this.txt_ap_type);
  1659. this.ultraTabPageControl4.Controls.Add(this.txt_ap_constraint);
  1660. this.ultraTabPageControl4.Controls.Add(this.txt_CERTDESC);
  1661. this.ultraTabPageControl4.Controls.Add(this.txt_CERTIOFFICER);
  1662. this.ultraTabPageControl4.Controls.Add(this.txt_CERTNO);
  1663. this.ultraTabPageControl4.Controls.Add(this.ultraLabel37);
  1664. this.ultraTabPageControl4.Controls.Add(this.ultraLabel38);
  1665. this.ultraTabPageControl4.Controls.Add(this.ultraLabel35);
  1666. this.ultraTabPageControl4.Controls.Add(this.ultraLabel36);
  1667. this.ultraTabPageControl4.Controls.Add(this.ultraLabel34);
  1668. this.ultraTabPageControl4.Controls.Add(this.ultraLabel33);
  1669. this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
  1670. this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1671. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  1672. this.ultraTabPageControl4.Size = new System.Drawing.Size(1515, 295);
  1673. //
  1674. // upLoadFile
  1675. //
  1676. this.upLoadFile.Location = new System.Drawing.Point(927, 10);
  1677. this.upLoadFile.Margin = new System.Windows.Forms.Padding(4);
  1678. this.upLoadFile.Name = "upLoadFile";
  1679. this.upLoadFile.Size = new System.Drawing.Size(100, 242);
  1680. this.upLoadFile.TabIndex = 104;
  1681. this.upLoadFile.Text = "上传资质信息";
  1682. this.upLoadFile.Click += new System.EventHandler(this.upLoadFile_Click);
  1683. //
  1684. // ultraLabel99
  1685. //
  1686. this.ultraLabel99.AutoSize = true;
  1687. this.ultraLabel99.Location = new System.Drawing.Point(77, 172);
  1688. this.ultraLabel99.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1689. this.ultraLabel99.Name = "ultraLabel99";
  1690. this.ultraLabel99.Size = new System.Drawing.Size(67, 19);
  1691. this.ultraLabel99.TabIndex = 103;
  1692. this.ultraLabel99.Text = "结构代码";
  1693. //
  1694. // txt_arch_code
  1695. //
  1696. this.txt_arch_code.Location = new System.Drawing.Point(156, 169);
  1697. this.txt_arch_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1698. this.txt_arch_code.Name = "txt_arch_code";
  1699. this.txt_arch_code.Size = new System.Drawing.Size(267, 24);
  1700. this.txt_arch_code.TabIndex = 102;
  1701. //
  1702. // btn_submitAppend
  1703. //
  1704. this.btn_submitAppend.Location = new System.Drawing.Point(789, 10);
  1705. this.btn_submitAppend.Margin = new System.Windows.Forms.Padding(4);
  1706. this.btn_submitAppend.Name = "btn_submitAppend";
  1707. this.btn_submitAppend.Size = new System.Drawing.Size(100, 242);
  1708. this.btn_submitAppend.TabIndex = 97;
  1709. this.btn_submitAppend.Text = "添加营业执照代码";
  1710. this.btn_submitAppend.Click += new System.EventHandler(this.btn_submitAppend_Click);
  1711. //
  1712. // txt_certPath
  1713. //
  1714. editorButton2.Key = "insert";
  1715. editorButton2.Text = "选择";
  1716. this.txt_certPath.ButtonsRight.Add(editorButton2);
  1717. this.txt_certPath.Location = new System.Drawing.Point(156, 16);
  1718. this.txt_certPath.Margin = new System.Windows.Forms.Padding(4);
  1719. this.txt_certPath.Name = "txt_certPath";
  1720. this.txt_certPath.ReadOnly = true;
  1721. this.txt_certPath.Size = new System.Drawing.Size(267, 24);
  1722. this.txt_certPath.TabIndex = 96;
  1723. this.txt_certPath.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_certPath_EditorButtonClick);
  1724. //
  1725. // txt_certpath_local
  1726. //
  1727. this.txt_certpath_local.Location = new System.Drawing.Point(156, 50);
  1728. this.txt_certpath_local.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1729. this.txt_certpath_local.Name = "txt_certpath_local";
  1730. this.txt_certpath_local.ReadOnly = true;
  1731. this.txt_certpath_local.Size = new System.Drawing.Size(267, 24);
  1732. this.txt_certpath_local.TabIndex = 94;
  1733. //
  1734. // ultraLabel96
  1735. //
  1736. this.ultraLabel96.AutoSize = true;
  1737. this.ultraLabel96.Location = new System.Drawing.Point(79, 52);
  1738. this.ultraLabel96.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1739. this.ultraLabel96.Name = "ultraLabel96";
  1740. this.ultraLabel96.Size = new System.Drawing.Size(67, 19);
  1741. this.ultraLabel96.TabIndex = 93;
  1742. this.ultraLabel96.Text = "本地地址";
  1743. //
  1744. // txt_CERTVALID_end
  1745. //
  1746. this.txt_CERTVALID_end.DateButtons.Add(dateButton7);
  1747. this.txt_CERTVALID_end.Location = new System.Drawing.Point(156, 228);
  1748. this.txt_CERTVALID_end.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1749. this.txt_CERTVALID_end.Name = "txt_CERTVALID_end";
  1750. this.txt_CERTVALID_end.NonAutoSizeHeight = 25;
  1751. this.txt_CERTVALID_end.Size = new System.Drawing.Size(267, 25);
  1752. this.txt_CERTVALID_end.TabIndex = 73;
  1753. this.txt_CERTVALID_end.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1754. //
  1755. // ultraLabel95
  1756. //
  1757. this.ultraLabel95.AutoSize = true;
  1758. this.ultraLabel95.Location = new System.Drawing.Point(61, 229);
  1759. this.ultraLabel95.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1760. this.ultraLabel95.Name = "ultraLabel95";
  1761. this.ultraLabel95.Size = new System.Drawing.Size(83, 19);
  1762. this.ultraLabel95.TabIndex = 74;
  1763. this.ultraLabel95.Text = "有效期截止";
  1764. //
  1765. // txt_certNo_v
  1766. //
  1767. this.txt_certNo_v.Location = new System.Drawing.Point(1281, 20);
  1768. this.txt_certNo_v.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1769. this.txt_certNo_v.Name = "txt_certNo_v";
  1770. this.txt_certNo_v.Size = new System.Drawing.Size(139, 24);
  1771. this.txt_certNo_v.TabIndex = 71;
  1772. this.txt_certNo_v.Visible = false;
  1773. //
  1774. // txt_certpath_old
  1775. //
  1776. this.txt_certpath_old.Location = new System.Drawing.Point(1281, 55);
  1777. this.txt_certpath_old.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1778. this.txt_certpath_old.Name = "txt_certpath_old";
  1779. this.txt_certpath_old.Size = new System.Drawing.Size(139, 24);
  1780. this.txt_certpath_old.TabIndex = 70;
  1781. this.txt_certpath_old.Visible = false;
  1782. //
  1783. // ultraLabel94
  1784. //
  1785. this.ultraLabel94.AutoSize = true;
  1786. this.ultraLabel94.Location = new System.Drawing.Point(77, 20);
  1787. this.ultraLabel94.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1788. this.ultraLabel94.Name = "ultraLabel94";
  1789. this.ultraLabel94.Size = new System.Drawing.Size(67, 19);
  1790. this.ultraLabel94.TabIndex = 69;
  1791. this.ultraLabel94.Text = "证书文件";
  1792. //
  1793. // txt_CERTVALID_start
  1794. //
  1795. this.txt_CERTVALID_start.DateButtons.Add(dateButton8);
  1796. this.txt_CERTVALID_start.Location = new System.Drawing.Point(156, 198);
  1797. this.txt_CERTVALID_start.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1798. this.txt_CERTVALID_start.Name = "txt_CERTVALID_start";
  1799. this.txt_CERTVALID_start.NonAutoSizeHeight = 25;
  1800. this.txt_CERTVALID_start.Size = new System.Drawing.Size(267, 25);
  1801. this.txt_CERTVALID_start.TabIndex = 3;
  1802. this.txt_CERTVALID_start.Value = new System.DateTime(2016, 3, 6, 0, 0, 0, 0);
  1803. //
  1804. // txt_ap_type
  1805. //
  1806. this.txt_ap_type.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1807. valueListItem4.DataValue = "1";
  1808. valueListItem4.DisplayText = "营业执照";
  1809. valueListItem23.DataValue = "4";
  1810. valueListItem23.DisplayText = "质量管理体系";
  1811. valueListItem24.DataValue = "5";
  1812. valueListItem24.DisplayText = "环境管理体系";
  1813. valueListItem25.DataValue = "6";
  1814. valueListItem25.DisplayText = "职业健康与安全管理体系";
  1815. valueListItem26.DataValue = "7";
  1816. valueListItem26.DisplayText = "授权委托书";
  1817. valueListItem29.DataValue = "8";
  1818. valueListItem29.DisplayText = "其它";
  1819. this.txt_ap_type.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1820. valueListItem4,
  1821. valueListItem23,
  1822. valueListItem24,
  1823. valueListItem25,
  1824. valueListItem26,
  1825. valueListItem29});
  1826. this.txt_ap_type.Location = new System.Drawing.Point(156, 141);
  1827. this.txt_ap_type.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1828. this.txt_ap_type.Name = "txt_ap_type";
  1829. this.txt_ap_type.Size = new System.Drawing.Size(267, 24);
  1830. this.txt_ap_type.TabIndex = 5;
  1831. //
  1832. // txt_ap_constraint
  1833. //
  1834. this.txt_ap_constraint.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1835. valueListItem10.DataValue = "1";
  1836. valueListItem10.DisplayText = "A类";
  1837. valueListItem11.DataValue = "2";
  1838. valueListItem11.DisplayText = "B类";
  1839. valueListItem12.DataValue = "3";
  1840. valueListItem12.DisplayText = "C类";
  1841. this.txt_ap_constraint.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1842. valueListItem10,
  1843. valueListItem11,
  1844. valueListItem12});
  1845. this.txt_ap_constraint.Location = new System.Drawing.Point(156, 112);
  1846. this.txt_ap_constraint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1847. this.txt_ap_constraint.Name = "txt_ap_constraint";
  1848. this.txt_ap_constraint.Size = new System.Drawing.Size(267, 24);
  1849. this.txt_ap_constraint.TabIndex = 1;
  1850. //
  1851. // txt_CERTDESC
  1852. //
  1853. this.txt_CERTDESC.Location = new System.Drawing.Point(515, 49);
  1854. this.txt_CERTDESC.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1855. this.txt_CERTDESC.Multiline = true;
  1856. this.txt_CERTDESC.Name = "txt_CERTDESC";
  1857. this.txt_CERTDESC.Size = new System.Drawing.Size(267, 202);
  1858. this.txt_CERTDESC.TabIndex = 6;
  1859. //
  1860. // txt_CERTIOFFICER
  1861. //
  1862. this.txt_CERTIOFFICER.Location = new System.Drawing.Point(515, 18);
  1863. this.txt_CERTIOFFICER.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1864. this.txt_CERTIOFFICER.Name = "txt_CERTIOFFICER";
  1865. this.txt_CERTIOFFICER.Size = new System.Drawing.Size(267, 24);
  1866. this.txt_CERTIOFFICER.TabIndex = 2;
  1867. //
  1868. // txt_CERTNO
  1869. //
  1870. this.txt_CERTNO.Location = new System.Drawing.Point(156, 81);
  1871. this.txt_CERTNO.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1872. this.txt_CERTNO.Name = "txt_CERTNO";
  1873. this.txt_CERTNO.ReadOnly = true;
  1874. this.txt_CERTNO.Size = new System.Drawing.Size(267, 24);
  1875. this.txt_CERTNO.TabIndex = 4;
  1876. //
  1877. // ultraLabel37
  1878. //
  1879. this.ultraLabel37.AutoSize = true;
  1880. this.ultraLabel37.Location = new System.Drawing.Point(439, 51);
  1881. this.ultraLabel37.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1882. this.ultraLabel37.Name = "ultraLabel37";
  1883. this.ultraLabel37.Size = new System.Drawing.Size(67, 19);
  1884. this.ultraLabel37.TabIndex = 5;
  1885. this.ultraLabel37.Text = "证书描述";
  1886. //
  1887. // ultraLabel38
  1888. //
  1889. this.ultraLabel38.AutoSize = true;
  1890. this.ultraLabel38.Location = new System.Drawing.Point(61, 200);
  1891. this.ultraLabel38.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1892. this.ultraLabel38.Name = "ultraLabel38";
  1893. this.ultraLabel38.Size = new System.Drawing.Size(83, 19);
  1894. this.ultraLabel38.TabIndex = 4;
  1895. this.ultraLabel38.Text = "有效期开始";
  1896. //
  1897. // ultraLabel35
  1898. //
  1899. this.ultraLabel35.AutoSize = true;
  1900. this.ultraLabel35.Location = new System.Drawing.Point(77, 142);
  1901. this.ultraLabel35.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1902. this.ultraLabel35.Name = "ultraLabel35";
  1903. this.ultraLabel35.Size = new System.Drawing.Size(67, 19);
  1904. this.ultraLabel35.TabIndex = 3;
  1905. this.ultraLabel35.Text = "证书类型";
  1906. //
  1907. // ultraLabel36
  1908. //
  1909. this.ultraLabel36.AutoSize = true;
  1910. this.ultraLabel36.Location = new System.Drawing.Point(439, 20);
  1911. this.ultraLabel36.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1912. this.ultraLabel36.Name = "ultraLabel36";
  1913. this.ultraLabel36.Size = new System.Drawing.Size(67, 19);
  1914. this.ultraLabel36.TabIndex = 2;
  1915. this.ultraLabel36.Text = "发放机构";
  1916. //
  1917. // ultraLabel34
  1918. //
  1919. this.ultraLabel34.AutoSize = true;
  1920. this.ultraLabel34.Location = new System.Drawing.Point(93, 85);
  1921. this.ultraLabel34.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1922. this.ultraLabel34.Name = "ultraLabel34";
  1923. this.ultraLabel34.Size = new System.Drawing.Size(52, 19);
  1924. this.ultraLabel34.TabIndex = 1;
  1925. this.ultraLabel34.Text = "文件名";
  1926. //
  1927. // ultraLabel33
  1928. //
  1929. this.ultraLabel33.AutoSize = true;
  1930. this.ultraLabel33.Location = new System.Drawing.Point(44, 115);
  1931. this.ultraLabel33.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1932. this.ultraLabel33.Name = "ultraLabel33";
  1933. this.ultraLabel33.Size = new System.Drawing.Size(98, 19);
  1934. this.ultraLabel33.TabIndex = 0;
  1935. this.ultraLabel33.Text = "证书强制类型";
  1936. //
  1937. // ultraTabPageControl2
  1938. //
  1939. this.ultraTabPageControl2.Controls.Add(this.txt_Rate_Year);
  1940. this.ultraTabPageControl2.Controls.Add(this.ultraLabel101);
  1941. this.ultraTabPageControl2.Controls.Add(this.Combo_Rate);
  1942. this.ultraTabPageControl2.Controls.Add(this.ultraLabel100);
  1943. this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 25);
  1944. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1945. this.ultraTabPageControl2.Size = new System.Drawing.Size(1515, 295);
  1946. //
  1947. // txt_Rate_Year
  1948. //
  1949. this.txt_Rate_Year.Location = new System.Drawing.Point(283, 12);
  1950. this.txt_Rate_Year.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1951. this.txt_Rate_Year.Name = "txt_Rate_Year";
  1952. this.txt_Rate_Year.Size = new System.Drawing.Size(123, 25);
  1953. this.txt_Rate_Year.TabIndex = 18;
  1954. //
  1955. // ultraLabel101
  1956. //
  1957. this.ultraLabel101.AutoSize = true;
  1958. this.ultraLabel101.Location = new System.Drawing.Point(241, 15);
  1959. this.ultraLabel101.Name = "ultraLabel101";
  1960. this.ultraLabel101.Size = new System.Drawing.Size(36, 19);
  1961. this.ultraLabel101.TabIndex = 2;
  1962. this.ultraLabel101.Text = "年份";
  1963. //
  1964. // Combo_Rate
  1965. //
  1966. this.Combo_Rate.Location = new System.Drawing.Point(57, 15);
  1967. this.Combo_Rate.Name = "Combo_Rate";
  1968. this.Combo_Rate.Size = new System.Drawing.Size(144, 24);
  1969. this.Combo_Rate.TabIndex = 1;
  1970. //
  1971. // ultraLabel100
  1972. //
  1973. this.ultraLabel100.AutoSize = true;
  1974. this.ultraLabel100.Location = new System.Drawing.Point(13, 15);
  1975. this.ultraLabel100.Name = "ultraLabel100";
  1976. this.ultraLabel100.Size = new System.Drawing.Size(36, 19);
  1977. this.ultraLabel100.TabIndex = 0;
  1978. this.ultraLabel100.Text = "评级";
  1979. //
  1980. // dataSet1
  1981. //
  1982. this.dataSet1.DataSetName = "NewDataSet";
  1983. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  1984. this.dataTable1});
  1985. //
  1986. // dataTable1
  1987. //
  1988. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  1989. this.dataColumn1,
  1990. this.dataColumn2,
  1991. this.dataColumn3,
  1992. this.dataColumn4,
  1993. this.dataColumn5,
  1994. this.dataColumn6,
  1995. this.dataColumn7,
  1996. this.dataColumn8,
  1997. this.dataColumn9,
  1998. this.dataColumn10,
  1999. this.dataColumn11,
  2000. this.dataColumn12,
  2001. this.dataColumn13,
  2002. this.dataColumn14,
  2003. this.dataColumn15,
  2004. this.dataColumn16,
  2005. this.dataColumn17,
  2006. this.dataColumn18,
  2007. this.dataColumn19,
  2008. this.dataColumn20,
  2009. this.dataColumn21,
  2010. this.dataColumn22,
  2011. this.dataColumn23,
  2012. this.dataColumn24,
  2013. this.dataColumn36,
  2014. this.dataColumn41,
  2015. this.dataColumn42,
  2016. this.dataColumn43,
  2017. this.dataColumn44,
  2018. this.dataColumn45,
  2019. this.dataColumn50,
  2020. this.dataColumn25,
  2021. this.dataColumn27,
  2022. this.dataColumn53,
  2023. this.dataColumn54,
  2024. this.dataColumn55,
  2025. this.dataColumn56});
  2026. this.dataTable1.TableName = "Table1";
  2027. //
  2028. // dataColumn1
  2029. //
  2030. this.dataColumn1.Caption = "代码";
  2031. this.dataColumn1.ColumnName = "suppCode";
  2032. //
  2033. // dataColumn2
  2034. //
  2035. this.dataColumn2.Caption = "名称";
  2036. this.dataColumn2.ColumnName = "suppName";
  2037. //
  2038. // dataColumn3
  2039. //
  2040. this.dataColumn3.Caption = "简称";
  2041. this.dataColumn3.ColumnName = "suppShortName";
  2042. //
  2043. // dataColumn4
  2044. //
  2045. this.dataColumn4.Caption = "生效日期";
  2046. this.dataColumn4.ColumnName = "suppStartDate";
  2047. //
  2048. // dataColumn5
  2049. //
  2050. this.dataColumn5.Caption = "失效日期";
  2051. this.dataColumn5.ColumnName = "suppEndDate";
  2052. //
  2053. // dataColumn6
  2054. //
  2055. this.dataColumn6.Caption = "税号生效日期";
  2056. this.dataColumn6.ColumnName = "suppTaxStartDate";
  2057. //
  2058. // dataColumn7
  2059. //
  2060. this.dataColumn7.Caption = "税号失效日期";
  2061. this.dataColumn7.ColumnName = "suppTaxEndDate";
  2062. //
  2063. // dataColumn8
  2064. //
  2065. this.dataColumn8.Caption = "是否内部供方";
  2066. this.dataColumn8.ColumnName = "suppIsInternal";
  2067. //
  2068. // dataColumn9
  2069. //
  2070. this.dataColumn9.Caption = "是否制造商";
  2071. this.dataColumn9.ColumnName = "suppIsManufacturer";
  2072. //
  2073. // dataColumn10
  2074. //
  2075. this.dataColumn10.Caption = "是否子公司";
  2076. this.dataColumn10.ColumnName = "suppIsSubCompany";
  2077. //
  2078. // dataColumn11
  2079. //
  2080. this.dataColumn11.Caption = "联系人";
  2081. this.dataColumn11.ColumnName = "supplierLinkMan";
  2082. //
  2083. // dataColumn12
  2084. //
  2085. this.dataColumn12.Caption = "传真";
  2086. this.dataColumn12.ColumnName = "suppContactFax";
  2087. //
  2088. // dataColumn13
  2089. //
  2090. this.dataColumn13.Caption = "电话";
  2091. this.dataColumn13.ColumnName = "suppContactTel";
  2092. //
  2093. // dataColumn14
  2094. //
  2095. this.dataColumn14.Caption = "EMAIL";
  2096. this.dataColumn14.ColumnName = "suppContactEmail";
  2097. //
  2098. // dataColumn15
  2099. //
  2100. this.dataColumn15.Caption = "手机";
  2101. this.dataColumn15.ColumnName = "suppContactCellPhone";
  2102. //
  2103. // dataColumn16
  2104. //
  2105. this.dataColumn16.Caption = "职务";
  2106. this.dataColumn16.ColumnName = "suppContactTitle";
  2107. //
  2108. // dataColumn17
  2109. //
  2110. this.dataColumn17.Caption = "备注";
  2111. this.dataColumn17.ColumnName = "suppComment";
  2112. //
  2113. // dataColumn18
  2114. //
  2115. this.dataColumn18.Caption = "信用等级";
  2116. this.dataColumn18.ColumnName = "suppCreditRate";
  2117. //
  2118. // dataColumn19
  2119. //
  2120. this.dataColumn19.Caption = "状态";
  2121. this.dataColumn19.ColumnName = "status";
  2122. //
  2123. // dataColumn20
  2124. //
  2125. this.dataColumn20.Caption = "数据状态";
  2126. this.dataColumn20.ColumnName = "validflag";
  2127. //
  2128. // dataColumn21
  2129. //
  2130. this.dataColumn21.Caption = "创建人";
  2131. this.dataColumn21.ColumnName = "createName";
  2132. //
  2133. // dataColumn22
  2134. //
  2135. this.dataColumn22.Caption = "创建时间";
  2136. this.dataColumn22.ColumnName = "createTime";
  2137. //
  2138. // dataColumn23
  2139. //
  2140. this.dataColumn23.Caption = "修改人";
  2141. this.dataColumn23.ColumnName = "updateName";
  2142. //
  2143. // dataColumn24
  2144. //
  2145. this.dataColumn24.Caption = "修改时间";
  2146. this.dataColumn24.ColumnName = "updateTime";
  2147. //
  2148. // dataColumn36
  2149. //
  2150. this.dataColumn36.Caption = "是否生效";
  2151. this.dataColumn36.ColumnName = "suspendStatus";
  2152. //
  2153. // dataColumn41
  2154. //
  2155. this.dataColumn41.Caption = "注册资金";
  2156. this.dataColumn41.ColumnName = "SUPPREGCAPITAL";
  2157. //
  2158. // dataColumn42
  2159. //
  2160. this.dataColumn42.Caption = "税率(%)";
  2161. this.dataColumn42.ColumnName = "suppTaxRate";
  2162. //
  2163. // dataColumn43
  2164. //
  2165. this.dataColumn43.Caption = "税号";
  2166. this.dataColumn43.ColumnName = "suppTaxId";
  2167. //
  2168. // dataColumn44
  2169. //
  2170. this.dataColumn44.Caption = "营业执照号码";
  2171. this.dataColumn44.ColumnName = "SuppLicNum";
  2172. //
  2173. // dataColumn45
  2174. //
  2175. this.dataColumn45.Caption = "组织机构代码";
  2176. this.dataColumn45.ColumnName = "orgCode";
  2177. //
  2178. // dataColumn50
  2179. //
  2180. this.dataColumn50.Caption = "注册货币类型";
  2181. this.dataColumn50.ColumnName = "SUPPREGCAPCURRENCY";
  2182. //
  2183. // dataColumn25
  2184. //
  2185. this.dataColumn25.Caption = "邮编";
  2186. this.dataColumn25.ColumnName = "SUPPADDPOSTAL";
  2187. //
  2188. // dataColumn27
  2189. //
  2190. this.dataColumn27.Caption = "供方类型";
  2191. this.dataColumn27.ColumnName = "suppType";
  2192. //
  2193. // dataColumn53
  2194. //
  2195. this.dataColumn53.Caption = "招标系统账号";
  2196. this.dataColumn53.ColumnName = "account";
  2197. //
  2198. // dataColumn54
  2199. //
  2200. this.dataColumn54.Caption = "财务账号";
  2201. this.dataColumn54.ColumnName = "accountcw";
  2202. //
  2203. // dataColumn55
  2204. //
  2205. this.dataColumn55.Caption = "日期有效期截止标志";
  2206. this.dataColumn55.ColumnName = "end";
  2207. //
  2208. // dataColumn56
  2209. //
  2210. this.dataColumn56.Caption = "结算代码";
  2211. this.dataColumn56.ColumnName = "balanceCode";
  2212. //
  2213. // dataSet2
  2214. //
  2215. this.dataSet2.DataSetName = "NewDataSet";
  2216. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  2217. this.dataTable2});
  2218. //
  2219. // dataTable2
  2220. //
  2221. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  2222. this.dataColumn26,
  2223. this.dataColumn29,
  2224. this.dataColumn38,
  2225. this.dataColumn39,
  2226. this.dataColumn57});
  2227. this.dataTable2.TableName = "Table1";
  2228. //
  2229. // dataColumn26
  2230. //
  2231. this.dataColumn26.Caption = "银行名称";
  2232. this.dataColumn26.ColumnName = "bankName";
  2233. //
  2234. // dataColumn29
  2235. //
  2236. this.dataColumn29.Caption = "银行帐号";
  2237. this.dataColumn29.ColumnName = "bankAccount";
  2238. //
  2239. // dataColumn38
  2240. //
  2241. this.dataColumn38.Caption = " 供货商代码";
  2242. this.dataColumn38.ColumnName = "suppCode";
  2243. //
  2244. // dataColumn39
  2245. //
  2246. this.dataColumn39.Caption = "序列代码";
  2247. this.dataColumn39.ColumnName = "id";
  2248. //
  2249. // dataColumn57
  2250. //
  2251. this.dataColumn57.Caption = "付款方式";
  2252. this.dataColumn57.ColumnName = "payTypeName";
  2253. //
  2254. // dataSet4
  2255. //
  2256. this.dataSet4.DataSetName = "NewDataSet";
  2257. this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
  2258. this.dataTable4});
  2259. //
  2260. // dataTable4
  2261. //
  2262. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  2263. this.dataColumn28,
  2264. this.dataColumn51,
  2265. this.dataColumn52});
  2266. this.dataTable4.TableName = "Table1";
  2267. //
  2268. // dataColumn28
  2269. //
  2270. this.dataColumn28.Caption = "物料编码";
  2271. this.dataColumn28.ColumnName = "itemCode";
  2272. //
  2273. // dataColumn51
  2274. //
  2275. this.dataColumn51.Caption = "物料名称";
  2276. this.dataColumn51.ColumnName = "itemName";
  2277. //
  2278. // dataColumn52
  2279. //
  2280. this.dataColumn52.Caption = "物料中类";
  2281. this.dataColumn52.ColumnName = "remark2";
  2282. //
  2283. // dataSet3
  2284. //
  2285. this.dataSet3.DataSetName = "NewDataSet";
  2286. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  2287. this.dataTable3});
  2288. //
  2289. // dataTable3
  2290. //
  2291. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  2292. this.dataColumn30,
  2293. this.dataColumn31,
  2294. this.dataColumn32,
  2295. this.dataColumn33,
  2296. this.dataColumn34,
  2297. this.dataColumn35,
  2298. this.dataColumn37,
  2299. this.dataColumn40,
  2300. this.dataColumn46,
  2301. this.dataColumn47,
  2302. this.dataColumn48,
  2303. this.dataColumn49,
  2304. this.dataColumn58});
  2305. this.dataTable3.TableName = "Table1";
  2306. //
  2307. // dataColumn30
  2308. //
  2309. this.dataColumn30.Caption = "证书强制类型";
  2310. this.dataColumn30.ColumnName = "certiConstraint";
  2311. //
  2312. // dataColumn31
  2313. //
  2314. this.dataColumn31.Caption = "证书发放机构";
  2315. this.dataColumn31.ColumnName = "certiOfficer";
  2316. //
  2317. // dataColumn32
  2318. //
  2319. this.dataColumn32.Caption = "证书编号";
  2320. this.dataColumn32.ColumnName = "certNo";
  2321. //
  2322. // dataColumn33
  2323. //
  2324. this.dataColumn33.Caption = "证书类型";
  2325. this.dataColumn33.ColumnName = "certType";
  2326. //
  2327. // dataColumn34
  2328. //
  2329. this.dataColumn34.Caption = "有效期开始";
  2330. this.dataColumn34.ColumnName = "certValidStart";
  2331. //
  2332. // dataColumn35
  2333. //
  2334. this.dataColumn35.Caption = "证书描述";
  2335. this.dataColumn35.ColumnName = "certDesc";
  2336. //
  2337. // dataColumn37
  2338. //
  2339. this.dataColumn37.Caption = "供货商代码";
  2340. this.dataColumn37.ColumnName = "suppCode";
  2341. //
  2342. // dataColumn40
  2343. //
  2344. this.dataColumn40.Caption = "文件编号";
  2345. this.dataColumn40.ColumnName = "id";
  2346. //
  2347. // dataColumn46
  2348. //
  2349. this.dataColumn46.Caption = "文件名";
  2350. this.dataColumn46.ColumnName = "certPath";
  2351. //
  2352. // dataColumn47
  2353. //
  2354. this.dataColumn47.Caption = "相对路径";
  2355. this.dataColumn47.ColumnName = "certPathOld";
  2356. //
  2357. // dataColumn48
  2358. //
  2359. this.dataColumn48.Caption = "主键";
  2360. this.dataColumn48.ColumnName = "certNoV";
  2361. //
  2362. // dataColumn49
  2363. //
  2364. this.dataColumn49.Caption = "有效期截止";
  2365. this.dataColumn49.ColumnName = "certValidEnd";
  2366. //
  2367. // dataColumn58
  2368. //
  2369. this.dataColumn58.Caption = "结构代码";
  2370. this.dataColumn58.ColumnName = "archCode";
  2371. //
  2372. // ultraLabel40
  2373. //
  2374. this.ultraLabel40.Location = new System.Drawing.Point(715, 188);
  2375. this.ultraLabel40.Name = "ultraLabel40";
  2376. this.ultraLabel40.Size = new System.Drawing.Size(152, 23);
  2377. this.ultraLabel40.TabIndex = 40;
  2378. this.ultraLabel40.Text = "供应商经营范围";
  2379. //
  2380. // ultraLabel41
  2381. //
  2382. this.ultraLabel41.Location = new System.Drawing.Point(715, 158);
  2383. this.ultraLabel41.Name = "ultraLabel41";
  2384. this.ultraLabel41.Size = new System.Drawing.Size(152, 23);
  2385. this.ultraLabel41.TabIndex = 31;
  2386. this.ultraLabel41.Text = "供应商经营范围";
  2387. //
  2388. // ultraLabel42
  2389. //
  2390. this.ultraLabel42.Location = new System.Drawing.Point(715, 127);
  2391. this.ultraLabel42.Name = "ultraLabel42";
  2392. this.ultraLabel42.Size = new System.Drawing.Size(152, 23);
  2393. this.ultraLabel42.TabIndex = 30;
  2394. this.ultraLabel42.Text = "供应商营业执照号码";
  2395. //
  2396. // ultraLabel43
  2397. //
  2398. this.ultraLabel43.Location = new System.Drawing.Point(715, 99);
  2399. this.ultraLabel43.Name = "ultraLabel43";
  2400. this.ultraLabel43.Size = new System.Drawing.Size(152, 23);
  2401. this.ultraLabel43.TabIndex = 29;
  2402. this.ultraLabel43.Text = "供应商失效日期";
  2403. //
  2404. // ultraLabel44
  2405. //
  2406. this.ultraLabel44.Location = new System.Drawing.Point(715, 70);
  2407. this.ultraLabel44.Name = "ultraLabel44";
  2408. this.ultraLabel44.Size = new System.Drawing.Size(152, 23);
  2409. this.ultraLabel44.TabIndex = 28;
  2410. this.ultraLabel44.Text = "城市";
  2411. //
  2412. // ultraLabel45
  2413. //
  2414. this.ultraLabel45.Location = new System.Drawing.Point(715, 43);
  2415. this.ultraLabel45.Name = "ultraLabel45";
  2416. this.ultraLabel45.Size = new System.Drawing.Size(152, 23);
  2417. this.ultraLabel45.TabIndex = 27;
  2418. this.ultraLabel45.Text = "法人";
  2419. //
  2420. // ultraLabel46
  2421. //
  2422. this.ultraLabel46.Location = new System.Drawing.Point(715, 13);
  2423. this.ultraLabel46.Name = "ultraLabel46";
  2424. this.ultraLabel46.Size = new System.Drawing.Size(152, 23);
  2425. this.ultraLabel46.TabIndex = 26;
  2426. this.ultraLabel46.Text = "供应商中文简称";
  2427. //
  2428. // dateTimePicker1
  2429. //
  2430. this.dateTimePicker1.CustomFormat = "yyyy-MM-dd ";
  2431. this.dateTimePicker1.Location = new System.Drawing.Point(518, 154);
  2432. this.dateTimePicker1.Name = "dateTimePicker1";
  2433. this.dateTimePicker1.Size = new System.Drawing.Size(191, 25);
  2434. this.dateTimePicker1.TabIndex = 39;
  2435. //
  2436. // dateTimePicker2
  2437. //
  2438. this.dateTimePicker2.CustomFormat = "yyyy-MM-dd ";
  2439. this.dateTimePicker2.Location = new System.Drawing.Point(518, 128);
  2440. this.dateTimePicker2.Name = "dateTimePicker2";
  2441. this.dateTimePicker2.Size = new System.Drawing.Size(191, 25);
  2442. this.dateTimePicker2.TabIndex = 39;
  2443. //
  2444. // dateTimePicker3
  2445. //
  2446. this.dateTimePicker3.CustomFormat = "yyyy-MM-dd ";
  2447. this.dateTimePicker3.Location = new System.Drawing.Point(168, 161);
  2448. this.dateTimePicker3.Name = "dateTimePicker3";
  2449. this.dateTimePicker3.Size = new System.Drawing.Size(191, 25);
  2450. this.dateTimePicker3.TabIndex = 39;
  2451. //
  2452. // dateTimePicker4
  2453. //
  2454. this.dateTimePicker4.CustomFormat = "yyyy-MM-dd ";
  2455. this.dateTimePicker4.Location = new System.Drawing.Point(873, 100);
  2456. this.dateTimePicker4.Name = "dateTimePicker4";
  2457. this.dateTimePicker4.Size = new System.Drawing.Size(191, 25);
  2458. this.dateTimePicker4.TabIndex = 39;
  2459. //
  2460. // dateTimePicker5
  2461. //
  2462. this.dateTimePicker5.CustomFormat = "yyyy-MM-dd ";
  2463. this.dateTimePicker5.Location = new System.Drawing.Point(518, 100);
  2464. this.dateTimePicker5.Name = "dateTimePicker5";
  2465. this.dateTimePicker5.Size = new System.Drawing.Size(191, 25);
  2466. this.dateTimePicker5.TabIndex = 39;
  2467. //
  2468. // dateTimePicker6
  2469. //
  2470. this.dateTimePicker6.CustomFormat = "yyyy-MM-dd ";
  2471. this.dateTimePicker6.Location = new System.Drawing.Point(168, 128);
  2472. this.dateTimePicker6.Name = "dateTimePicker6";
  2473. this.dateTimePicker6.Size = new System.Drawing.Size(191, 25);
  2474. this.dateTimePicker6.TabIndex = 38;
  2475. //
  2476. // ultraTextEditor1
  2477. //
  2478. this.ultraTextEditor1.Location = new System.Drawing.Point(873, 157);
  2479. this.ultraTextEditor1.Name = "ultraTextEditor1";
  2480. this.ultraTextEditor1.Size = new System.Drawing.Size(191, 24);
  2481. this.ultraTextEditor1.TabIndex = 37;
  2482. //
  2483. // ultraTextEditor2
  2484. //
  2485. this.ultraTextEditor2.Location = new System.Drawing.Point(873, 127);
  2486. this.ultraTextEditor2.Name = "ultraTextEditor2";
  2487. this.ultraTextEditor2.Size = new System.Drawing.Size(191, 24);
  2488. this.ultraTextEditor2.TabIndex = 36;
  2489. //
  2490. // ultraTextEditor3
  2491. //
  2492. this.ultraTextEditor3.Location = new System.Drawing.Point(873, 70);
  2493. this.ultraTextEditor3.Name = "ultraTextEditor3";
  2494. this.ultraTextEditor3.Size = new System.Drawing.Size(191, 24);
  2495. this.ultraTextEditor3.TabIndex = 34;
  2496. //
  2497. // ultraTextEditor4
  2498. //
  2499. this.ultraTextEditor4.Location = new System.Drawing.Point(873, 43);
  2500. this.ultraTextEditor4.Name = "ultraTextEditor4";
  2501. this.ultraTextEditor4.Size = new System.Drawing.Size(191, 24);
  2502. this.ultraTextEditor4.TabIndex = 33;
  2503. //
  2504. // ultraTextEditor5
  2505. //
  2506. this.ultraTextEditor5.Location = new System.Drawing.Point(873, 14);
  2507. this.ultraTextEditor5.Name = "ultraTextEditor5";
  2508. this.ultraTextEditor5.Size = new System.Drawing.Size(191, 24);
  2509. this.ultraTextEditor5.TabIndex = 32;
  2510. //
  2511. // ultraTextEditor6
  2512. //
  2513. this.ultraTextEditor6.Location = new System.Drawing.Point(518, 187);
  2514. this.ultraTextEditor6.Name = "ultraTextEditor6";
  2515. this.ultraTextEditor6.Size = new System.Drawing.Size(191, 24);
  2516. this.ultraTextEditor6.TabIndex = 25;
  2517. //
  2518. // ultraTextEditor7
  2519. //
  2520. this.ultraTextEditor7.Location = new System.Drawing.Point(518, 69);
  2521. this.ultraTextEditor7.Name = "ultraTextEditor7";
  2522. this.ultraTextEditor7.Size = new System.Drawing.Size(191, 24);
  2523. this.ultraTextEditor7.TabIndex = 21;
  2524. //
  2525. // ultraTextEditor8
  2526. //
  2527. this.ultraTextEditor8.Location = new System.Drawing.Point(518, 43);
  2528. this.ultraTextEditor8.Name = "ultraTextEditor8";
  2529. this.ultraTextEditor8.Size = new System.Drawing.Size(191, 24);
  2530. this.ultraTextEditor8.TabIndex = 20;
  2531. //
  2532. // ultraLabel47
  2533. //
  2534. this.ultraLabel47.Location = new System.Drawing.Point(365, 188);
  2535. this.ultraLabel47.Name = "ultraLabel47";
  2536. this.ultraLabel47.Size = new System.Drawing.Size(160, 23);
  2537. this.ultraLabel47.TabIndex = 19;
  2538. this.ultraLabel47.Text = "组织结构代码";
  2539. //
  2540. // ultraLabel48
  2541. //
  2542. this.ultraLabel48.Location = new System.Drawing.Point(365, 159);
  2543. this.ultraLabel48.Name = "ultraLabel48";
  2544. this.ultraLabel48.Size = new System.Drawing.Size(160, 23);
  2545. this.ultraLabel48.TabIndex = 18;
  2546. this.ultraLabel48.Text = "营业执照失效日期";
  2547. //
  2548. // ultraLabel49
  2549. //
  2550. this.ultraLabel49.Location = new System.Drawing.Point(365, 130);
  2551. this.ultraLabel49.Name = "ultraLabel49";
  2552. this.ultraLabel49.Size = new System.Drawing.Size(160, 23);
  2553. this.ultraLabel49.TabIndex = 18;
  2554. this.ultraLabel49.Text = "供应商税号失效日期";
  2555. //
  2556. // ultraLabel50
  2557. //
  2558. this.ultraLabel50.Location = new System.Drawing.Point(365, 72);
  2559. this.ultraLabel50.Name = "ultraLabel50";
  2560. this.ultraLabel50.Size = new System.Drawing.Size(160, 23);
  2561. this.ultraLabel50.TabIndex = 17;
  2562. this.ultraLabel50.Text = "省份";
  2563. //
  2564. // ultraLabel51
  2565. //
  2566. this.ultraLabel51.Location = new System.Drawing.Point(365, 100);
  2567. this.ultraLabel51.Name = "ultraLabel51";
  2568. this.ultraLabel51.Size = new System.Drawing.Size(160, 23);
  2569. this.ultraLabel51.TabIndex = 17;
  2570. this.ultraLabel51.Text = "供应商生效日期";
  2571. //
  2572. // ultraLabel52
  2573. //
  2574. this.ultraLabel52.Location = new System.Drawing.Point(365, 43);
  2575. this.ultraLabel52.Name = "ultraLabel52";
  2576. this.ultraLabel52.Size = new System.Drawing.Size(160, 23);
  2577. this.ultraLabel52.TabIndex = 16;
  2578. this.ultraLabel52.Text = "公司性质";
  2579. //
  2580. // ultraTextEditor9
  2581. //
  2582. this.ultraTextEditor9.Location = new System.Drawing.Point(518, 12);
  2583. this.ultraTextEditor9.Name = "ultraTextEditor9";
  2584. this.ultraTextEditor9.Size = new System.Drawing.Size(191, 24);
  2585. this.ultraTextEditor9.TabIndex = 15;
  2586. //
  2587. // ultraTextEditor10
  2588. //
  2589. this.ultraTextEditor10.Location = new System.Drawing.Point(168, 188);
  2590. this.ultraTextEditor10.Name = "ultraTextEditor10";
  2591. this.ultraTextEditor10.Size = new System.Drawing.Size(191, 24);
  2592. this.ultraTextEditor10.TabIndex = 14;
  2593. //
  2594. // ultraLabel53
  2595. //
  2596. this.ultraLabel53.Location = new System.Drawing.Point(365, 15);
  2597. this.ultraLabel53.Name = "ultraLabel53";
  2598. this.ultraLabel53.Size = new System.Drawing.Size(160, 23);
  2599. this.ultraLabel53.TabIndex = 11;
  2600. this.ultraLabel53.Text = "供应商名称";
  2601. //
  2602. // ultraLabel54
  2603. //
  2604. this.ultraLabel54.Location = new System.Drawing.Point(7, 182);
  2605. this.ultraLabel54.Name = "ultraLabel54";
  2606. this.ultraLabel54.Size = new System.Drawing.Size(147, 23);
  2607. this.ultraLabel54.TabIndex = 10;
  2608. this.ultraLabel54.Text = "供货商行业类型";
  2609. //
  2610. // ultraLabel55
  2611. //
  2612. this.ultraLabel55.Location = new System.Drawing.Point(7, 156);
  2613. this.ultraLabel55.Name = "ultraLabel55";
  2614. this.ultraLabel55.Size = new System.Drawing.Size(147, 23);
  2615. this.ultraLabel55.TabIndex = 9;
  2616. this.ultraLabel55.Text = "营业执照生效日期";
  2617. //
  2618. // ultraLabel56
  2619. //
  2620. this.ultraLabel56.Location = new System.Drawing.Point(7, 128);
  2621. this.ultraLabel56.Name = "ultraLabel56";
  2622. this.ultraLabel56.Size = new System.Drawing.Size(147, 23);
  2623. this.ultraLabel56.TabIndex = 8;
  2624. this.ultraLabel56.Text = "供货商税号生效日期";
  2625. //
  2626. // ultraTextEditor11
  2627. //
  2628. this.ultraTextEditor11.Location = new System.Drawing.Point(168, 100);
  2629. this.ultraTextEditor11.Name = "ultraTextEditor11";
  2630. this.ultraTextEditor11.Size = new System.Drawing.Size(191, 24);
  2631. this.ultraTextEditor11.TabIndex = 7;
  2632. //
  2633. // ultraTextEditor12
  2634. //
  2635. this.ultraTextEditor12.Location = new System.Drawing.Point(168, 68);
  2636. this.ultraTextEditor12.Name = "ultraTextEditor12";
  2637. this.ultraTextEditor12.Size = new System.Drawing.Size(191, 24);
  2638. this.ultraTextEditor12.TabIndex = 6;
  2639. //
  2640. // ultraTextEditor13
  2641. //
  2642. this.ultraTextEditor13.Location = new System.Drawing.Point(168, 39);
  2643. this.ultraTextEditor13.Name = "ultraTextEditor13";
  2644. this.ultraTextEditor13.Size = new System.Drawing.Size(191, 24);
  2645. this.ultraTextEditor13.TabIndex = 5;
  2646. //
  2647. // ultraTextEditor14
  2648. //
  2649. this.ultraTextEditor14.Location = new System.Drawing.Point(168, 11);
  2650. this.ultraTextEditor14.Name = "ultraTextEditor14";
  2651. this.ultraTextEditor14.Size = new System.Drawing.Size(191, 24);
  2652. this.ultraTextEditor14.TabIndex = 4;
  2653. //
  2654. // ultraLabel57
  2655. //
  2656. this.ultraLabel57.Location = new System.Drawing.Point(7, 99);
  2657. this.ultraLabel57.Name = "ultraLabel57";
  2658. this.ultraLabel57.Size = new System.Drawing.Size(147, 23);
  2659. this.ultraLabel57.TabIndex = 3;
  2660. this.ultraLabel57.Text = "办公省份";
  2661. //
  2662. // ultraLabel58
  2663. //
  2664. this.ultraLabel58.Location = new System.Drawing.Point(7, 70);
  2665. this.ultraLabel58.Name = "ultraLabel58";
  2666. this.ultraLabel58.Size = new System.Drawing.Size(147, 23);
  2667. this.ultraLabel58.TabIndex = 2;
  2668. this.ultraLabel58.Text = "国家";
  2669. //
  2670. // ultraLabel59
  2671. //
  2672. this.ultraLabel59.Location = new System.Drawing.Point(7, 41);
  2673. this.ultraLabel59.Name = "ultraLabel59";
  2674. this.ultraLabel59.Size = new System.Drawing.Size(147, 23);
  2675. this.ultraLabel59.TabIndex = 1;
  2676. this.ultraLabel59.Text = "税号/标识";
  2677. //
  2678. // ultraLabel60
  2679. //
  2680. this.ultraLabel60.Location = new System.Drawing.Point(7, 12);
  2681. this.ultraLabel60.Name = "ultraLabel60";
  2682. this.ultraLabel60.Size = new System.Drawing.Size(147, 23);
  2683. this.ultraLabel60.TabIndex = 0;
  2684. this.ultraLabel60.Text = "供货商代码";
  2685. //
  2686. // ultraLabel61
  2687. //
  2688. this.ultraLabel61.Location = new System.Drawing.Point(715, 188);
  2689. this.ultraLabel61.Name = "ultraLabel61";
  2690. this.ultraLabel61.Size = new System.Drawing.Size(152, 23);
  2691. this.ultraLabel61.TabIndex = 40;
  2692. this.ultraLabel61.Text = "供应商经营范围";
  2693. //
  2694. // ultraLabel62
  2695. //
  2696. this.ultraLabel62.Location = new System.Drawing.Point(715, 158);
  2697. this.ultraLabel62.Name = "ultraLabel62";
  2698. this.ultraLabel62.Size = new System.Drawing.Size(152, 23);
  2699. this.ultraLabel62.TabIndex = 31;
  2700. this.ultraLabel62.Text = "供应商经营范围";
  2701. //
  2702. // ultraLabel63
  2703. //
  2704. this.ultraLabel63.Location = new System.Drawing.Point(715, 127);
  2705. this.ultraLabel63.Name = "ultraLabel63";
  2706. this.ultraLabel63.Size = new System.Drawing.Size(152, 23);
  2707. this.ultraLabel63.TabIndex = 30;
  2708. this.ultraLabel63.Text = "供应商营业执照号码";
  2709. //
  2710. // ultraLabel64
  2711. //
  2712. this.ultraLabel64.Location = new System.Drawing.Point(715, 99);
  2713. this.ultraLabel64.Name = "ultraLabel64";
  2714. this.ultraLabel64.Size = new System.Drawing.Size(152, 23);
  2715. this.ultraLabel64.TabIndex = 29;
  2716. this.ultraLabel64.Text = "供应商失效日期";
  2717. //
  2718. // ultraLabel65
  2719. //
  2720. this.ultraLabel65.Location = new System.Drawing.Point(715, 70);
  2721. this.ultraLabel65.Name = "ultraLabel65";
  2722. this.ultraLabel65.Size = new System.Drawing.Size(152, 23);
  2723. this.ultraLabel65.TabIndex = 28;
  2724. this.ultraLabel65.Text = "城市";
  2725. //
  2726. // ultraLabel66
  2727. //
  2728. this.ultraLabel66.Location = new System.Drawing.Point(715, 43);
  2729. this.ultraLabel66.Name = "ultraLabel66";
  2730. this.ultraLabel66.Size = new System.Drawing.Size(152, 23);
  2731. this.ultraLabel66.TabIndex = 27;
  2732. this.ultraLabel66.Text = "法人";
  2733. //
  2734. // ultraLabel67
  2735. //
  2736. this.ultraLabel67.Location = new System.Drawing.Point(715, 13);
  2737. this.ultraLabel67.Name = "ultraLabel67";
  2738. this.ultraLabel67.Size = new System.Drawing.Size(152, 23);
  2739. this.ultraLabel67.TabIndex = 26;
  2740. this.ultraLabel67.Text = "供应商中文简称";
  2741. //
  2742. // dateTimePicker7
  2743. //
  2744. this.dateTimePicker7.CustomFormat = "yyyy-MM-dd ";
  2745. this.dateTimePicker7.Location = new System.Drawing.Point(518, 154);
  2746. this.dateTimePicker7.Name = "dateTimePicker7";
  2747. this.dateTimePicker7.Size = new System.Drawing.Size(191, 25);
  2748. this.dateTimePicker7.TabIndex = 39;
  2749. //
  2750. // dateTimePicker8
  2751. //
  2752. this.dateTimePicker8.CustomFormat = "yyyy-MM-dd ";
  2753. this.dateTimePicker8.Location = new System.Drawing.Point(518, 128);
  2754. this.dateTimePicker8.Name = "dateTimePicker8";
  2755. this.dateTimePicker8.Size = new System.Drawing.Size(191, 25);
  2756. this.dateTimePicker8.TabIndex = 39;
  2757. //
  2758. // dateTimePicker9
  2759. //
  2760. this.dateTimePicker9.CustomFormat = "yyyy-MM-dd ";
  2761. this.dateTimePicker9.Location = new System.Drawing.Point(168, 161);
  2762. this.dateTimePicker9.Name = "dateTimePicker9";
  2763. this.dateTimePicker9.Size = new System.Drawing.Size(191, 25);
  2764. this.dateTimePicker9.TabIndex = 39;
  2765. //
  2766. // dateTimePicker10
  2767. //
  2768. this.dateTimePicker10.CustomFormat = "yyyy-MM-dd ";
  2769. this.dateTimePicker10.Location = new System.Drawing.Point(873, 100);
  2770. this.dateTimePicker10.Name = "dateTimePicker10";
  2771. this.dateTimePicker10.Size = new System.Drawing.Size(191, 25);
  2772. this.dateTimePicker10.TabIndex = 39;
  2773. //
  2774. // dateTimePicker11
  2775. //
  2776. this.dateTimePicker11.CustomFormat = "yyyy-MM-dd ";
  2777. this.dateTimePicker11.Location = new System.Drawing.Point(518, 100);
  2778. this.dateTimePicker11.Name = "dateTimePicker11";
  2779. this.dateTimePicker11.Size = new System.Drawing.Size(191, 25);
  2780. this.dateTimePicker11.TabIndex = 39;
  2781. //
  2782. // dateTimePicker12
  2783. //
  2784. this.dateTimePicker12.CustomFormat = "yyyy-MM-dd ";
  2785. this.dateTimePicker12.Location = new System.Drawing.Point(168, 128);
  2786. this.dateTimePicker12.Name = "dateTimePicker12";
  2787. this.dateTimePicker12.Size = new System.Drawing.Size(191, 25);
  2788. this.dateTimePicker12.TabIndex = 38;
  2789. //
  2790. // ultraTextEditor15
  2791. //
  2792. this.ultraTextEditor15.Location = new System.Drawing.Point(873, 157);
  2793. this.ultraTextEditor15.Name = "ultraTextEditor15";
  2794. this.ultraTextEditor15.Size = new System.Drawing.Size(191, 24);
  2795. this.ultraTextEditor15.TabIndex = 37;
  2796. //
  2797. // ultraTextEditor16
  2798. //
  2799. this.ultraTextEditor16.Location = new System.Drawing.Point(873, 127);
  2800. this.ultraTextEditor16.Name = "ultraTextEditor16";
  2801. this.ultraTextEditor16.Size = new System.Drawing.Size(191, 24);
  2802. this.ultraTextEditor16.TabIndex = 36;
  2803. //
  2804. // ultraTextEditor17
  2805. //
  2806. this.ultraTextEditor17.Location = new System.Drawing.Point(873, 70);
  2807. this.ultraTextEditor17.Name = "ultraTextEditor17";
  2808. this.ultraTextEditor17.Size = new System.Drawing.Size(191, 24);
  2809. this.ultraTextEditor17.TabIndex = 34;
  2810. //
  2811. // ultraTextEditor18
  2812. //
  2813. this.ultraTextEditor18.Location = new System.Drawing.Point(873, 43);
  2814. this.ultraTextEditor18.Name = "ultraTextEditor18";
  2815. this.ultraTextEditor18.Size = new System.Drawing.Size(191, 24);
  2816. this.ultraTextEditor18.TabIndex = 33;
  2817. //
  2818. // ultraTextEditor19
  2819. //
  2820. this.ultraTextEditor19.Location = new System.Drawing.Point(873, 14);
  2821. this.ultraTextEditor19.Name = "ultraTextEditor19";
  2822. this.ultraTextEditor19.Size = new System.Drawing.Size(191, 24);
  2823. this.ultraTextEditor19.TabIndex = 32;
  2824. //
  2825. // ultraTextEditor20
  2826. //
  2827. this.ultraTextEditor20.Location = new System.Drawing.Point(518, 187);
  2828. this.ultraTextEditor20.Name = "ultraTextEditor20";
  2829. this.ultraTextEditor20.Size = new System.Drawing.Size(191, 24);
  2830. this.ultraTextEditor20.TabIndex = 25;
  2831. //
  2832. // ultraTextEditor21
  2833. //
  2834. this.ultraTextEditor21.Location = new System.Drawing.Point(518, 69);
  2835. this.ultraTextEditor21.Name = "ultraTextEditor21";
  2836. this.ultraTextEditor21.Size = new System.Drawing.Size(191, 24);
  2837. this.ultraTextEditor21.TabIndex = 21;
  2838. //
  2839. // ultraTextEditor22
  2840. //
  2841. this.ultraTextEditor22.Location = new System.Drawing.Point(518, 43);
  2842. this.ultraTextEditor22.Name = "ultraTextEditor22";
  2843. this.ultraTextEditor22.Size = new System.Drawing.Size(191, 24);
  2844. this.ultraTextEditor22.TabIndex = 20;
  2845. //
  2846. // ultraLabel68
  2847. //
  2848. this.ultraLabel68.Location = new System.Drawing.Point(365, 188);
  2849. this.ultraLabel68.Name = "ultraLabel68";
  2850. this.ultraLabel68.Size = new System.Drawing.Size(160, 23);
  2851. this.ultraLabel68.TabIndex = 19;
  2852. this.ultraLabel68.Text = "组织结构代码";
  2853. //
  2854. // ultraLabel69
  2855. //
  2856. this.ultraLabel69.Location = new System.Drawing.Point(365, 159);
  2857. this.ultraLabel69.Name = "ultraLabel69";
  2858. this.ultraLabel69.Size = new System.Drawing.Size(160, 23);
  2859. this.ultraLabel69.TabIndex = 18;
  2860. this.ultraLabel69.Text = "营业执照失效日期";
  2861. //
  2862. // ultraLabel70
  2863. //
  2864. this.ultraLabel70.Location = new System.Drawing.Point(365, 130);
  2865. this.ultraLabel70.Name = "ultraLabel70";
  2866. this.ultraLabel70.Size = new System.Drawing.Size(160, 23);
  2867. this.ultraLabel70.TabIndex = 18;
  2868. this.ultraLabel70.Text = "供应商税号失效日期";
  2869. //
  2870. // ultraLabel71
  2871. //
  2872. this.ultraLabel71.Location = new System.Drawing.Point(365, 72);
  2873. this.ultraLabel71.Name = "ultraLabel71";
  2874. this.ultraLabel71.Size = new System.Drawing.Size(160, 23);
  2875. this.ultraLabel71.TabIndex = 17;
  2876. this.ultraLabel71.Text = "省份";
  2877. //
  2878. // ultraLabel72
  2879. //
  2880. this.ultraLabel72.Location = new System.Drawing.Point(365, 100);
  2881. this.ultraLabel72.Name = "ultraLabel72";
  2882. this.ultraLabel72.Size = new System.Drawing.Size(160, 23);
  2883. this.ultraLabel72.TabIndex = 17;
  2884. this.ultraLabel72.Text = "供应商生效日期";
  2885. //
  2886. // ultraLabel73
  2887. //
  2888. this.ultraLabel73.Location = new System.Drawing.Point(365, 43);
  2889. this.ultraLabel73.Name = "ultraLabel73";
  2890. this.ultraLabel73.Size = new System.Drawing.Size(160, 23);
  2891. this.ultraLabel73.TabIndex = 16;
  2892. this.ultraLabel73.Text = "公司性质";
  2893. //
  2894. // ultraTextEditor23
  2895. //
  2896. this.ultraTextEditor23.Location = new System.Drawing.Point(518, 12);
  2897. this.ultraTextEditor23.Name = "ultraTextEditor23";
  2898. this.ultraTextEditor23.Size = new System.Drawing.Size(191, 24);
  2899. this.ultraTextEditor23.TabIndex = 15;
  2900. //
  2901. // ultraTextEditor24
  2902. //
  2903. this.ultraTextEditor24.Location = new System.Drawing.Point(168, 188);
  2904. this.ultraTextEditor24.Name = "ultraTextEditor24";
  2905. this.ultraTextEditor24.Size = new System.Drawing.Size(191, 24);
  2906. this.ultraTextEditor24.TabIndex = 14;
  2907. //
  2908. // ultraLabel74
  2909. //
  2910. this.ultraLabel74.Location = new System.Drawing.Point(365, 15);
  2911. this.ultraLabel74.Name = "ultraLabel74";
  2912. this.ultraLabel74.Size = new System.Drawing.Size(160, 23);
  2913. this.ultraLabel74.TabIndex = 11;
  2914. this.ultraLabel74.Text = "供应商名称";
  2915. //
  2916. // ultraLabel75
  2917. //
  2918. this.ultraLabel75.Location = new System.Drawing.Point(7, 182);
  2919. this.ultraLabel75.Name = "ultraLabel75";
  2920. this.ultraLabel75.Size = new System.Drawing.Size(147, 23);
  2921. this.ultraLabel75.TabIndex = 10;
  2922. this.ultraLabel75.Text = "供货商行业类型";
  2923. //
  2924. // ultraLabel76
  2925. //
  2926. this.ultraLabel76.Location = new System.Drawing.Point(7, 156);
  2927. this.ultraLabel76.Name = "ultraLabel76";
  2928. this.ultraLabel76.Size = new System.Drawing.Size(147, 23);
  2929. this.ultraLabel76.TabIndex = 9;
  2930. this.ultraLabel76.Text = "营业执照生效日期";
  2931. //
  2932. // ultraLabel77
  2933. //
  2934. this.ultraLabel77.Location = new System.Drawing.Point(7, 128);
  2935. this.ultraLabel77.Name = "ultraLabel77";
  2936. this.ultraLabel77.Size = new System.Drawing.Size(147, 23);
  2937. this.ultraLabel77.TabIndex = 8;
  2938. this.ultraLabel77.Text = "供货商税号生效日期";
  2939. //
  2940. // ultraTextEditor25
  2941. //
  2942. this.ultraTextEditor25.Location = new System.Drawing.Point(168, 100);
  2943. this.ultraTextEditor25.Name = "ultraTextEditor25";
  2944. this.ultraTextEditor25.Size = new System.Drawing.Size(191, 24);
  2945. this.ultraTextEditor25.TabIndex = 7;
  2946. //
  2947. // ultraTextEditor26
  2948. //
  2949. this.ultraTextEditor26.Location = new System.Drawing.Point(168, 68);
  2950. this.ultraTextEditor26.Name = "ultraTextEditor26";
  2951. this.ultraTextEditor26.Size = new System.Drawing.Size(191, 24);
  2952. this.ultraTextEditor26.TabIndex = 6;
  2953. //
  2954. // ultraTextEditor27
  2955. //
  2956. this.ultraTextEditor27.Location = new System.Drawing.Point(168, 39);
  2957. this.ultraTextEditor27.Name = "ultraTextEditor27";
  2958. this.ultraTextEditor27.Size = new System.Drawing.Size(191, 24);
  2959. this.ultraTextEditor27.TabIndex = 5;
  2960. //
  2961. // ultraTextEditor28
  2962. //
  2963. this.ultraTextEditor28.Location = new System.Drawing.Point(168, 11);
  2964. this.ultraTextEditor28.Name = "ultraTextEditor28";
  2965. this.ultraTextEditor28.Size = new System.Drawing.Size(191, 24);
  2966. this.ultraTextEditor28.TabIndex = 4;
  2967. //
  2968. // ultraLabel78
  2969. //
  2970. this.ultraLabel78.Location = new System.Drawing.Point(7, 99);
  2971. this.ultraLabel78.Name = "ultraLabel78";
  2972. this.ultraLabel78.Size = new System.Drawing.Size(147, 23);
  2973. this.ultraLabel78.TabIndex = 3;
  2974. this.ultraLabel78.Text = "办公省份";
  2975. //
  2976. // ultraLabel79
  2977. //
  2978. this.ultraLabel79.Location = new System.Drawing.Point(7, 70);
  2979. this.ultraLabel79.Name = "ultraLabel79";
  2980. this.ultraLabel79.Size = new System.Drawing.Size(147, 23);
  2981. this.ultraLabel79.TabIndex = 2;
  2982. this.ultraLabel79.Text = "国家";
  2983. //
  2984. // ultraLabel80
  2985. //
  2986. this.ultraLabel80.Location = new System.Drawing.Point(7, 41);
  2987. this.ultraLabel80.Name = "ultraLabel80";
  2988. this.ultraLabel80.Size = new System.Drawing.Size(147, 23);
  2989. this.ultraLabel80.TabIndex = 1;
  2990. this.ultraLabel80.Text = "税号/标识";
  2991. //
  2992. // ultraLabel81
  2993. //
  2994. this.ultraLabel81.Location = new System.Drawing.Point(7, 12);
  2995. this.ultraLabel81.Name = "ultraLabel81";
  2996. this.ultraLabel81.Size = new System.Drawing.Size(147, 23);
  2997. this.ultraLabel81.TabIndex = 0;
  2998. this.ultraLabel81.Text = "供货商代码";
  2999. //
  3000. // ultraPanel2
  3001. //
  3002. //
  3003. // ultraPanel2.ClientArea
  3004. //
  3005. this.ultraPanel2.ClientArea.Controls.Add(this.ultraPanel4);
  3006. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  3007. this.ultraPanel2.Location = new System.Drawing.Point(0, 40);
  3008. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3009. this.ultraPanel2.Name = "ultraPanel2";
  3010. this.ultraPanel2.Size = new System.Drawing.Size(1523, 692);
  3011. this.ultraPanel2.TabIndex = 1;
  3012. //
  3013. // ultraPanel4
  3014. //
  3015. //
  3016. // ultraPanel4.ClientArea
  3017. //
  3018. this.ultraPanel4.ClientArea.Controls.Add(this.splitContainer2);
  3019. this.ultraPanel4.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
  3020. this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  3021. this.ultraPanel4.Location = new System.Drawing.Point(0, 0);
  3022. this.ultraPanel4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3023. this.ultraPanel4.Name = "ultraPanel4";
  3024. this.ultraPanel4.Size = new System.Drawing.Size(1523, 692);
  3025. this.ultraPanel4.TabIndex = 1;
  3026. //
  3027. // splitContainer2
  3028. //
  3029. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  3030. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  3031. this.splitContainer2.Margin = new System.Windows.Forms.Padding(4);
  3032. this.splitContainer2.Name = "splitContainer2";
  3033. this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
  3034. //
  3035. // splitContainer2.Panel1
  3036. //
  3037. this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox4);
  3038. //
  3039. // splitContainer2.Panel2
  3040. //
  3041. this.splitContainer2.Panel2.Controls.Add(this.splitContainer1);
  3042. this.splitContainer2.Size = new System.Drawing.Size(1523, 342);
  3043. this.splitContainer2.SplitterDistance = 158;
  3044. this.splitContainer2.SplitterWidth = 5;
  3045. this.splitContainer2.TabIndex = 2;
  3046. //
  3047. // ultraGroupBox4
  3048. //
  3049. this.ultraGroupBox4.Controls.Add(this.ultraGrid1);
  3050. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  3051. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
  3052. this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4);
  3053. this.ultraGroupBox4.Name = "ultraGroupBox4";
  3054. this.ultraGroupBox4.Size = new System.Drawing.Size(1523, 158);
  3055. this.ultraGroupBox4.TabIndex = 2;
  3056. this.ultraGroupBox4.Text = "供应商列表";
  3057. //
  3058. // ultraGrid1
  3059. //
  3060. this.ultraGrid1.DataSource = this.dataSet1;
  3061. appearance76.BackColor = System.Drawing.SystemColors.Window;
  3062. appearance76.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3063. this.ultraGrid1.DisplayLayout.Appearance = appearance76;
  3064. ultraGridColumn1.Header.VisiblePosition = 1;
  3065. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  3066. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  3067. ultraGridColumn1.RowLayoutColumnInfo.ParentGroupIndex = 2;
  3068. ultraGridColumn1.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
  3069. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  3070. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  3071. ultraGridColumn2.Header.VisiblePosition = 2;
  3072. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  3073. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  3074. ultraGridColumn2.RowLayoutColumnInfo.ParentGroupIndex = 2;
  3075. ultraGridColumn2.RowLayoutColumnInfo.ParentGroupKey = "NewGroup2";
  3076. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  3077. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 2;
  3078. ultraGridColumn2.Width = 211;
  3079. ultraGridColumn3.Header.VisiblePosition = 17;
  3080. ultraGridColumn3.Hidden = true;
  3081. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 30;
  3082. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  3083. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  3084. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  3085. ultraGridColumn4.Header.VisiblePosition = 22;
  3086. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
  3087. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  3088. ultraGridColumn4.RowLayoutColumnInfo.ParentGroupIndex = 4;
  3089. ultraGridColumn4.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
  3090. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  3091. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  3092. ultraGridColumn5.Header.VisiblePosition = 23;
  3093. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
  3094. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  3095. ultraGridColumn5.RowLayoutColumnInfo.ParentGroupIndex = 4;
  3096. ultraGridColumn5.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
  3097. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  3098. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  3099. ultraGridColumn6.Header.Caption = "生效日期";
  3100. ultraGridColumn6.Header.VisiblePosition = 24;
  3101. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 2;
  3102. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  3103. ultraGridColumn6.RowLayoutColumnInfo.ParentGroupIndex = 5;
  3104. ultraGridColumn6.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
  3105. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  3106. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  3107. ultraGridColumn7.Header.Caption = "失效日期";
  3108. ultraGridColumn7.Header.VisiblePosition = 25;
  3109. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 4;
  3110. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  3111. ultraGridColumn7.RowLayoutColumnInfo.ParentGroupIndex = 5;
  3112. ultraGridColumn7.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
  3113. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  3114. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  3115. ultraGridColumn8.Header.VisiblePosition = 26;
  3116. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 6;
  3117. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  3118. ultraGridColumn8.RowLayoutColumnInfo.ParentGroupIndex = 1;
  3119. ultraGridColumn8.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  3120. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  3121. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 2;
  3122. ultraGridColumn9.Header.VisiblePosition = 20;
  3123. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 2;
  3124. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  3125. ultraGridColumn9.RowLayoutColumnInfo.ParentGroupIndex = 1;
  3126. ultraGridColumn9.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  3127. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  3128. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 2;
  3129. ultraGridColumn10.Header.VisiblePosition = 19;
  3130. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 0;
  3131. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  3132. ultraGridColumn10.RowLayoutColumnInfo.ParentGroupIndex = 1;
  3133. ultraGridColumn10.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  3134. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  3135. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  3136. ultraGridColumn11.Header.VisiblePosition = 9;
  3137. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 0;
  3138. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  3139. ultraGridColumn11.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3140. ultraGridColumn11.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3141. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  3142. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  3143. ultraGridColumn11.Width = 111;
  3144. ultraGridColumn12.Header.VisiblePosition = 11;
  3145. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 4;
  3146. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  3147. ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3148. ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3149. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  3150. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  3151. ultraGridColumn13.Header.VisiblePosition = 10;
  3152. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 2;
  3153. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  3154. ultraGridColumn13.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3155. ultraGridColumn13.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3156. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  3157. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 2;
  3158. ultraGridColumn14.Header.VisiblePosition = 12;
  3159. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 6;
  3160. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  3161. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3162. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3163. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  3164. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  3165. ultraGridColumn15.Header.VisiblePosition = 13;
  3166. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
  3167. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  3168. ultraGridColumn15.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3169. ultraGridColumn15.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3170. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  3171. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 2;
  3172. ultraGridColumn16.Header.VisiblePosition = 14;
  3173. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 12;
  3174. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  3175. ultraGridColumn16.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3176. ultraGridColumn16.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3177. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  3178. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 2;
  3179. ultraGridColumn17.Header.VisiblePosition = 27;
  3180. ultraGridColumn17.Hidden = true;
  3181. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 42;
  3182. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  3183. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  3184. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 2;
  3185. ultraGridColumn18.Header.VisiblePosition = 21;
  3186. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
  3187. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  3188. ultraGridColumn18.RowLayoutColumnInfo.ParentGroupIndex = 1;
  3189. ultraGridColumn18.RowLayoutColumnInfo.ParentGroupKey = "NewGroup1";
  3190. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 2;
  3191. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 2;
  3192. appearance33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3193. ultraGridColumn19.CellAppearance = appearance33;
  3194. ultraGridColumn19.Header.VisiblePosition = 6;
  3195. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 2;
  3196. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  3197. ultraGridColumn19.RowLayoutColumnInfo.ParentGroupIndex = 4;
  3198. ultraGridColumn19.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
  3199. ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
  3200. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 2;
  3201. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
  3202. ultraGridColumn19.Width = 75;
  3203. ultraGridColumn20.Header.VisiblePosition = 7;
  3204. ultraGridColumn20.Hidden = true;
  3205. ultraGridColumn21.Header.VisiblePosition = 28;
  3206. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 50;
  3207. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  3208. ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3209. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  3210. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 3;
  3211. ultraGridColumn22.Header.VisiblePosition = 29;
  3212. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 52;
  3213. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  3214. ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3215. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  3216. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 3;
  3217. ultraGridColumn23.Header.VisiblePosition = 30;
  3218. ultraGridColumn23.Hidden = true;
  3219. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 48;
  3220. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  3221. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  3222. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  3223. ultraGridColumn24.Header.VisiblePosition = 31;
  3224. ultraGridColumn24.Hidden = true;
  3225. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 50;
  3226. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  3227. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  3228. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  3229. appearance34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3230. ultraGridColumn25.CellAppearance = appearance34;
  3231. ultraGridColumn25.Header.Caption = "是否暂挂";
  3232. ultraGridColumn25.Header.VisiblePosition = 8;
  3233. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 4;
  3234. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  3235. ultraGridColumn25.RowLayoutColumnInfo.ParentGroupIndex = 4;
  3236. ultraGridColumn25.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
  3237. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
  3238. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 2;
  3239. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
  3240. ultraGridColumn25.Width = 73;
  3241. ultraGridColumn26.Header.VisiblePosition = 16;
  3242. ultraGridColumn26.Hidden = true;
  3243. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 22;
  3244. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  3245. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  3246. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  3247. ultraGridColumn27.Header.Caption = "税率";
  3248. ultraGridColumn27.Header.VisiblePosition = 18;
  3249. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 20;
  3250. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  3251. ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3252. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  3253. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 3;
  3254. ultraGridColumn28.Header.VisiblePosition = 3;
  3255. ultraGridColumn28.Hidden = true;
  3256. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 0;
  3257. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  3258. ultraGridColumn28.RowLayoutColumnInfo.ParentGroupIndex = 3;
  3259. ultraGridColumn28.RowLayoutColumnInfo.ParentGroupKey = "NewGroup3";
  3260. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  3261. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  3262. ultraGridColumn29.Header.VisiblePosition = 4;
  3263. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
  3264. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  3265. ultraGridColumn29.RowLayoutColumnInfo.ParentGroupIndex = 5;
  3266. ultraGridColumn29.RowLayoutColumnInfo.ParentGroupKey = "营业执照";
  3267. ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 29);
  3268. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  3269. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  3270. ultraGridColumn30.Header.VisiblePosition = 5;
  3271. ultraGridColumn30.Hidden = true;
  3272. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 20;
  3273. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  3274. ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3275. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  3276. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 4;
  3277. ultraGridColumn31.Header.VisiblePosition = 15;
  3278. ultraGridColumn31.Hidden = true;
  3279. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 26;
  3280. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  3281. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  3282. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  3283. ultraGridColumn32.Header.VisiblePosition = 32;
  3284. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 10;
  3285. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  3286. ultraGridColumn32.RowLayoutColumnInfo.ParentGroupIndex = 0;
  3287. ultraGridColumn32.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  3288. ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 26);
  3289. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  3290. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 2;
  3291. appearance35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  3292. ultraGridColumn33.CellAppearance = appearance35;
  3293. ultraGridColumn33.Header.VisiblePosition = 33;
  3294. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
  3295. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  3296. ultraGridColumn33.RowLayoutColumnInfo.ParentGroupIndex = 4;
  3297. ultraGridColumn33.RowLayoutColumnInfo.ParentGroupKey = "NewGroup4";
  3298. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 16);
  3299. ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 28);
  3300. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 2;
  3301. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 2;
  3302. ultraGridColumn34.Header.VisiblePosition = 34;
  3303. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 44;
  3304. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  3305. ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3306. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  3307. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
  3308. ultraGridColumn35.Header.VisiblePosition = 35;
  3309. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 46;
  3310. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  3311. ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3312. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  3313. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 3;
  3314. ultraGridColumn36.Header.VisiblePosition = 36;
  3315. ultraGridColumn36.Hidden = true;
  3316. ultraGridColumn37.Header.VisiblePosition = 37;
  3317. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 48;
  3318. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  3319. ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  3320. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 2;
  3321. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 3;
  3322. ultraGridColumn38.DataType = typeof(bool);
  3323. ultraGridColumn38.Header.Caption = "序号";
  3324. ultraGridColumn38.Header.VisiblePosition = 0;
  3325. ultraGridColumn38.Hidden = true;
  3326. ultraGridColumn38.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  3327. ultraGridBand1.Columns.AddRange(new object[] {
  3328. ultraGridColumn1,
  3329. ultraGridColumn2,
  3330. ultraGridColumn3,
  3331. ultraGridColumn4,
  3332. ultraGridColumn5,
  3333. ultraGridColumn6,
  3334. ultraGridColumn7,
  3335. ultraGridColumn8,
  3336. ultraGridColumn9,
  3337. ultraGridColumn10,
  3338. ultraGridColumn11,
  3339. ultraGridColumn12,
  3340. ultraGridColumn13,
  3341. ultraGridColumn14,
  3342. ultraGridColumn15,
  3343. ultraGridColumn16,
  3344. ultraGridColumn17,
  3345. ultraGridColumn18,
  3346. ultraGridColumn19,
  3347. ultraGridColumn20,
  3348. ultraGridColumn21,
  3349. ultraGridColumn22,
  3350. ultraGridColumn23,
  3351. ultraGridColumn24,
  3352. ultraGridColumn25,
  3353. ultraGridColumn26,
  3354. ultraGridColumn27,
  3355. ultraGridColumn28,
  3356. ultraGridColumn29,
  3357. ultraGridColumn30,
  3358. ultraGridColumn31,
  3359. ultraGridColumn32,
  3360. ultraGridColumn33,
  3361. ultraGridColumn34,
  3362. ultraGridColumn35,
  3363. ultraGridColumn36,
  3364. ultraGridColumn37,
  3365. ultraGridColumn38});
  3366. ultraGridGroup1.Header.Caption = "供方联络信息";
  3367. ultraGridGroup1.Key = "NewGroup0";
  3368. ultraGridGroup1.RowLayoutGroupInfo.LabelSpan = 1;
  3369. ultraGridGroup1.RowLayoutGroupInfo.OriginX = 22;
  3370. ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
  3371. ultraGridGroup1.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
  3372. ultraGridGroup1.RowLayoutGroupInfo.SpanX = 14;
  3373. ultraGridGroup1.RowLayoutGroupInfo.SpanY = 3;
  3374. ultraGridGroup2.Header.Caption = "分类信息";
  3375. ultraGridGroup2.Key = "NewGroup1";
  3376. ultraGridGroup2.RowLayoutGroupInfo.LabelSpan = 1;
  3377. ultraGridGroup2.RowLayoutGroupInfo.OriginX = 36;
  3378. ultraGridGroup2.RowLayoutGroupInfo.OriginY = 0;
  3379. ultraGridGroup2.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
  3380. ultraGridGroup2.RowLayoutGroupInfo.SpanX = 8;
  3381. ultraGridGroup2.RowLayoutGroupInfo.SpanY = 3;
  3382. ultraGridGroup3.Header.Caption = "供应商";
  3383. ultraGridGroup3.Key = "NewGroup2";
  3384. ultraGridGroup3.RowLayoutGroupInfo.LabelSpan = 1;
  3385. ultraGridGroup3.RowLayoutGroupInfo.OriginX = 0;
  3386. ultraGridGroup3.RowLayoutGroupInfo.OriginY = 0;
  3387. ultraGridGroup3.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
  3388. ultraGridGroup3.RowLayoutGroupInfo.SpanX = 4;
  3389. ultraGridGroup3.RowLayoutGroupInfo.SpanY = 3;
  3390. ultraGridGroup4.Header.Caption = "税号";
  3391. ultraGridGroup4.Hidden = true;
  3392. ultraGridGroup4.Key = "NewGroup3";
  3393. ultraGridGroup4.RowLayoutGroupInfo.LabelSpan = 1;
  3394. ultraGridGroup4.RowLayoutGroupInfo.OriginX = 14;
  3395. ultraGridGroup4.RowLayoutGroupInfo.OriginY = 0;
  3396. ultraGridGroup4.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
  3397. ultraGridGroup4.RowLayoutGroupInfo.SpanX = 6;
  3398. ultraGridGroup4.RowLayoutGroupInfo.SpanY = 3;
  3399. ultraGridGroup5.Header.Caption = "供方状态";
  3400. ultraGridGroup5.Key = "NewGroup4";
  3401. ultraGridGroup5.RowLayoutGroupInfo.LabelSpan = 1;
  3402. ultraGridGroup5.RowLayoutGroupInfo.OriginX = 4;
  3403. ultraGridGroup5.RowLayoutGroupInfo.OriginY = 0;
  3404. ultraGridGroup5.RowLayoutGroupInfo.PreferredLabelSize = new System.Drawing.Size(0, 30);
  3405. ultraGridGroup5.RowLayoutGroupInfo.SpanX = 10;
  3406. ultraGridGroup5.RowLayoutGroupInfo.SpanY = 3;
  3407. ultraGridGroup6.Key = "营业执照";
  3408. ultraGridGroup6.RowLayoutGroupInfo.OriginX = 14;
  3409. ultraGridGroup6.RowLayoutGroupInfo.OriginY = 0;
  3410. ultraGridGroup6.RowLayoutGroupInfo.SpanX = 6;
  3411. ultraGridGroup6.RowLayoutGroupInfo.SpanY = 4;
  3412. ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
  3413. ultraGridGroup1,
  3414. ultraGridGroup2,
  3415. ultraGridGroup3,
  3416. ultraGridGroup4,
  3417. ultraGridGroup5,
  3418. ultraGridGroup6});
  3419. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  3420. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  3421. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3422. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3423. appearance80.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3424. appearance80.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3425. appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3426. appearance80.BorderColor = System.Drawing.SystemColors.Window;
  3427. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance80;
  3428. appearance81.ForeColor = System.Drawing.SystemColors.GrayText;
  3429. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance81;
  3430. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3431. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  3432. appearance82.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3433. appearance82.BackColor2 = System.Drawing.SystemColors.Control;
  3434. appearance82.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3435. appearance82.ForeColor = System.Drawing.SystemColors.GrayText;
  3436. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance82;
  3437. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  3438. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  3439. appearance83.BackColor = System.Drawing.SystemColors.Window;
  3440. appearance83.ForeColor = System.Drawing.SystemColors.ControlText;
  3441. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance83;
  3442. appearance84.BackColor = System.Drawing.SystemColors.Highlight;
  3443. appearance84.ForeColor = System.Drawing.SystemColors.HighlightText;
  3444. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance84;
  3445. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3446. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3447. appearance85.BackColor = System.Drawing.SystemColors.Window;
  3448. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance85;
  3449. appearance86.BorderColor = System.Drawing.Color.Silver;
  3450. appearance86.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3451. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance86;
  3452. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3453. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  3454. appearance87.BackColor = System.Drawing.SystemColors.Control;
  3455. appearance87.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3456. appearance87.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3457. appearance87.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3458. appearance87.BorderColor = System.Drawing.SystemColors.Window;
  3459. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance87;
  3460. appearance88.TextHAlignAsString = "Left";
  3461. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance88;
  3462. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3463. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3464. appearance89.BackColor = System.Drawing.SystemColors.Window;
  3465. appearance89.BorderColor = System.Drawing.Color.Silver;
  3466. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance89;
  3467. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3468. appearance90.BackColor = System.Drawing.SystemColors.ControlLight;
  3469. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance90;
  3470. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3471. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3472. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3473. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  3474. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3475. this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
  3476. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3477. this.ultraGrid1.Name = "ultraGrid1";
  3478. this.ultraGrid1.Size = new System.Drawing.Size(1517, 134);
  3479. this.ultraGrid1.TabIndex = 1;
  3480. this.ultraGrid1.Text = "ultraGrid1";
  3481. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  3482. this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
  3483. //
  3484. // splitContainer1
  3485. //
  3486. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  3487. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  3488. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  3489. this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3490. this.splitContainer1.Name = "splitContainer1";
  3491. //
  3492. // splitContainer1.Panel1
  3493. //
  3494. this.splitContainer1.Panel1.Controls.Add(this.splitContainer3);
  3495. //
  3496. // splitContainer1.Panel2
  3497. //
  3498. this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBox2);
  3499. this.splitContainer1.Size = new System.Drawing.Size(1523, 179);
  3500. this.splitContainer1.SplitterDistance = 960;
  3501. this.splitContainer1.TabIndex = 1;
  3502. //
  3503. // splitContainer3
  3504. //
  3505. this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
  3506. this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  3507. this.splitContainer3.Margin = new System.Windows.Forms.Padding(4);
  3508. this.splitContainer3.Name = "splitContainer3";
  3509. //
  3510. // splitContainer3.Panel1
  3511. //
  3512. this.splitContainer3.Panel1.Controls.Add(this.ultraGroupBox1);
  3513. //
  3514. // splitContainer3.Panel2
  3515. //
  3516. this.splitContainer3.Panel2.Controls.Add(this.所属物料);
  3517. this.splitContainer3.Size = new System.Drawing.Size(960, 179);
  3518. this.splitContainer3.SplitterDistance = 316;
  3519. this.splitContainer3.SplitterWidth = 5;
  3520. this.splitContainer3.TabIndex = 1;
  3521. //
  3522. // ultraGroupBox1
  3523. //
  3524. this.ultraGroupBox1.Controls.Add(this.ultraGrid5);
  3525. this.ultraGroupBox1.Controls.Add(this.ultraGrid2);
  3526. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  3527. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  3528. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3529. this.ultraGroupBox1.Name = "ultraGroupBox1";
  3530. this.ultraGroupBox1.Size = new System.Drawing.Size(316, 179);
  3531. this.ultraGroupBox1.TabIndex = 0;
  3532. this.ultraGroupBox1.Text = "银行信息列表";
  3533. //
  3534. // ultraGrid5
  3535. //
  3536. this.ultraGrid5.DataSource = this.dataSet5;
  3537. appearance2.BackColor = System.Drawing.SystemColors.Window;
  3538. appearance2.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3539. this.ultraGrid5.DisplayLayout.Appearance = appearance2;
  3540. ultraGridColumn39.Header.VisiblePosition = 0;
  3541. ultraGridColumn40.Header.VisiblePosition = 1;
  3542. ultraGridColumn41.Header.VisiblePosition = 2;
  3543. ultraGridColumn41.Hidden = true;
  3544. ultraGridBand2.Columns.AddRange(new object[] {
  3545. ultraGridColumn39,
  3546. ultraGridColumn40,
  3547. ultraGridColumn41});
  3548. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  3549. this.ultraGrid5.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3550. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3551. appearance3.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3552. appearance3.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3553. appearance3.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3554. appearance3.BorderColor = System.Drawing.SystemColors.Window;
  3555. this.ultraGrid5.DisplayLayout.GroupByBox.Appearance = appearance3;
  3556. appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
  3557. this.ultraGrid5.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
  3558. this.ultraGrid5.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3559. appearance5.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3560. appearance5.BackColor2 = System.Drawing.SystemColors.Control;
  3561. appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3562. appearance5.ForeColor = System.Drawing.SystemColors.GrayText;
  3563. this.ultraGrid5.DisplayLayout.GroupByBox.PromptAppearance = appearance5;
  3564. this.ultraGrid5.DisplayLayout.MaxColScrollRegions = 1;
  3565. this.ultraGrid5.DisplayLayout.MaxRowScrollRegions = 1;
  3566. appearance9.BackColor = System.Drawing.SystemColors.Window;
  3567. appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
  3568. this.ultraGrid5.DisplayLayout.Override.ActiveCellAppearance = appearance9;
  3569. appearance30.BackColor = System.Drawing.SystemColors.Highlight;
  3570. appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
  3571. this.ultraGrid5.DisplayLayout.Override.ActiveRowAppearance = appearance30;
  3572. this.ultraGrid5.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3573. this.ultraGrid5.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3574. appearance32.BackColor = System.Drawing.SystemColors.Window;
  3575. this.ultraGrid5.DisplayLayout.Override.CardAreaAppearance = appearance32;
  3576. appearance28.BorderColor = System.Drawing.Color.Silver;
  3577. appearance28.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3578. this.ultraGrid5.DisplayLayout.Override.CellAppearance = appearance28;
  3579. this.ultraGrid5.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3580. this.ultraGrid5.DisplayLayout.Override.CellPadding = 0;
  3581. appearance8.BackColor = System.Drawing.SystemColors.Control;
  3582. appearance8.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3583. appearance8.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3584. appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3585. appearance8.BorderColor = System.Drawing.SystemColors.Window;
  3586. this.ultraGrid5.DisplayLayout.Override.GroupByRowAppearance = appearance8;
  3587. appearance7.TextHAlignAsString = "Left";
  3588. this.ultraGrid5.DisplayLayout.Override.HeaderAppearance = appearance7;
  3589. this.ultraGrid5.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3590. this.ultraGrid5.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3591. appearance31.BackColor = System.Drawing.SystemColors.Window;
  3592. appearance31.BorderColor = System.Drawing.Color.Silver;
  3593. this.ultraGrid5.DisplayLayout.Override.RowAppearance = appearance31;
  3594. this.ultraGrid5.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3595. appearance29.BackColor = System.Drawing.SystemColors.ControlLight;
  3596. this.ultraGrid5.DisplayLayout.Override.TemplateAddRowAppearance = appearance29;
  3597. this.ultraGrid5.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3598. this.ultraGrid5.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3599. this.ultraGrid5.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3600. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  3601. this.ultraGrid5.Location = new System.Drawing.Point(3, 172);
  3602. this.ultraGrid5.Name = "ultraGrid5";
  3603. this.ultraGrid5.Size = new System.Drawing.Size(310, 4);
  3604. this.ultraGrid5.TabIndex = 1;
  3605. this.ultraGrid5.Text = "ultraGrid5";
  3606. this.ultraGrid5.AfterRowActivate += new System.EventHandler(this.ultraGrid5_AfterRowActivate);
  3607. this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
  3608. //
  3609. // dataSet5
  3610. //
  3611. this.dataSet5.DataSetName = "NewDataSet";
  3612. this.dataSet5.Tables.AddRange(new System.Data.DataTable[] {
  3613. this.dataTable5});
  3614. //
  3615. // dataTable5
  3616. //
  3617. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  3618. this.dataColumn59,
  3619. this.dataColumn60,
  3620. this.dataColumn61});
  3621. this.dataTable5.TableName = "Table1";
  3622. //
  3623. // dataColumn59
  3624. //
  3625. this.dataColumn59.Caption = "评级";
  3626. this.dataColumn59.ColumnName = "rate";
  3627. //
  3628. // dataColumn60
  3629. //
  3630. this.dataColumn60.Caption = "年份";
  3631. this.dataColumn60.ColumnName = "rateYear";
  3632. //
  3633. // dataColumn61
  3634. //
  3635. this.dataColumn61.ColumnName = "id";
  3636. //
  3637. // ultraGrid2
  3638. //
  3639. this.ultraGrid2.DataSource = this.dataSet2;
  3640. appearance13.BackColor = System.Drawing.SystemColors.Window;
  3641. appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3642. this.ultraGrid2.DisplayLayout.Appearance = appearance13;
  3643. ultraGridColumn42.Header.VisiblePosition = 2;
  3644. ultraGridColumn42.Width = 181;
  3645. ultraGridColumn43.Header.VisiblePosition = 1;
  3646. ultraGridColumn43.Width = 147;
  3647. ultraGridColumn44.Header.VisiblePosition = 3;
  3648. ultraGridColumn44.Hidden = true;
  3649. ultraGridColumn45.Header.VisiblePosition = 4;
  3650. ultraGridColumn45.Hidden = true;
  3651. ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3652. ultraGridColumn46.Header.VisiblePosition = 5;
  3653. ultraGridColumn47.DataType = typeof(bool);
  3654. ultraGridColumn47.Header.Caption = "选择";
  3655. ultraGridColumn47.Header.VisiblePosition = 0;
  3656. ultraGridColumn47.Hidden = true;
  3657. ultraGridColumn47.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  3658. ultraGridBand3.Columns.AddRange(new object[] {
  3659. ultraGridColumn42,
  3660. ultraGridColumn43,
  3661. ultraGridColumn44,
  3662. ultraGridColumn45,
  3663. ultraGridColumn46,
  3664. ultraGridColumn47});
  3665. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  3666. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3667. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3668. appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3669. appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3670. appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3671. appearance14.BorderColor = System.Drawing.SystemColors.Window;
  3672. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance14;
  3673. appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
  3674. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
  3675. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3676. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  3677. appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3678. appearance16.BackColor2 = System.Drawing.SystemColors.Control;
  3679. appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3680. appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
  3681. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
  3682. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  3683. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  3684. appearance17.BackColor = System.Drawing.SystemColors.Window;
  3685. appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
  3686. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance17;
  3687. appearance18.BackColor = System.Drawing.SystemColors.Highlight;
  3688. appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
  3689. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance18;
  3690. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3691. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3692. appearance19.BackColor = System.Drawing.SystemColors.Window;
  3693. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance19;
  3694. appearance20.BorderColor = System.Drawing.Color.Silver;
  3695. appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3696. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance20;
  3697. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3698. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  3699. appearance21.BackColor = System.Drawing.SystemColors.Control;
  3700. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3701. appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3702. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3703. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  3704. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance21;
  3705. appearance22.TextHAlignAsString = "Left";
  3706. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance22;
  3707. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3708. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3709. appearance23.BackColor = System.Drawing.SystemColors.Window;
  3710. appearance23.BorderColor = System.Drawing.Color.Silver;
  3711. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance23;
  3712. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3713. appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
  3714. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
  3715. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3716. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3717. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3718. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Top;
  3719. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3720. this.ultraGrid2.Location = new System.Drawing.Point(3, 21);
  3721. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3722. this.ultraGrid2.Name = "ultraGrid2";
  3723. this.ultraGrid2.Size = new System.Drawing.Size(310, 151);
  3724. this.ultraGrid2.TabIndex = 0;
  3725. this.ultraGrid2.Text = "ultraGrid2";
  3726. this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
  3727. this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
  3728. //
  3729. // 所属物料
  3730. //
  3731. this.所属物料.Controls.Add(this.ultraGrid4);
  3732. this.所属物料.Dock = System.Windows.Forms.DockStyle.Fill;
  3733. this.所属物料.Location = new System.Drawing.Point(0, 0);
  3734. this.所属物料.Margin = new System.Windows.Forms.Padding(4);
  3735. this.所属物料.Name = "所属物料";
  3736. this.所属物料.Size = new System.Drawing.Size(639, 179);
  3737. this.所属物料.TabIndex = 0;
  3738. this.所属物料.Text = "可供物料";
  3739. //
  3740. // ultraGrid4
  3741. //
  3742. this.ultraGrid4.DataMember = "Table1";
  3743. this.ultraGrid4.DataSource = this.dataSet4;
  3744. appearance10.BackColor = System.Drawing.SystemColors.Window;
  3745. appearance10.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3746. this.ultraGrid4.DisplayLayout.Appearance = appearance10;
  3747. ultraGridColumn48.Header.VisiblePosition = 1;
  3748. ultraGridColumn49.Header.VisiblePosition = 2;
  3749. ultraGridColumn50.Header.VisiblePosition = 0;
  3750. ultraGridBand4.Columns.AddRange(new object[] {
  3751. ultraGridColumn48,
  3752. ultraGridColumn49,
  3753. ultraGridColumn50});
  3754. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  3755. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3756. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3757. appearance11.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3758. appearance11.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3759. appearance11.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3760. appearance11.BorderColor = System.Drawing.SystemColors.Window;
  3761. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance11;
  3762. appearance25.ForeColor = System.Drawing.SystemColors.GrayText;
  3763. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance25;
  3764. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3765. this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
  3766. appearance12.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3767. appearance12.BackColor2 = System.Drawing.SystemColors.Control;
  3768. appearance12.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3769. appearance12.ForeColor = System.Drawing.SystemColors.GrayText;
  3770. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance12;
  3771. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  3772. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  3773. appearance52.BackColor = System.Drawing.SystemColors.Window;
  3774. appearance52.ForeColor = System.Drawing.SystemColors.ControlText;
  3775. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance52;
  3776. appearance55.BackColor = System.Drawing.SystemColors.Highlight;
  3777. appearance55.ForeColor = System.Drawing.SystemColors.HighlightText;
  3778. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance55;
  3779. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3780. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3781. appearance57.BackColor = System.Drawing.SystemColors.Window;
  3782. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance57;
  3783. appearance53.BorderColor = System.Drawing.Color.Silver;
  3784. appearance53.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3785. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance53;
  3786. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3787. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  3788. appearance51.BackColor = System.Drawing.SystemColors.Control;
  3789. appearance51.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3790. appearance51.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3791. appearance51.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3792. appearance51.BorderColor = System.Drawing.SystemColors.Window;
  3793. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance51;
  3794. appearance26.TextHAlignAsString = "Left";
  3795. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance26;
  3796. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3797. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3798. appearance56.BackColor = System.Drawing.SystemColors.Window;
  3799. appearance56.BorderColor = System.Drawing.Color.Silver;
  3800. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance56;
  3801. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3802. appearance54.BackColor = System.Drawing.SystemColors.ControlLight;
  3803. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance54;
  3804. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3805. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3806. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3807. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  3808. this.ultraGrid4.Location = new System.Drawing.Point(3, 21);
  3809. this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
  3810. this.ultraGrid4.Name = "ultraGrid4";
  3811. this.ultraGrid4.Size = new System.Drawing.Size(633, 155);
  3812. this.ultraGrid4.TabIndex = 0;
  3813. this.ultraGrid4.Text = "ultraGrid4";
  3814. //
  3815. // ultraGroupBox2
  3816. //
  3817. this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
  3818. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  3819. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  3820. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3821. this.ultraGroupBox2.Name = "ultraGroupBox2";
  3822. this.ultraGroupBox2.Size = new System.Drawing.Size(559, 179);
  3823. this.ultraGroupBox2.TabIndex = 0;
  3824. this.ultraGroupBox2.Text = "资质信息列表";
  3825. //
  3826. // ultraGrid3
  3827. //
  3828. this.ultraGrid3.DataSource = this.dataSet3;
  3829. appearance37.BackColor = System.Drawing.SystemColors.Window;
  3830. appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3831. this.ultraGrid3.DisplayLayout.Appearance = appearance37;
  3832. ultraGridColumn51.Header.VisiblePosition = 6;
  3833. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 14;
  3834. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  3835. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  3836. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 2;
  3837. ultraGridColumn52.Header.VisiblePosition = 7;
  3838. ultraGridColumn52.RowLayoutColumnInfo.OriginX = 16;
  3839. ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
  3840. ultraGridColumn52.RowLayoutColumnInfo.SpanX = 2;
  3841. ultraGridColumn52.RowLayoutColumnInfo.SpanY = 2;
  3842. ultraGridColumn53.Header.Caption = "证书名";
  3843. ultraGridColumn53.Header.VisiblePosition = 1;
  3844. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 2;
  3845. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  3846. ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(138, 0);
  3847. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
  3848. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 2;
  3849. ultraGridColumn54.Header.VisiblePosition = 4;
  3850. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 6;
  3851. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  3852. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
  3853. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
  3854. ultraGridColumn55.Header.VisiblePosition = 5;
  3855. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 8;
  3856. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  3857. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
  3858. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
  3859. ultraGridColumn56.Header.VisiblePosition = 2;
  3860. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 13;
  3861. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  3862. ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(137, 0);
  3863. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
  3864. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
  3865. ultraGridColumn57.Header.VisiblePosition = 8;
  3866. ultraGridColumn57.Hidden = true;
  3867. ultraGridColumn58.Header.Caption = "编号";
  3868. ultraGridColumn58.Header.VisiblePosition = 9;
  3869. ultraGridColumn58.RowLayoutColumnInfo.OriginX = 0;
  3870. ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
  3871. ultraGridColumn58.RowLayoutColumnInfo.SpanX = 2;
  3872. ultraGridColumn58.RowLayoutColumnInfo.SpanY = 2;
  3873. ultraGridColumn59.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  3874. ultraGridColumn59.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3875. ultraGridColumn59.EditorComponent = this.craftImg;
  3876. ultraGridColumn59.Header.Caption = "文件";
  3877. ultraGridColumn59.Header.VisiblePosition = 3;
  3878. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 4;
  3879. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  3880. ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(183, 0);
  3881. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
  3882. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
  3883. ultraGridColumn60.Header.VisiblePosition = 10;
  3884. ultraGridColumn60.Hidden = true;
  3885. ultraGridColumn61.Header.Caption = "序列号";
  3886. ultraGridColumn61.Header.VisiblePosition = 11;
  3887. ultraGridColumn61.Hidden = true;
  3888. ultraGridColumn62.Header.VisiblePosition = 12;
  3889. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 10;
  3890. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  3891. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
  3892. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
  3893. ultraGridColumn63.Header.VisiblePosition = 13;
  3894. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 12;
  3895. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  3896. ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(137, 0);
  3897. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
  3898. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
  3899. ultraGridColumn64.DataType = typeof(bool);
  3900. ultraGridColumn64.Header.Caption = "选择";
  3901. ultraGridColumn64.Header.VisiblePosition = 0;
  3902. ultraGridColumn64.Hidden = true;
  3903. ultraGridColumn64.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  3904. ultraGridBand5.Columns.AddRange(new object[] {
  3905. ultraGridColumn51,
  3906. ultraGridColumn52,
  3907. ultraGridColumn53,
  3908. ultraGridColumn54,
  3909. ultraGridColumn55,
  3910. ultraGridColumn56,
  3911. ultraGridColumn57,
  3912. ultraGridColumn58,
  3913. ultraGridColumn59,
  3914. ultraGridColumn60,
  3915. ultraGridColumn61,
  3916. ultraGridColumn62,
  3917. ultraGridColumn63,
  3918. ultraGridColumn64});
  3919. ultraGridBand5.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  3920. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  3921. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3922. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3923. appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3924. appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3925. appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3926. appearance38.BorderColor = System.Drawing.SystemColors.Window;
  3927. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance38;
  3928. appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
  3929. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
  3930. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3931. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  3932. appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3933. appearance40.BackColor2 = System.Drawing.SystemColors.Control;
  3934. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3935. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  3936. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
  3937. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  3938. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  3939. appearance41.BackColor = System.Drawing.SystemColors.Window;
  3940. appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
  3941. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance41;
  3942. appearance42.BackColor = System.Drawing.SystemColors.Highlight;
  3943. appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
  3944. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance42;
  3945. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3946. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3947. appearance43.BackColor = System.Drawing.SystemColors.Window;
  3948. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance43;
  3949. appearance44.BorderColor = System.Drawing.Color.Silver;
  3950. appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3951. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance44;
  3952. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3953. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  3954. appearance45.BackColor = System.Drawing.SystemColors.Control;
  3955. appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3956. appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3957. appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3958. appearance45.BorderColor = System.Drawing.SystemColors.Window;
  3959. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance45;
  3960. appearance46.TextHAlignAsString = "Left";
  3961. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance46;
  3962. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3963. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3964. appearance47.BackColor = System.Drawing.SystemColors.Window;
  3965. appearance47.BorderColor = System.Drawing.Color.Silver;
  3966. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance47;
  3967. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3968. appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
  3969. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
  3970. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3971. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3972. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3973. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  3974. this.ultraGrid3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3975. this.ultraGrid3.Location = new System.Drawing.Point(3, 21);
  3976. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3977. this.ultraGrid3.Name = "ultraGrid3";
  3978. this.ultraGrid3.Size = new System.Drawing.Size(553, 155);
  3979. this.ultraGrid3.TabIndex = 0;
  3980. this.ultraGrid3.Text = "ultraGrid3";
  3981. this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
  3982. this.ultraGrid3.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
  3983. //
  3984. // ultraExpandableGroupBox1
  3985. //
  3986. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  3987. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  3988. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1523, 350);
  3989. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
  3990. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 342);
  3991. this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  3992. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  3993. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1523, 350);
  3994. this.ultraExpandableGroupBox1.TabIndex = 0;
  3995. this.ultraExpandableGroupBox1.Text = "编辑区域";
  3996. //
  3997. // ultraExpandableGroupBoxPanel1
  3998. //
  3999. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTabControl1);
  4000. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  4001. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 26);
  4002. this.ultraExpandableGroupBoxPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4003. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  4004. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1517, 321);
  4005. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  4006. //
  4007. // ultraTabControl1
  4008. //
  4009. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  4010. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  4011. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  4012. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl4);
  4013. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  4014. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  4015. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  4016. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4017. this.ultraTabControl1.Name = "ultraTabControl1";
  4018. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  4019. this.ultraTabControl1.Size = new System.Drawing.Size(1517, 321);
  4020. this.ultraTabControl1.TabIndex = 1;
  4021. ultraTab5.TabPage = this.ultraTabPageControl1;
  4022. ultraTab5.Text = "基本信息";
  4023. ultraTab7.TabPage = this.ultraTabPageControl3;
  4024. ultraTab7.Text = "银行信息";
  4025. ultraTab8.TabPage = this.ultraTabPageControl4;
  4026. ultraTab8.Text = "资质信息";
  4027. ultraTab1.TabPage = this.ultraTabPageControl2;
  4028. ultraTab1.Text = "评级信息";
  4029. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  4030. ultraTab5,
  4031. ultraTab7,
  4032. ultraTab8,
  4033. ultraTab1});
  4034. this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
  4035. //
  4036. // ultraTabSharedControlsPage1
  4037. //
  4038. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  4039. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4040. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  4041. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1515, 295);
  4042. //
  4043. // ultraGroupBox3
  4044. //
  4045. this.ultraGroupBox3.Controls.Add(this.cop_suppType);
  4046. this.ultraGroupBox3.Controls.Add(this.ultraLabel30);
  4047. this.ultraGroupBox3.Controls.Add(this.ultraLabel92);
  4048. this.ultraGroupBox3.Controls.Add(this.ultraLabel17);
  4049. this.ultraGroupBox3.Controls.Add(this.QsuspendStatus);
  4050. this.ultraGroupBox3.Controls.Add(this.Qstatus);
  4051. this.ultraGroupBox3.Controls.Add(this.textBox3);
  4052. this.ultraGroupBox3.Controls.Add(this.ultraLabel91);
  4053. this.ultraGroupBox3.Controls.Add(this.ultraLabel89);
  4054. this.ultraGroupBox3.Controls.Add(this.ultraLabel31);
  4055. this.ultraGroupBox3.Controls.Add(this.textBox2);
  4056. this.ultraGroupBox3.Controls.Add(this.textBox1);
  4057. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  4058. this.ultraGroupBox3.Location = new System.Drawing.Point(0, 0);
  4059. this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
  4060. this.ultraGroupBox3.Name = "ultraGroupBox3";
  4061. this.ultraGroupBox3.Size = new System.Drawing.Size(1523, 40);
  4062. this.ultraGroupBox3.TabIndex = 2;
  4063. //
  4064. // cop_suppType
  4065. //
  4066. this.cop_suppType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  4067. valueListItem38.DataValue = " ";
  4068. valueListItem38.DisplayText = "全部";
  4069. valueListItem20.DataValue = "1";
  4070. valueListItem20.DisplayText = "未生效";
  4071. valueListItem35.DataValue = "2";
  4072. valueListItem35.DisplayText = "审批中";
  4073. valueListItem36.DataValue = "3";
  4074. valueListItem36.DisplayText = "已审批";
  4075. valueListItem37.DataValue = "4";
  4076. valueListItem37.DisplayText = "已生效";
  4077. this.cop_suppType.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  4078. valueListItem38,
  4079. valueListItem20,
  4080. valueListItem35,
  4081. valueListItem36,
  4082. valueListItem37});
  4083. this.cop_suppType.Location = new System.Drawing.Point(647, 6);
  4084. this.cop_suppType.Margin = new System.Windows.Forms.Padding(4);
  4085. this.cop_suppType.Name = "cop_suppType";
  4086. this.cop_suppType.Size = new System.Drawing.Size(124, 24);
  4087. this.cop_suppType.TabIndex = 23;
  4088. //
  4089. // ultraLabel30
  4090. //
  4091. this.ultraLabel30.AutoSize = true;
  4092. this.ultraLabel30.Location = new System.Drawing.Point(572, 9);
  4093. this.ultraLabel30.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4094. this.ultraLabel30.Name = "ultraLabel30";
  4095. this.ultraLabel30.Size = new System.Drawing.Size(67, 19);
  4096. this.ultraLabel30.TabIndex = 22;
  4097. this.ultraLabel30.Text = "供方类型";
  4098. //
  4099. // ultraLabel92
  4100. //
  4101. this.ultraLabel92.AutoSize = true;
  4102. this.ultraLabel92.Location = new System.Drawing.Point(992, 9);
  4103. this.ultraLabel92.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4104. this.ultraLabel92.Name = "ultraLabel92";
  4105. this.ultraLabel92.Size = new System.Drawing.Size(67, 19);
  4106. this.ultraLabel92.TabIndex = 21;
  4107. this.ultraLabel92.Text = "是否暂挂";
  4108. //
  4109. // ultraLabel17
  4110. //
  4111. this.ultraLabel17.AutoSize = true;
  4112. this.ultraLabel17.Location = new System.Drawing.Point(784, 9);
  4113. this.ultraLabel17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4114. this.ultraLabel17.Name = "ultraLabel17";
  4115. this.ultraLabel17.Size = new System.Drawing.Size(67, 19);
  4116. this.ultraLabel17.TabIndex = 20;
  4117. this.ultraLabel17.Text = "审批状态";
  4118. //
  4119. // QsuspendStatus
  4120. //
  4121. this.QsuspendStatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  4122. valueListItem48.DataValue = " ";
  4123. valueListItem48.DisplayText = "全部";
  4124. valueListItem49.DataValue = "0";
  4125. valueListItem49.DisplayText = "正常";
  4126. valueListItem50.DataValue = "1";
  4127. valueListItem50.DisplayText = "暂挂";
  4128. this.QsuspendStatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  4129. valueListItem48,
  4130. valueListItem49,
  4131. valueListItem50});
  4132. this.QsuspendStatus.Location = new System.Drawing.Point(1071, 6);
  4133. this.QsuspendStatus.Margin = new System.Windows.Forms.Padding(4);
  4134. this.QsuspendStatus.Name = "QsuspendStatus";
  4135. this.QsuspendStatus.Size = new System.Drawing.Size(124, 24);
  4136. this.QsuspendStatus.TabIndex = 19;
  4137. //
  4138. // Qstatus
  4139. //
  4140. this.Qstatus.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  4141. valueListItem1.DataValue = " ";
  4142. valueListItem1.DisplayText = "全部";
  4143. valueListItem2.DataValue = "1";
  4144. valueListItem2.DisplayText = "未生效";
  4145. valueListItem3.DataValue = "2";
  4146. valueListItem3.DisplayText = "审批中";
  4147. valueListItem7.DataValue = "3";
  4148. valueListItem7.DisplayText = "已审批";
  4149. valueListItem8.DataValue = "4";
  4150. valueListItem8.DisplayText = "已生效";
  4151. valueListItem9.DataValue = "9";
  4152. valueListItem9.DisplayText = "已作废";
  4153. this.Qstatus.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  4154. valueListItem1,
  4155. valueListItem2,
  4156. valueListItem3,
  4157. valueListItem7,
  4158. valueListItem8,
  4159. valueListItem9});
  4160. this.Qstatus.Location = new System.Drawing.Point(856, 6);
  4161. this.Qstatus.Margin = new System.Windows.Forms.Padding(4);
  4162. this.Qstatus.Name = "Qstatus";
  4163. this.Qstatus.Size = new System.Drawing.Size(124, 24);
  4164. this.Qstatus.TabIndex = 18;
  4165. //
  4166. // textBox3
  4167. //
  4168. this.textBox3.Location = new System.Drawing.Point(61, 6);
  4169. this.textBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4170. this.textBox3.Name = "textBox3";
  4171. this.textBox3.Size = new System.Drawing.Size(123, 25);
  4172. this.textBox3.TabIndex = 17;
  4173. //
  4174. // ultraLabel91
  4175. //
  4176. this.ultraLabel91.AutoSize = true;
  4177. this.ultraLabel91.Location = new System.Drawing.Point(17, 9);
  4178. this.ultraLabel91.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4179. this.ultraLabel91.Name = "ultraLabel91";
  4180. this.ultraLabel91.Size = new System.Drawing.Size(36, 19);
  4181. this.ultraLabel91.TabIndex = 16;
  4182. this.ultraLabel91.Text = "代码";
  4183. //
  4184. // ultraLabel89
  4185. //
  4186. this.ultraLabel89.AutoSize = true;
  4187. this.ultraLabel89.Location = new System.Drawing.Point(379, 9);
  4188. this.ultraLabel89.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4189. this.ultraLabel89.Name = "ultraLabel89";
  4190. this.ultraLabel89.Size = new System.Drawing.Size(52, 19);
  4191. this.ultraLabel89.TabIndex = 15;
  4192. this.ultraLabel89.Text = "联系人";
  4193. //
  4194. // ultraLabel31
  4195. //
  4196. this.ultraLabel31.AutoSize = true;
  4197. this.ultraLabel31.Location = new System.Drawing.Point(193, 9);
  4198. this.ultraLabel31.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4199. this.ultraLabel31.Name = "ultraLabel31";
  4200. this.ultraLabel31.Size = new System.Drawing.Size(36, 19);
  4201. this.ultraLabel31.TabIndex = 14;
  4202. this.ultraLabel31.Text = "名称";
  4203. //
  4204. // textBox2
  4205. //
  4206. this.textBox2.Location = new System.Drawing.Point(441, 6);
  4207. this.textBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4208. this.textBox2.Name = "textBox2";
  4209. this.textBox2.Size = new System.Drawing.Size(123, 25);
  4210. this.textBox2.TabIndex = 13;
  4211. //
  4212. // textBox1
  4213. //
  4214. this.textBox1.Location = new System.Drawing.Point(236, 6);
  4215. this.textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4216. this.textBox1.Name = "textBox1";
  4217. this.textBox1.Size = new System.Drawing.Size(123, 25);
  4218. this.textBox1.TabIndex = 12;
  4219. //
  4220. // SupplierManagement
  4221. //
  4222. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  4223. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4224. this.AutoSize = true;
  4225. this.ClientSize = new System.Drawing.Size(1523, 732);
  4226. this.Controls.Add(this.ultraPanel2);
  4227. this.Controls.Add(this.ultraGroupBox3);
  4228. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4229. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  4230. this.Name = "SupplierManagement";
  4231. this.Text = "供应商管理";
  4232. this.Load += new System.EventHandler(this.SupplierManagement_Load);
  4233. ((System.ComponentModel.ISupportInitialize)(this.craftImg)).EndInit();
  4234. this.ultraTabPageControl1.ResumeLayout(false);
  4235. this.ultraTabPageControl1.PerformLayout();
  4236. ((System.ComponentModel.ISupportInitialize)(this.txt_balanceCode)).EndInit();
  4237. ((System.ComponentModel.ISupportInitialize)(this.txt_account_cw)).EndInit();
  4238. ((System.ComponentModel.ISupportInitialize)(this.txt_suppType)).EndInit();
  4239. ((System.ComponentModel.ISupportInitialize)(this.txt_postAdd)).EndInit();
  4240. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPCURRENCY)).EndInit();
  4241. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCENATION)).EndInit();
  4242. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOFFICEPROVINCE)).EndInit();
  4243. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPROVINCE)).EndInit();
  4244. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNATIONALITY)).EndInit();
  4245. ((System.ComponentModel.ISupportInitialize)(this.txt_island)).EndInit();
  4246. ((System.ComponentModel.ISupportInitialize)(this.txt_suppTaxRate)).EndInit();
  4247. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTITLE)).EndInit();
  4248. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTTEL)).EndInit();
  4249. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTFAX)).EndInit();
  4250. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTCELLPHONE)).EndInit();
  4251. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCONTACTEMAIL)).EndInit();
  4252. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLIERLINKMAN)).EndInit();
  4253. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPENDDATE)).EndInit();
  4254. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICENDDATE)).EndInit();
  4255. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXENDDATE)).EndInit();
  4256. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSTARTDATE)).EndInit();
  4257. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICSTARTDATE)).EndInit();
  4258. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXSTARTDATE)).EndInit();
  4259. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISSUBCOMPANY)).EndInit();
  4260. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISMANUFACTURER)).EndInit();
  4261. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPISINTERNAL)).EndInit();
  4262. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPADDRESS)).EndInit();
  4263. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPRELATIONGRADE)).EndInit();
  4264. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPPERGRADE)).EndInit();
  4265. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGCAPITAL)).EndInit();
  4266. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPOPERATESCOPE)).EndInit();
  4267. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPLICNUM)).EndInit();
  4268. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCITY)).EndInit();
  4269. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPREGISTRARNAME)).EndInit();
  4270. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPSHORTNAME)).EndInit();
  4271. ((System.ComponentModel.ISupportInitialize)(this.txt_ORGCODE)).EndInit();
  4272. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCHARACTER)).EndInit();
  4273. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPNAME)).EndInit();
  4274. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPINDUSTRYTYPE)).EndInit();
  4275. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPTAXID)).EndInit();
  4276. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPPCODE)).EndInit();
  4277. this.ultraTabPageControl3.ResumeLayout(false);
  4278. this.ultraTabPageControl3.PerformLayout();
  4279. ((System.ComponentModel.ISupportInitialize)(this.txtPayType)).EndInit();
  4280. ((System.ComponentModel.ISupportInitialize)(this.txt_BANKNAME)).EndInit();
  4281. ((System.ComponentModel.ISupportInitialize)(this.txt_BANKACCOUNT)).EndInit();
  4282. this.ultraTabPageControl4.ResumeLayout(false);
  4283. this.ultraTabPageControl4.PerformLayout();
  4284. ((System.ComponentModel.ISupportInitialize)(this.txt_arch_code)).EndInit();
  4285. ((System.ComponentModel.ISupportInitialize)(this.txt_certPath)).EndInit();
  4286. ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_local)).EndInit();
  4287. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_end)).EndInit();
  4288. ((System.ComponentModel.ISupportInitialize)(this.txt_certNo_v)).EndInit();
  4289. ((System.ComponentModel.ISupportInitialize)(this.txt_certpath_old)).EndInit();
  4290. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTVALID_start)).EndInit();
  4291. ((System.ComponentModel.ISupportInitialize)(this.txt_ap_type)).EndInit();
  4292. ((System.ComponentModel.ISupportInitialize)(this.txt_ap_constraint)).EndInit();
  4293. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTDESC)).EndInit();
  4294. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTIOFFICER)).EndInit();
  4295. ((System.ComponentModel.ISupportInitialize)(this.txt_CERTNO)).EndInit();
  4296. this.ultraTabPageControl2.ResumeLayout(false);
  4297. this.ultraTabPageControl2.PerformLayout();
  4298. ((System.ComponentModel.ISupportInitialize)(this.Combo_Rate)).EndInit();
  4299. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  4300. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  4301. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  4302. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  4303. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
  4304. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  4305. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  4306. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  4307. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  4308. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  4309. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  4310. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  4311. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  4312. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  4313. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  4314. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
  4315. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  4316. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  4317. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  4318. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  4319. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  4320. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  4321. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  4322. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  4323. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
  4324. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
  4325. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
  4326. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
  4327. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
  4328. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  4329. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
  4330. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
  4331. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
  4332. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
  4333. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
  4334. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
  4335. this.ultraPanel2.ClientArea.ResumeLayout(false);
  4336. this.ultraPanel2.ResumeLayout(false);
  4337. this.ultraPanel4.ClientArea.ResumeLayout(false);
  4338. this.ultraPanel4.ResumeLayout(false);
  4339. this.splitContainer2.Panel1.ResumeLayout(false);
  4340. this.splitContainer2.Panel2.ResumeLayout(false);
  4341. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  4342. this.splitContainer2.ResumeLayout(false);
  4343. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  4344. this.ultraGroupBox4.ResumeLayout(false);
  4345. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  4346. this.splitContainer1.Panel1.ResumeLayout(false);
  4347. this.splitContainer1.Panel2.ResumeLayout(false);
  4348. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  4349. this.splitContainer1.ResumeLayout(false);
  4350. this.splitContainer3.Panel1.ResumeLayout(false);
  4351. this.splitContainer3.Panel2.ResumeLayout(false);
  4352. ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
  4353. this.splitContainer3.ResumeLayout(false);
  4354. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  4355. this.ultraGroupBox1.ResumeLayout(false);
  4356. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  4357. ((System.ComponentModel.ISupportInitialize)(this.dataSet5)).EndInit();
  4358. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  4359. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  4360. ((System.ComponentModel.ISupportInitialize)(this.所属物料)).EndInit();
  4361. this.所属物料.ResumeLayout(false);
  4362. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  4363. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  4364. this.ultraGroupBox2.ResumeLayout(false);
  4365. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  4366. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  4367. this.ultraExpandableGroupBox1.ResumeLayout(false);
  4368. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  4369. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  4370. this.ultraTabControl1.ResumeLayout(false);
  4371. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  4372. this.ultraGroupBox3.ResumeLayout(false);
  4373. this.ultraGroupBox3.PerformLayout();
  4374. ((System.ComponentModel.ISupportInitialize)(this.cop_suppType)).EndInit();
  4375. ((System.ComponentModel.ISupportInitialize)(this.QsuspendStatus)).EndInit();
  4376. ((System.ComponentModel.ISupportInitialize)(this.Qstatus)).EndInit();
  4377. this.ResumeLayout(false);
  4378. }
  4379. #endregion
  4380. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  4381. private Infragistics.Win.Misc.UltraPanel ultraPanel4;
  4382. private System.Windows.Forms.SplitContainer splitContainer1;
  4383. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  4384. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  4385. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  4386. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  4387. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  4388. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  4389. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  4390. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  4391. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  4392. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  4393. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  4394. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  4395. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPNAME;
  4396. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPINDUSTRYTYPE;
  4397. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  4398. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  4399. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  4400. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPTAXID;
  4401. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCODE;
  4402. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  4403. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  4404. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  4405. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  4406. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  4407. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  4408. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ORGCODE;
  4409. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  4410. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPOPERATESCOPE;
  4411. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCITY;
  4412. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPREGISTRARNAME;
  4413. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPSHORTNAME;
  4414. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  4415. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  4416. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  4417. private System.Data.DataSet dataSet1;
  4418. private System.Data.DataTable dataTable1;
  4419. private System.Data.DataColumn dataColumn1;
  4420. private System.Data.DataColumn dataColumn2;
  4421. private System.Data.DataColumn dataColumn3;
  4422. private System.Data.DataColumn dataColumn4;
  4423. private System.Data.DataColumn dataColumn5;
  4424. private System.Data.DataColumn dataColumn6;
  4425. private System.Data.DataColumn dataColumn7;
  4426. private System.Data.DataColumn dataColumn8;
  4427. private System.Data.DataColumn dataColumn9;
  4428. private System.Data.DataColumn dataColumn10;
  4429. private System.Data.DataColumn dataColumn11;
  4430. private System.Data.DataColumn dataColumn12;
  4431. private System.Data.DataColumn dataColumn13;
  4432. private System.Data.DataColumn dataColumn14;
  4433. private System.Data.DataColumn dataColumn15;
  4434. private System.Data.DataColumn dataColumn16;
  4435. private System.Data.DataColumn dataColumn17;
  4436. private System.Data.DataColumn dataColumn18;
  4437. private System.Data.DataColumn dataColumn19;
  4438. private System.Data.DataColumn dataColumn20;
  4439. private System.Data.DataColumn dataColumn21;
  4440. private System.Data.DataColumn dataColumn22;
  4441. private System.Data.DataColumn dataColumn23;
  4442. private System.Data.DataColumn dataColumn24;
  4443. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  4444. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BANKACCOUNT;
  4445. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTDESC;
  4446. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTIOFFICER;
  4447. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CERTNO;
  4448. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  4449. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  4450. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  4451. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  4452. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  4453. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  4454. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ap_type;
  4455. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_ap_constraint;
  4456. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPLICNUM;
  4457. private System.Data.DataSet dataSet2;
  4458. private System.Data.DataTable dataTable2;
  4459. private System.Data.DataColumn dataColumn26;
  4460. private System.Data.DataColumn dataColumn29;
  4461. private System.Data.DataSet dataSet3;
  4462. private System.Data.DataTable dataTable3;
  4463. private System.Data.DataColumn dataColumn30;
  4464. private System.Data.DataColumn dataColumn31;
  4465. private System.Data.DataColumn dataColumn32;
  4466. private System.Data.DataColumn dataColumn33;
  4467. private System.Data.DataColumn dataColumn34;
  4468. private System.Data.DataColumn dataColumn35;
  4469. private System.Data.DataColumn dataColumn36;
  4470. private System.Data.DataColumn dataColumn38;
  4471. private System.Data.DataColumn dataColumn37;
  4472. private System.Data.DataColumn dataColumn39;
  4473. private System.Data.DataColumn dataColumn40;
  4474. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPREGCAPITAL;
  4475. private Infragistics.Win.Misc.UltraLabel ultraLabel82;
  4476. private Infragistics.Win.Misc.UltraLabel ultraLabel83;
  4477. private Infragistics.Win.Misc.UltraLabel ultraLabel84;
  4478. private Infragistics.Win.Misc.UltraLabel ultraLabel85;
  4479. private Infragistics.Win.Misc.UltraLabel ultraLabel86;
  4480. private Infragistics.Win.Misc.UltraLabel ultraLabel87;
  4481. private Infragistics.Win.Misc.UltraLabel ultraLabel88;
  4482. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  4483. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  4484. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  4485. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  4486. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  4487. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  4488. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  4489. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  4490. private System.Windows.Forms.DateTimePicker dateTimePicker1;
  4491. private System.Windows.Forms.DateTimePicker dateTimePicker2;
  4492. private System.Windows.Forms.DateTimePicker dateTimePicker3;
  4493. private System.Windows.Forms.DateTimePicker dateTimePicker4;
  4494. private System.Windows.Forms.DateTimePicker dateTimePicker5;
  4495. private System.Windows.Forms.DateTimePicker dateTimePicker6;
  4496. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  4497. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  4498. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  4499. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  4500. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  4501. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  4502. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  4503. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
  4504. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  4505. private Infragistics.Win.Misc.UltraLabel ultraLabel48;
  4506. private Infragistics.Win.Misc.UltraLabel ultraLabel49;
  4507. private Infragistics.Win.Misc.UltraLabel ultraLabel50;
  4508. private Infragistics.Win.Misc.UltraLabel ultraLabel51;
  4509. private Infragistics.Win.Misc.UltraLabel ultraLabel52;
  4510. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  4511. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  4512. private Infragistics.Win.Misc.UltraLabel ultraLabel53;
  4513. private Infragistics.Win.Misc.UltraLabel ultraLabel54;
  4514. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  4515. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  4516. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  4517. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  4518. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  4519. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  4520. private Infragistics.Win.Misc.UltraLabel ultraLabel57;
  4521. private Infragistics.Win.Misc.UltraLabel ultraLabel58;
  4522. private Infragistics.Win.Misc.UltraLabel ultraLabel59;
  4523. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  4524. private Infragistics.Win.Misc.UltraLabel ultraLabel61;
  4525. private Infragistics.Win.Misc.UltraLabel ultraLabel62;
  4526. private Infragistics.Win.Misc.UltraLabel ultraLabel63;
  4527. private Infragistics.Win.Misc.UltraLabel ultraLabel64;
  4528. private Infragistics.Win.Misc.UltraLabel ultraLabel65;
  4529. private Infragistics.Win.Misc.UltraLabel ultraLabel66;
  4530. private Infragistics.Win.Misc.UltraLabel ultraLabel67;
  4531. private System.Windows.Forms.DateTimePicker dateTimePicker7;
  4532. private System.Windows.Forms.DateTimePicker dateTimePicker8;
  4533. private System.Windows.Forms.DateTimePicker dateTimePicker9;
  4534. private System.Windows.Forms.DateTimePicker dateTimePicker10;
  4535. private System.Windows.Forms.DateTimePicker dateTimePicker11;
  4536. private System.Windows.Forms.DateTimePicker dateTimePicker12;
  4537. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  4538. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  4539. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
  4540. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
  4541. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
  4542. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
  4543. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
  4544. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  4545. private Infragistics.Win.Misc.UltraLabel ultraLabel68;
  4546. private Infragistics.Win.Misc.UltraLabel ultraLabel69;
  4547. private Infragistics.Win.Misc.UltraLabel ultraLabel70;
  4548. private Infragistics.Win.Misc.UltraLabel ultraLabel71;
  4549. private Infragistics.Win.Misc.UltraLabel ultraLabel72;
  4550. private Infragistics.Win.Misc.UltraLabel ultraLabel73;
  4551. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
  4552. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
  4553. private Infragistics.Win.Misc.UltraLabel ultraLabel74;
  4554. private Infragistics.Win.Misc.UltraLabel ultraLabel75;
  4555. private Infragistics.Win.Misc.UltraLabel ultraLabel76;
  4556. private Infragistics.Win.Misc.UltraLabel ultraLabel77;
  4557. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
  4558. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
  4559. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
  4560. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
  4561. private Infragistics.Win.Misc.UltraLabel ultraLabel78;
  4562. private Infragistics.Win.Misc.UltraLabel ultraLabel79;
  4563. private Infragistics.Win.Misc.UltraLabel ultraLabel80;
  4564. private Infragistics.Win.Misc.UltraLabel ultraLabel81;
  4565. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPADDRESS;
  4566. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPRELATIONGRADE;
  4567. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPPERGRADE;
  4568. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISINTERNAL;
  4569. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISMANUFACTURER;
  4570. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPISSUBCOMPANY;
  4571. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  4572. private System.Data.DataColumn dataColumn41;
  4573. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPLICSTARTDATE;
  4574. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPTAXSTARTDATE;
  4575. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPENDDATE;
  4576. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPLICENDDATE;
  4577. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPTAXENDDATE;
  4578. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_SUPPSTARTDATE;
  4579. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CERTVALID_start;
  4580. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTTITLE;
  4581. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTTEL;
  4582. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTFAX;
  4583. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTCELLPHONE;
  4584. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCONTACTEMAIL;
  4585. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPLIERLINKMAN;
  4586. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  4587. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  4588. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  4589. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  4590. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  4591. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  4592. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  4593. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_suppTaxRate;
  4594. private System.Data.DataColumn dataColumn42;
  4595. private Infragistics.Win.Misc.UltraLabel ultraLabel93;
  4596. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPPROVINCE;
  4597. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPNATIONALITY;
  4598. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_island;
  4599. private System.Data.DataColumn dataColumn43;
  4600. private System.Data.DataColumn dataColumn44;
  4601. private System.Data.DataColumn dataColumn45;
  4602. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPOFFICEPROVINCE;
  4603. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPOFFICEPROVINCENATION;
  4604. private System.Data.DataColumn dataColumn46;
  4605. private System.Data.DataColumn dataColumn47;
  4606. private Infragistics.Win.Misc.UltraLabel ultraLabel94;
  4607. private Infragistics.Win.UltraWinEditors.UltraTextEditor craftImg;
  4608. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certpath_old;
  4609. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certNo_v;
  4610. private System.Data.DataColumn dataColumn48;
  4611. private System.Windows.Forms.SplitContainer splitContainer2;
  4612. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  4613. private Infragistics.Win.Misc.UltraLabel ultraLabel92;
  4614. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  4615. private Infragistics.Win.UltraWinEditors.UltraComboEditor QsuspendStatus;
  4616. private Infragistics.Win.UltraWinEditors.UltraComboEditor Qstatus;
  4617. private System.Windows.Forms.TextBox textBox3;
  4618. private Infragistics.Win.Misc.UltraLabel ultraLabel91;
  4619. private Infragistics.Win.Misc.UltraLabel ultraLabel89;
  4620. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  4621. private System.Windows.Forms.TextBox textBox2;
  4622. private System.Windows.Forms.TextBox textBox1;
  4623. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  4624. private Infragistics.Win.UltraWinSchedule.UltraCalendarCombo txt_CERTVALID_end;
  4625. private Infragistics.Win.Misc.UltraLabel ultraLabel95;
  4626. private System.Data.DataColumn dataColumn49;
  4627. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_SUPPREGCAPCURRENCY;
  4628. private System.Data.DataColumn dataColumn50;
  4629. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  4630. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BANKNAME;
  4631. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  4632. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  4633. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  4634. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  4635. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  4636. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_postAdd;
  4637. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPPCHARACTER;
  4638. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  4639. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_suppType;
  4640. private Infragistics.Win.UltraWinEditors.UltraComboEditor cop_suppType;
  4641. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  4642. private System.Data.DataColumn dataColumn25;
  4643. private System.Data.DataColumn dataColumn27;
  4644. private System.Windows.Forms.SplitContainer splitContainer3;
  4645. private Infragistics.Win.Misc.UltraGroupBox 所属物料;
  4646. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  4647. private System.Data.DataSet dataSet4;
  4648. private System.Data.DataTable dataTable4;
  4649. private System.Data.DataColumn dataColumn28;
  4650. private System.Data.DataColumn dataColumn51;
  4651. private System.Data.DataColumn dataColumn52;
  4652. private System.Data.DataColumn dataColumn53;
  4653. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_account_cw;
  4654. private Infragistics.Win.Misc.UltraLabel ultraLabel90;
  4655. private System.Data.DataColumn dataColumn54;
  4656. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certpath_local;
  4657. private Infragistics.Win.Misc.UltraLabel ultraLabel96;
  4658. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_certPath;
  4659. private Infragistics.Win.Misc.UltraButton btn_submitAppend;
  4660. private System.Data.DataColumn dataColumn55;
  4661. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_balanceCode;
  4662. private Infragistics.Win.Misc.UltraLabel ultraLabel97;
  4663. private System.Data.DataColumn dataColumn56;
  4664. private Infragistics.Win.Misc.UltraLabel ultraLabel98;
  4665. private Infragistics.Win.UltraWinEditors.UltraComboEditor txtPayType;
  4666. private System.Data.DataColumn dataColumn57;
  4667. private Infragistics.Win.Misc.UltraLabel ultraLabel99;
  4668. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_arch_code;
  4669. private System.Data.DataColumn dataColumn58;
  4670. private Infragistics.Win.Misc.UltraButton upLoadFile;
  4671. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  4672. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  4673. private Infragistics.Win.Misc.UltraLabel ultraLabel100;
  4674. private System.Data.DataSet dataSet5;
  4675. private System.Data.DataTable dataTable5;
  4676. private System.Data.DataColumn dataColumn59;
  4677. private System.Data.DataColumn dataColumn60;
  4678. private Infragistics.Win.Misc.UltraLabel ultraLabel101;
  4679. private Infragistics.Win.UltraWinEditors.UltraComboEditor Combo_Rate;
  4680. private System.Data.DataColumn dataColumn61;
  4681. private System.Windows.Forms.TextBox txt_Rate_Year;
  4682. }
  4683. }