| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356 |
- namespace Core.XgMes.Client.JGKC.MaterialManager
- {
- partial class AccpetSheetNew
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinGrid.UltraGrid gd_CK;
- private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BH;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel18;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel21;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel23;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel24;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel26;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKLB;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel27;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
- private Infragistics.Win.Misc.UltraLabel ultraLabel37;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel38;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
- private Infragistics.Win.Misc.UltraLabel ultraLabel39;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel40;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel41;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel42;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
- private Infragistics.Win.Misc.UltraLabel ultraLabel43;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
- private Infragistics.Win.Misc.UltraLabel ultraLabel44;
- private Infragistics.Win.Misc.UltraLabel ultraLabel45;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel46;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
- private Infragistics.Win.Misc.UltraLabel ultraLabel47;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
- private Infragistics.Win.Misc.UltraLabel ultraLabel48;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
- private Infragistics.Win.Misc.UltraLabel ultraLabel49;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
- private Infragistics.Win.Misc.UltraLabel ultraLabel51;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
- private Infragistics.Win.Misc.UltraLabel ultraLabel52;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
- private Infragistics.Win.Misc.UltraLabel ultraLabel53;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
- private Infragistics.Win.Misc.UltraLabel ultraLabel54;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel55;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel56;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor13;
- private Infragistics.Win.Misc.UltraLabel ultraLabel57;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel58;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor15;
- private Infragistics.Win.Misc.UltraLabel ultraLabel59;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel60;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor17;
- private Infragistics.Win.Misc.UltraLabel ultraLabel61;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor18;
- private Infragistics.Win.Misc.UltraLabel ultraLabel62;
- private Infragistics.Win.Misc.UltraLabel ultraLabel63;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor31;
- private Infragistics.Win.Misc.UltraLabel ultraLabel64;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor32;
- private Infragistics.Win.Misc.UltraLabel ultraLabel65;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor33;
- private Infragistics.Win.Misc.UltraLabel ultraLabel66;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor34;
- private Infragistics.Win.Misc.UltraLabel ultraLabel67;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor35;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_StorageLB;
- private Infragistics.Win.Misc.UltraLabel ultraLabel71;
- private Infragistics.Win.Misc.UltraLabel ultraLabel75;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private System.ComponentModel.IContainer components;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportLL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveIN");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportLL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveIN");
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISSUE_DATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_STYLE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISSUE_STORE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPET");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SCHEDULER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLEASE_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REAL_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MONERY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FILLING_DATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_RECODER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GF_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GF_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RECODER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INPUT_DATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USE_TO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB", 1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB_NAME", 2);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INVOICE_NO", 3);
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem42 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem63 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem64 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem65 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem66 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem67 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem68 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem69 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem70 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem71 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem72 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem73 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem74 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem75 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem76 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem77 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem78 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem79 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem80 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem81 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem82 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem83 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem84 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem85 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem86 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem87 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem88 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem89 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem90 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem91 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem92 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem93 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem94 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem95 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem96 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem97 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem98 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem99 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem100 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem101 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem102 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem103 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem104 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem105 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem106 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem107 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem108 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem109 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem110 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem111 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem112 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem113 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem114 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem115 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem116 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem117 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem118 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem119 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem120 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem121 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem122 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem123 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem124 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem125 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem126 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem127 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem128 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem129 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem130 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem131 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem132 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem133 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem134 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem135 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem136 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem137 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem138 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem139 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem140 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem141 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem142 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem143 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem144 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem145 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem146 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem147 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem148 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem149 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem150 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem151 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem152 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem153 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem154 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem155 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem156 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem157 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem158 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem159 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem160 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem161 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem162 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem163 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem164 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem165 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem166 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem167 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem168 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem169 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem170 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem171 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem172 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem173 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem174 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem175 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem176 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem177 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem178 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem179 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem180 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem181 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem182 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem183 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem184 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem185 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem186 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem187 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem188 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem189 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem190 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem191 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem192 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem193 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem194 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem195 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem196 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem197 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem198 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem199 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem200 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem201 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem202 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem203 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem204 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem205 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem206 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem207 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem208 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem209 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem210 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem211 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem212 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem213 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem214 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem215 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem216 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem217 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem218 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem219 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem220 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem221 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem222 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem223 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem224 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem225 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem226 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem227 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem228 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem229 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem230 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem231 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem232 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem233 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem234 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem235 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem236 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem237 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem238 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem239 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem240 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem241 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem242 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem243 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem244 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem245 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem246 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem247 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem248 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem249 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem250 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem251 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem252 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem253 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem254 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem255 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem256 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem257 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem258 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem259 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem260 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- this.cmb_StorageLB = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.panel1 = new System.Windows.Forms.Panel();
- this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txt_Spet = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_Spet = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_wz = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_wzmc = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_ckm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_Time = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
- this.txt_wzdm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_WZDM = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.Chk_CKLB = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.txt_CKMC = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Cmb_Checker = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor43 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel84 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor42 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel85 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_YR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel82 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_PlanR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel81 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_ylbz = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.date_td = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraLabel80 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel79 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_DZ = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel77 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_CZ = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Moneny = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel74 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Price = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel73 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_YSS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_qlsl = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_GYMC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_JLDW = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_GGXH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_WZMC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.date_YS = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_BH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.panel2 = new System.Windows.Forms.Panel();
- this.gd_CK = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor12 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor13 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor14 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor15 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor16 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor17 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor18 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor31 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor32 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor33 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor34 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor35 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor19 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor36 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor37 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor38 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor39 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor40 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraComboEditor20 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel50 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraComboEditor21 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraTextEditor41 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.Cmb_wzdm = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.Cmb_CKDM = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraCombo1 = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.Cmd_GFCode = new Infragistics.Win.UltraWinGrid.UltraCombo();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_StorageLB)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ckm)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CKMC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_Checker)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ylbz)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.date_td)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DZ)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CZ)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Moneny)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YSS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_qlsl)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GYMC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GGXH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WZMC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.date_YS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BH)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor21)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_wzdm)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKDM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmd_GFCode)).BeginInit();
- this.SuspendLayout();
- //
- // cmb_StorageLB
- //
- this.cmb_StorageLB.AutoSize = true;
- this.cmb_StorageLB.Location = new System.Drawing.Point(643, 5);
- this.cmb_StorageLB.Name = "cmb_StorageLB";
- this.cmb_StorageLB.Size = new System.Drawing.Size(139, 21);
- this.cmb_StorageLB.TabIndex = 429;
- //
- // panel1
- //
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1169, 32);
- this.panel1.TabIndex = 0;
- //
- // _panel1_Toolbars_Dock_Area_Left
- //
- this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
- this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
- this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.Text = "工具栏";
- buttonTool1.InstanceProps.IsFirstInGroup = true;
- buttonTool4.InstanceProps.IsFirstInGroup = true;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- buttonTool6.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6,
- buttonTool7,
- buttonTool8});
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
- buttonTool9.SharedProps.Caption = "新增";
- buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedProps.Caption = "查询";
- buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool11.SharedProps.Caption = "关闭";
- buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedProps.Caption = "导出";
- buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool13.SharedProps.Caption = "修改";
- buttonTool13.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool14.SharedProps.Caption = "撤销领料";
- buttonTool14.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool15.SharedProps.Caption = "导出领料单";
- buttonTool15.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool16.SharedProps.Caption = "保存发票号";
- buttonTool16.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool9,
- buttonTool10,
- buttonTool11,
- buttonTool12,
- buttonTool13,
- buttonTool14,
- buttonTool15,
- buttonTool16});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _panel1_Toolbars_Dock_Area_Right
- //
- this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1169, 24);
- this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
- this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Top
- //
- this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
- this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1169, 24);
- this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Bottom
- //
- this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1169, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.txt_Spet);
- this.ultraGroupBox1.Controls.Add(this.chk_Spet);
- this.ultraGroupBox1.Controls.Add(this.txt_wz);
- this.ultraGroupBox1.Controls.Add(this.chk_wzmc);
- this.ultraGroupBox1.Controls.Add(this.txt_ckm);
- this.ultraGroupBox1.Controls.Add(this.chk_Time);
- this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
- this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
- this.ultraGroupBox1.Controls.Add(this.Lab_To);
- this.ultraGroupBox1.Controls.Add(this.txt_wzdm);
- this.ultraGroupBox1.Controls.Add(this.Chk_WZDM);
- this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
- this.ultraGroupBox1.Controls.Add(this.Chk_CKLB);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1169, 35);
- this.ultraGroupBox1.SupportThemes = false;
- this.ultraGroupBox1.TabIndex = 1;
- //
- // txt_Spet
- //
- this.txt_Spet.AutoSize = true;
- this.txt_Spet.Enabled = false;
- this.txt_Spet.FlatMode = true;
- this.txt_Spet.Location = new System.Drawing.Point(986, 9);
- this.txt_Spet.Name = "txt_Spet";
- this.txt_Spet.Size = new System.Drawing.Size(99, 19);
- this.txt_Spet.TabIndex = 406;
- this.txt_Spet.Tag = "";
- //
- // chk_Spet
- //
- this.chk_Spet.FlatMode = true;
- this.chk_Spet.Location = new System.Drawing.Point(908, 10);
- this.chk_Spet.Name = "chk_Spet";
- this.chk_Spet.Size = new System.Drawing.Size(85, 16);
- this.chk_Spet.TabIndex = 405;
- this.chk_Spet.Text = "规格型号";
- this.chk_Spet.CheckedChanged += new System.EventHandler(this.chk_Spet_CheckedChanged);
- //
- // txt_wz
- //
- this.txt_wz.AutoSize = true;
- this.txt_wz.Enabled = false;
- this.txt_wz.FlatMode = true;
- this.txt_wz.Location = new System.Drawing.Point(806, 10);
- this.txt_wz.Name = "txt_wz";
- this.txt_wz.Size = new System.Drawing.Size(96, 19);
- this.txt_wz.TabIndex = 404;
- this.txt_wz.Tag = "";
- //
- // chk_wzmc
- //
- this.chk_wzmc.FlatMode = true;
- this.chk_wzmc.Location = new System.Drawing.Point(728, 11);
- this.chk_wzmc.Name = "chk_wzmc";
- this.chk_wzmc.Size = new System.Drawing.Size(85, 16);
- this.chk_wzmc.TabIndex = 403;
- this.chk_wzmc.Text = "物资名称";
- this.chk_wzmc.CheckedChanged += new System.EventHandler(this.chk_wzmc_CheckedChanged);
- //
- // txt_ckm
- //
- this.txt_ckm.AutoSize = true;
- this.txt_ckm.Enabled = false;
- this.txt_ckm.FlatMode = true;
- this.txt_ckm.Location = new System.Drawing.Point(447, 9);
- this.txt_ckm.Name = "txt_ckm";
- this.txt_ckm.Size = new System.Drawing.Size(96, 19);
- this.txt_ckm.TabIndex = 402;
- this.txt_ckm.Tag = "";
- //
- // chk_Time
- //
- this.chk_Time.Checked = true;
- this.chk_Time.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chk_Time.Location = new System.Drawing.Point(6, 6);
- this.chk_Time.Name = "chk_Time";
- this.chk_Time.Size = new System.Drawing.Size(84, 22);
- this.chk_Time.TabIndex = 401;
- this.chk_Time.Text = "发料时间";
- //
- // dte_EndTime
- //
- this.dte_EndTime.DateTime = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
- this.dte_EndTime.FlatMode = true;
- this.dte_EndTime.Location = new System.Drawing.Point(245, 6);
- this.dte_EndTime.Name = "dte_EndTime";
- this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
- this.dte_EndTime.TabIndex = 400;
- this.dte_EndTime.Value = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
- //
- // dte_BeginTime
- //
- this.dte_BeginTime.DateTime = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
- this.dte_BeginTime.FlatMode = true;
- this.dte_BeginTime.Location = new System.Drawing.Point(97, 7);
- this.dte_BeginTime.Name = "dte_BeginTime";
- this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
- this.dte_BeginTime.TabIndex = 399;
- this.dte_BeginTime.Value = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
- //
- // Lab_To
- //
- this.Lab_To.FlatMode = true;
- this.Lab_To.Location = new System.Drawing.Point(219, 8);
- this.Lab_To.Name = "Lab_To";
- this.Lab_To.Size = new System.Drawing.Size(17, 16);
- this.Lab_To.TabIndex = 398;
- this.Lab_To.Text = "到";
- //
- // txt_wzdm
- //
- this.txt_wzdm.AutoSize = true;
- this.txt_wzdm.Enabled = false;
- this.txt_wzdm.FlatMode = true;
- this.txt_wzdm.Location = new System.Drawing.Point(627, 10);
- this.txt_wzdm.Name = "txt_wzdm";
- this.txt_wzdm.Size = new System.Drawing.Size(96, 19);
- this.txt_wzdm.TabIndex = 395;
- this.txt_wzdm.Tag = "";
- //
- // Chk_WZDM
- //
- this.Chk_WZDM.FlatMode = true;
- this.Chk_WZDM.Location = new System.Drawing.Point(549, 11);
- this.Chk_WZDM.Name = "Chk_WZDM";
- this.Chk_WZDM.Size = new System.Drawing.Size(85, 16);
- this.Chk_WZDM.TabIndex = 394;
- this.Chk_WZDM.Text = "物资代码";
- this.Chk_WZDM.CheckedChanged += new System.EventHandler(this.Chk_WZDM_CheckedChanged);
- //
- // chk_AllowFilter
- //
- this.chk_AllowFilter.Location = new System.Drawing.Point(1091, 8);
- this.chk_AllowFilter.Name = "chk_AllowFilter";
- this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
- this.chk_AllowFilter.TabIndex = 131;
- this.chk_AllowFilter.TabStop = false;
- this.chk_AllowFilter.Text = "允许过滤";
- this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
- //
- // Chk_CKLB
- //
- this.Chk_CKLB.FlatMode = true;
- this.Chk_CKLB.Location = new System.Drawing.Point(369, 8);
- this.Chk_CKLB.Name = "Chk_CKLB";
- this.Chk_CKLB.Size = new System.Drawing.Size(75, 17);
- this.Chk_CKLB.TabIndex = 112;
- this.Chk_CKLB.Text = "发料仓库";
- this.Chk_CKLB.CheckedChanged += new System.EventHandler(this.Chk_CKLB_CheckedChanged);
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(200, 185);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 350);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1169, 168);
- this.ultraExpandableGroupBox1.SupportThemes = false;
- this.ultraExpandableGroupBox1.TabIndex = 4;
- this.ultraExpandableGroupBox1.Text = "领料单详情";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmd_GFCode);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraCombo1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_CKDM);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_wzdm);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_CKMC);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_Checker);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel87);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel86);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor43);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel84);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor42);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel85);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel83);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YR);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel82);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_PlanR);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel81);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_ylbz);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.date_td);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel80);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel79);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_DZ);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel78);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel77);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_CZ);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel76);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Moneny);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel74);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Price);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel73);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YSS);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel72);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_qlsl);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel29);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_GYMC);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel28);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_JLDW);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel15);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_GGXH);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_WZMC);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.date_YS);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Remark);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel75);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_StorageLB);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel71);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_BH);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1165, 146);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // txt_CKMC
- //
- this.txt_CKMC.AutoSize = true;
- valueListItem3.DataValue = "2#";
- valueListItem3.DisplayText = "2#";
- valueListItem2.DataValue = valueListItem3;
- valueListItem2.DisplayText = "2#";
- valueListItem1.DataValue = valueListItem2;
- valueListItem1.DisplayText = "2#";
- valueListItem4.DataValue = "3#";
- valueListItem4.DisplayText = "3#";
- valueListItem7.DataValue = "临时库";
- valueListItem7.DisplayText = "临时库";
- valueListItem6.DataValue = valueListItem7;
- valueListItem6.DisplayText = "临时库";
- valueListItem5.DataValue = valueListItem6;
- valueListItem5.DisplayText = "临时库";
- valueListItem8.DataValue = "中间库";
- valueListItem8.DisplayText = "中间库";
- this.txt_CKMC.Items.Add(valueListItem1);
- this.txt_CKMC.Items.Add(valueListItem4);
- this.txt_CKMC.Items.Add(valueListItem5);
- this.txt_CKMC.Items.Add(valueListItem8);
- this.txt_CKMC.Location = new System.Drawing.Point(857, 3);
- this.txt_CKMC.Name = "txt_CKMC";
- this.txt_CKMC.Size = new System.Drawing.Size(117, 21);
- this.txt_CKMC.TabIndex = 625;
- //
- // Cmb_Checker
- //
- this.Cmb_Checker.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- ultraGridColumn21.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn21.Header.Caption = " 物资代码";
- ultraGridColumn21.Header.VisiblePosition = 0;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn22.Header.Caption = "物资名称";
- ultraGridColumn22.Header.VisiblePosition = 1;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn23.Header.Caption = "规格型号";
- ultraGridColumn23.Header.VisiblePosition = 2;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn24.Header.Caption = "材质";
- ultraGridColumn24.Header.VisiblePosition = 3;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn25.Header.Caption = "计量单位";
- ultraGridColumn25.Header.VisiblePosition = 4;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25});
- ultraGridBand5.UseRowLayout = true;
- this.Cmb_Checker.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.Cmb_Checker.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.Cmb_Checker.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.Cmb_Checker.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.Cmb_Checker.DisplayLayout.MaxColScrollRegions = 1;
- this.Cmb_Checker.DisplayLayout.MaxRowScrollRegions = 1;
- this.Cmb_Checker.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.Cmb_Checker.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.Cmb_Checker.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.Cmb_Checker.DisplayLayout.Override.CellPadding = 0;
- this.Cmb_Checker.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.Cmb_Checker.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- this.Cmb_Checker.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- this.Cmb_Checker.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.Cmb_Checker.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.Cmb_Checker.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.Cmb_Checker.DisplayMember = "";
- this.Cmb_Checker.Location = new System.Drawing.Point(1042, 85);
- this.Cmb_Checker.Name = "Cmb_Checker";
- this.Cmb_Checker.Size = new System.Drawing.Size(108, 21);
- this.Cmb_Checker.TabIndex = 624;
- this.Cmb_Checker.ValueMember = "";
- //
- // ultraLabel87
- //
- this.ultraLabel87.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel87.Location = new System.Drawing.Point(980, 87);
- this.ultraLabel87.Name = "ultraLabel87";
- this.ultraLabel87.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel87.TabIndex = 489;
- this.ultraLabel87.Text = "审核人";
- //
- // ultraLabel86
- //
- this.ultraLabel86.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel86.Location = new System.Drawing.Point(387, 59);
- this.ultraLabel86.Name = "ultraLabel86";
- this.ultraLabel86.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel86.TabIndex = 487;
- this.ultraLabel86.Text = "用途";
- //
- // ultraTextEditor43
- //
- this.ultraTextEditor43.AutoSize = true;
- this.ultraTextEditor43.FlatMode = true;
- this.ultraTextEditor43.Location = new System.Drawing.Point(449, 58);
- this.ultraTextEditor43.Multiline = true;
- this.ultraTextEditor43.Name = "ultraTextEditor43";
- this.ultraTextEditor43.Size = new System.Drawing.Size(297, 19);
- this.ultraTextEditor43.TabIndex = 486;
- this.ultraTextEditor43.Tag = "";
- //
- // ultraLabel84
- //
- this.ultraLabel84.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel84.Location = new System.Drawing.Point(205, 112);
- this.ultraLabel84.Name = "ultraLabel84";
- this.ultraLabel84.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel84.TabIndex = 484;
- this.ultraLabel84.Text = "类别名称";
- //
- // ultraTextEditor42
- //
- this.ultraTextEditor42.AutoSize = true;
- this.ultraTextEditor42.FlatMode = true;
- this.ultraTextEditor42.Location = new System.Drawing.Point(264, 109);
- this.ultraTextEditor42.Multiline = true;
- this.ultraTextEditor42.Name = "ultraTextEditor42";
- this.ultraTextEditor42.Size = new System.Drawing.Size(118, 19);
- this.ultraTextEditor42.TabIndex = 483;
- this.ultraTextEditor42.Tag = "";
- //
- // ultraLabel85
- //
- this.ultraLabel85.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel85.Location = new System.Drawing.Point(4, 112);
- this.ultraLabel85.Name = "ultraLabel85";
- this.ultraLabel85.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel85.TabIndex = 482;
- this.ultraLabel85.Text = "类别代码";
- //
- // ultraLabel83
- //
- this.ultraLabel83.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel83.Location = new System.Drawing.Point(980, 62);
- this.ultraLabel83.Name = "ultraLabel83";
- this.ultraLabel83.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel83.TabIndex = 481;
- this.ultraLabel83.Text = "领料人";
- //
- // txt_YR
- //
- this.txt_YR.AutoSize = true;
- this.txt_YR.FlatMode = true;
- this.txt_YR.Location = new System.Drawing.Point(1042, 61);
- this.txt_YR.Multiline = true;
- this.txt_YR.Name = "txt_YR";
- this.txt_YR.Size = new System.Drawing.Size(75, 19);
- this.txt_YR.TabIndex = 480;
- this.txt_YR.Tag = "";
- //
- // ultraLabel82
- //
- this.ultraLabel82.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel82.Location = new System.Drawing.Point(980, 34);
- this.ultraLabel82.Name = "ultraLabel82";
- this.ultraLabel82.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel82.TabIndex = 479;
- this.ultraLabel82.Text = "计划人";
- //
- // txt_PlanR
- //
- this.txt_PlanR.AutoSize = true;
- this.txt_PlanR.FlatMode = true;
- this.txt_PlanR.Location = new System.Drawing.Point(1042, 33);
- this.txt_PlanR.Multiline = true;
- this.txt_PlanR.Name = "txt_PlanR";
- this.txt_PlanR.Size = new System.Drawing.Size(75, 19);
- this.txt_PlanR.TabIndex = 478;
- this.txt_PlanR.Tag = "";
- //
- // ultraLabel81
- //
- this.ultraLabel81.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel81.Location = new System.Drawing.Point(980, 8);
- this.ultraLabel81.Name = "ultraLabel81";
- this.ultraLabel81.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel81.TabIndex = 477;
- this.ultraLabel81.Text = "领料班组";
- //
- // txt_ylbz
- //
- this.txt_ylbz.AutoSize = true;
- this.txt_ylbz.FlatMode = true;
- this.txt_ylbz.Location = new System.Drawing.Point(1042, 5);
- this.txt_ylbz.Multiline = true;
- this.txt_ylbz.Name = "txt_ylbz";
- this.txt_ylbz.Size = new System.Drawing.Size(75, 23);
- this.txt_ylbz.TabIndex = 476;
- this.txt_ylbz.Tag = "";
- //
- // date_td
- //
- this.date_td.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- this.date_td.FlatMode = true;
- this.date_td.Location = new System.Drawing.Point(842, 59);
- this.date_td.Name = "date_td";
- this.date_td.Size = new System.Drawing.Size(116, 19);
- this.date_td.TabIndex = 475;
- this.date_td.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- //
- // ultraLabel80
- //
- this.ultraLabel80.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel80.Location = new System.Drawing.Point(781, 59);
- this.ultraLabel80.Name = "ultraLabel80";
- this.ultraLabel80.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel80.TabIndex = 474;
- this.ultraLabel80.Text = "填单日期";
- //
- // ultraLabel79
- //
- this.ultraLabel79.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel79.Location = new System.Drawing.Point(817, 32);
- this.ultraLabel79.Name = "ultraLabel79";
- this.ultraLabel79.Size = new System.Drawing.Size(40, 24);
- this.ultraLabel79.TabIndex = 473;
- this.ultraLabel79.Text = "单重";
- //
- // txt_DZ
- //
- this.txt_DZ.AutoSize = true;
- this.txt_DZ.FlatMode = true;
- this.txt_DZ.Location = new System.Drawing.Point(857, 27);
- this.txt_DZ.Multiline = true;
- this.txt_DZ.Name = "txt_DZ";
- this.txt_DZ.Size = new System.Drawing.Size(117, 19);
- this.txt_DZ.TabIndex = 472;
- this.txt_DZ.Tag = "";
- //
- // ultraLabel78
- //
- this.ultraLabel78.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel78.Location = new System.Drawing.Point(387, 7);
- this.ultraLabel78.Name = "ultraLabel78";
- this.ultraLabel78.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel78.TabIndex = 464;
- this.ultraLabel78.Text = "仓库代码";
- //
- // ultraLabel77
- //
- this.ultraLabel77.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel77.Location = new System.Drawing.Point(713, 35);
- this.ultraLabel77.Name = "ultraLabel77";
- this.ultraLabel77.Size = new System.Drawing.Size(33, 14);
- this.ultraLabel77.TabIndex = 463;
- this.ultraLabel77.Text = "材质";
- //
- // txt_CZ
- //
- this.txt_CZ.AutoSize = true;
- this.txt_CZ.FlatMode = true;
- this.txt_CZ.Location = new System.Drawing.Point(748, 31);
- this.txt_CZ.Multiline = true;
- this.txt_CZ.Name = "txt_CZ";
- this.txt_CZ.Size = new System.Drawing.Size(63, 19);
- this.txt_CZ.TabIndex = 462;
- this.txt_CZ.Tag = "";
- //
- // ultraLabel76
- //
- this.ultraLabel76.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel76.Location = new System.Drawing.Point(817, 90);
- this.ultraLabel76.Name = "ultraLabel76";
- this.ultraLabel76.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel76.TabIndex = 461;
- this.ultraLabel76.Text = "金额";
- this.ultraLabel76.Visible = false;
- //
- // txt_Moneny
- //
- this.txt_Moneny.AutoSize = true;
- this.txt_Moneny.Enabled = false;
- this.txt_Moneny.FlatMode = true;
- this.txt_Moneny.Location = new System.Drawing.Point(876, 87);
- this.txt_Moneny.Multiline = true;
- this.txt_Moneny.Name = "txt_Moneny";
- this.txt_Moneny.Size = new System.Drawing.Size(47, 19);
- this.txt_Moneny.TabIndex = 460;
- this.txt_Moneny.Tag = "";
- this.txt_Moneny.Visible = false;
- //
- // ultraLabel74
- //
- this.ultraLabel74.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel74.Location = new System.Drawing.Point(817, 116);
- this.ultraLabel74.Name = "ultraLabel74";
- this.ultraLabel74.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel74.TabIndex = 459;
- this.ultraLabel74.Text = "单价";
- this.ultraLabel74.Visible = false;
- //
- // txt_Price
- //
- this.txt_Price.AutoSize = true;
- this.txt_Price.Enabled = false;
- this.txt_Price.FlatMode = true;
- this.txt_Price.Location = new System.Drawing.Point(876, 113);
- this.txt_Price.Multiline = true;
- this.txt_Price.Name = "txt_Price";
- this.txt_Price.Size = new System.Drawing.Size(47, 19);
- this.txt_Price.TabIndex = 458;
- this.txt_Price.Tag = "";
- this.txt_Price.Visible = false;
- //
- // ultraLabel73
- //
- this.ultraLabel73.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel73.Location = new System.Drawing.Point(204, 62);
- this.ultraLabel73.Name = "ultraLabel73";
- this.ultraLabel73.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel73.TabIndex = 457;
- this.ultraLabel73.Text = "实发数量";
- //
- // txt_YSS
- //
- this.txt_YSS.AutoSize = true;
- this.txt_YSS.FlatMode = true;
- this.txt_YSS.Location = new System.Drawing.Point(263, 59);
- this.txt_YSS.Multiline = true;
- this.txt_YSS.Name = "txt_YSS";
- this.txt_YSS.Size = new System.Drawing.Size(118, 19);
- this.txt_YSS.TabIndex = 456;
- this.txt_YSS.Tag = "";
- //
- // ultraLabel72
- //
- this.ultraLabel72.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel72.Location = new System.Drawing.Point(3, 62);
- this.ultraLabel72.Name = "ultraLabel72";
- this.ultraLabel72.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel72.TabIndex = 455;
- this.ultraLabel72.Text = "请领数量";
- //
- // txt_qlsl
- //
- this.txt_qlsl.AutoSize = true;
- this.txt_qlsl.FlatMode = true;
- this.txt_qlsl.Location = new System.Drawing.Point(60, 59);
- this.txt_qlsl.Name = "txt_qlsl";
- this.txt_qlsl.Size = new System.Drawing.Size(129, 19);
- this.txt_qlsl.TabIndex = 454;
- this.txt_qlsl.Tag = "";
- //
- // ultraLabel29
- //
- this.ultraLabel29.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel29.Location = new System.Drawing.Point(204, 88);
- this.ultraLabel29.Name = "ultraLabel29";
- this.ultraLabel29.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel29.TabIndex = 453;
- this.ultraLabel29.Text = "供方名称";
- //
- // txt_GYMC
- //
- this.txt_GYMC.AutoSize = true;
- this.txt_GYMC.FlatMode = true;
- this.txt_GYMC.Location = new System.Drawing.Point(263, 84);
- this.txt_GYMC.Multiline = true;
- this.txt_GYMC.Name = "txt_GYMC";
- this.txt_GYMC.Size = new System.Drawing.Size(118, 19);
- this.txt_GYMC.TabIndex = 452;
- this.txt_GYMC.Tag = "";
- //
- // ultraLabel28
- //
- this.ultraLabel28.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel28.Location = new System.Drawing.Point(589, 34);
- this.ultraLabel28.Name = "ultraLabel28";
- this.ultraLabel28.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel28.TabIndex = 450;
- this.ultraLabel28.Text = "计量单位";
- //
- // txt_JLDW
- //
- this.txt_JLDW.AutoSize = true;
- this.txt_JLDW.FlatMode = true;
- this.txt_JLDW.Location = new System.Drawing.Point(646, 31);
- this.txt_JLDW.Multiline = true;
- this.txt_JLDW.Name = "txt_JLDW";
- this.txt_JLDW.Size = new System.Drawing.Size(58, 19);
- this.txt_JLDW.TabIndex = 449;
- this.txt_JLDW.Tag = "";
- //
- // ultraLabel15
- //
- this.ultraLabel15.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel15.Location = new System.Drawing.Point(387, 36);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel15.TabIndex = 448;
- this.ultraLabel15.Text = "规格型号";
- //
- // txt_GGXH
- //
- this.txt_GGXH.AutoSize = true;
- this.txt_GGXH.FlatMode = true;
- this.txt_GGXH.Location = new System.Drawing.Point(444, 33);
- this.txt_GGXH.Multiline = true;
- this.txt_GGXH.Name = "txt_GGXH";
- this.txt_GGXH.Size = new System.Drawing.Size(139, 19);
- this.txt_GGXH.TabIndex = 447;
- this.txt_GGXH.Tag = "";
- //
- // ultraLabel14
- //
- this.ultraLabel14.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel14.Location = new System.Drawing.Point(204, 36);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel14.TabIndex = 446;
- this.ultraLabel14.Text = "物资名称";
- //
- // txt_WZMC
- //
- this.txt_WZMC.AutoSize = true;
- this.txt_WZMC.FlatMode = true;
- this.txt_WZMC.Location = new System.Drawing.Point(263, 33);
- this.txt_WZMC.Multiline = true;
- this.txt_WZMC.Name = "txt_WZMC";
- this.txt_WZMC.Size = new System.Drawing.Size(118, 19);
- this.txt_WZMC.TabIndex = 445;
- this.txt_WZMC.Tag = "";
- //
- // ultraLabel8
- //
- this.ultraLabel8.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel8.Location = new System.Drawing.Point(788, 8);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel8.TabIndex = 444;
- this.ultraLabel8.Text = "仓库名称";
- //
- // date_YS
- //
- this.date_YS.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- this.date_YS.Enabled = false;
- this.date_YS.FlatMode = true;
- this.date_YS.Location = new System.Drawing.Point(265, 5);
- this.date_YS.Name = "date_YS";
- this.date_YS.Size = new System.Drawing.Size(116, 19);
- this.date_YS.TabIndex = 442;
- this.date_YS.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- //
- // ultraLabel7
- //
- this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel7.Location = new System.Drawing.Point(204, 5);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel7.TabIndex = 441;
- this.ultraLabel7.Text = "发料日期";
- //
- // txt_Remark
- //
- this.txt_Remark.AutoSize = true;
- this.txt_Remark.FlatMode = true;
- this.txt_Remark.Location = new System.Drawing.Point(431, 83);
- this.txt_Remark.Multiline = true;
- this.txt_Remark.Name = "txt_Remark";
- this.txt_Remark.Size = new System.Drawing.Size(357, 49);
- this.txt_Remark.TabIndex = 440;
- this.txt_Remark.Tag = "";
- //
- // ultraLabel2
- //
- this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel2.Location = new System.Drawing.Point(3, 36);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel2.TabIndex = 438;
- this.ultraLabel2.Text = "物资代码";
- //
- // ultraLabel75
- //
- this.ultraLabel75.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel75.Location = new System.Drawing.Point(387, 86);
- this.ultraLabel75.Name = "ultraLabel75";
- this.ultraLabel75.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel75.TabIndex = 436;
- this.ultraLabel75.Text = "备注";
- //
- // ultraLabel71
- //
- this.ultraLabel71.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel71.Location = new System.Drawing.Point(586, 8);
- this.ultraLabel71.Name = "ultraLabel71";
- this.ultraLabel71.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel71.TabIndex = 428;
- this.ultraLabel71.Text = "仓库类别";
- //
- // ultraLabel1
- //
- this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel1.Location = new System.Drawing.Point(3, 84);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel1.TabIndex = 363;
- this.ultraLabel1.Text = "供方代码";
- //
- // ultraLabel4
- //
- this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel4.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel4.TabIndex = 361;
- this.ultraLabel4.Text = "领料单号";
- //
- // txt_BH
- //
- this.txt_BH.AutoSize = true;
- this.txt_BH.Enabled = false;
- this.txt_BH.FlatMode = true;
- this.txt_BH.Location = new System.Drawing.Point(60, 5);
- this.txt_BH.Name = "txt_BH";
- this.txt_BH.Size = new System.Drawing.Size(129, 19);
- this.txt_BH.TabIndex = 358;
- this.txt_BH.Tag = "";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.gd_CK);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 67);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1169, 283);
- this.panel2.TabIndex = 5;
- //
- // gd_CK
- //
- ultraGridColumn26.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn26.Header.Caption = "领料单号";
- ultraGridColumn26.Header.VisiblePosition = 0;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn27.Header.Caption = "发料日期 ";
- ultraGridColumn27.Header.VisiblePosition = 1;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.Header.Caption = "发料仓库代码";
- ultraGridColumn28.Header.VisiblePosition = 2;
- ultraGridColumn28.Hidden = true;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn29.Header.Caption = "发料仓库类别";
- ultraGridColumn29.Header.VisiblePosition = 3;
- ultraGridColumn29.Hidden = true;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn30.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn30.Header.Caption = "发料仓库";
- ultraGridColumn30.Header.VisiblePosition = 4;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.Header.Caption = "领料班组";
- ultraGridColumn31.Header.VisiblePosition = 5;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn32.Header.Caption = "物资代码";
- ultraGridColumn32.Header.VisiblePosition = 6;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.Header.Caption = "物资名称";
- ultraGridColumn33.Header.VisiblePosition = 8;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn34.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn34.Header.Caption = "规格型号";
- ultraGridColumn34.Header.VisiblePosition = 9;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn35.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn35.Header.Caption = "计量单位";
- ultraGridColumn35.Header.VisiblePosition = 10;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn36.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn36.Header.Caption = "材质";
- ultraGridColumn36.Header.VisiblePosition = 11;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn37.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn37.Header.Caption = "单重";
- ultraGridColumn37.Header.VisiblePosition = 16;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn38.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn38.Header.Caption = "计划员";
- ultraGridColumn38.Header.VisiblePosition = 12;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn39.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn39.Header.Caption = "请领数量";
- ultraGridColumn39.Header.VisiblePosition = 14;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn40.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn40.Header.Caption = "实发数量";
- ultraGridColumn40.Header.VisiblePosition = 15;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn41.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn41.Header.Caption = "单价";
- ultraGridColumn41.Header.VisiblePosition = 13;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn42.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn42.Header.Caption = "金额";
- ultraGridColumn42.Header.VisiblePosition = 17;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn43.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn43.Header.Caption = "填单日期 ";
- ultraGridColumn43.Header.VisiblePosition = 19;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn44.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn44.Header.Caption = "领料人";
- ultraGridColumn44.Header.VisiblePosition = 21;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn45.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn45.Header.Caption = "供方代码";
- ultraGridColumn45.Header.VisiblePosition = 22;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 37;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn46.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn46.Header.Caption = "供方名称";
- ultraGridColumn46.Header.VisiblePosition = 23;
- ultraGridColumn46.Hidden = true;
- ultraGridColumn46.RowLayoutColumnInfo.OriginX = 39;
- ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn47.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn47.Header.Caption = "录入人";
- ultraGridColumn47.Header.VisiblePosition = 24;
- ultraGridColumn47.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn48.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn48.Header.Caption = "录入日期 ";
- ultraGridColumn48.Header.VisiblePosition = 20;
- ultraGridColumn48.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn49.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn49.Header.Caption = "备注";
- ultraGridColumn49.Header.VisiblePosition = 7;
- ultraGridColumn49.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn50.Header.Caption = "用途";
- ultraGridColumn50.Header.VisiblePosition = 25;
- ultraGridColumn50.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn51.Header.Caption = "类别代码";
- ultraGridColumn51.Header.VisiblePosition = 26;
- ultraGridColumn51.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn52.Header.Caption = "类别名称";
- ultraGridColumn52.Header.VisiblePosition = 27;
- ultraGridColumn52.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
- appearance49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- appearance49.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
- ultraGridColumn53.CellButtonAppearance = appearance49;
- ultraGridColumn53.Header.Caption = "发票号";
- ultraGridColumn53.Header.VisiblePosition = 18;
- ultraGridColumn53.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand6.Columns.AddRange(new object[] {
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53});
- ultraGridBand6.UseRowLayout = true;
- this.gd_CK.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
- this.gd_CK.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gd_CK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gd_CK.Location = new System.Drawing.Point(0, 0);
- this.gd_CK.Name = "gd_CK";
- this.gd_CK.Size = new System.Drawing.Size(1169, 283);
- this.gd_CK.TabIndex = 1;
- this.gd_CK.AfterRowActivate += new System.EventHandler(this.gd_CK_AfterRowActivate);
- //
- // ultraLabel3
- //
- this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel3.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel3.TabIndex = 365;
- this.ultraLabel3.Text = "规格型号";
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.AutoSize = true;
- this.ultraTextEditor1.Enabled = false;
- this.ultraTextEditor1.FlatMode = true;
- this.ultraTextEditor1.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor1.Multiline = true;
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor1.TabIndex = 364;
- this.ultraTextEditor1.Tag = "";
- //
- // ultraLabel5
- //
- this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel5.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel5.TabIndex = 363;
- this.ultraLabel5.Text = "物资名称";
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.AutoSize = true;
- this.ultraTextEditor2.Enabled = false;
- this.ultraTextEditor2.FlatMode = true;
- this.ultraTextEditor2.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor2.Multiline = true;
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor2.TabIndex = 362;
- this.ultraTextEditor2.Tag = "";
- //
- // ultraLabel6
- //
- this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel6.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel6.TabIndex = 361;
- this.ultraLabel6.Text = "物资代码";
- //
- // ultraTextEditor3
- //
- this.ultraTextEditor3.AutoSize = true;
- this.ultraTextEditor3.Enabled = false;
- this.ultraTextEditor3.FlatMode = true;
- this.ultraTextEditor3.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor3.Name = "ultraTextEditor3";
- this.ultraTextEditor3.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor3.TabIndex = 358;
- this.ultraTextEditor3.Tag = "";
- //
- // ultraComboEditor1
- //
- this.ultraComboEditor1.AutoSize = true;
- valueListItem14.DataValue = "0";
- valueListItem13.DataValue = valueListItem14;
- valueListItem13.DisplayText = "";
- valueListItem12.DataValue = valueListItem13;
- valueListItem12.DisplayText = "";
- valueListItem11.DataValue = valueListItem12;
- valueListItem11.DisplayText = "";
- valueListItem10.DataValue = valueListItem11;
- valueListItem10.DisplayText = "";
- valueListItem9.DataValue = valueListItem10;
- valueListItem9.DisplayText = "";
- valueListItem20.DataValue = "A";
- valueListItem20.DisplayText = "A";
- valueListItem19.DataValue = valueListItem20;
- valueListItem19.DisplayText = "A";
- valueListItem18.DataValue = valueListItem19;
- valueListItem18.DisplayText = "A";
- valueListItem17.DataValue = valueListItem18;
- valueListItem17.DisplayText = "A";
- valueListItem16.DataValue = valueListItem17;
- valueListItem16.DisplayText = "A";
- valueListItem15.DataValue = valueListItem16;
- valueListItem15.DisplayText = "A";
- valueListItem26.DataValue = "B";
- valueListItem26.DisplayText = "B";
- valueListItem25.DataValue = valueListItem26;
- valueListItem25.DisplayText = "B";
- valueListItem24.DataValue = valueListItem25;
- valueListItem24.DisplayText = "B";
- valueListItem23.DataValue = valueListItem24;
- valueListItem23.DisplayText = "B";
- valueListItem22.DataValue = valueListItem23;
- valueListItem22.DisplayText = "B";
- valueListItem21.DataValue = valueListItem22;
- valueListItem21.DisplayText = "B";
- valueListItem32.DataValue = "C";
- valueListItem32.DisplayText = "C";
- valueListItem31.DataValue = valueListItem32;
- valueListItem31.DisplayText = "C";
- valueListItem30.DataValue = valueListItem31;
- valueListItem30.DisplayText = "C";
- valueListItem29.DataValue = valueListItem30;
- valueListItem29.DisplayText = "C";
- valueListItem28.DataValue = valueListItem29;
- valueListItem28.DisplayText = "C";
- valueListItem27.DataValue = valueListItem28;
- valueListItem27.DisplayText = "C";
- this.ultraComboEditor1.Items.Add(valueListItem9);
- this.ultraComboEditor1.Items.Add(valueListItem15);
- this.ultraComboEditor1.Items.Add(valueListItem21);
- this.ultraComboEditor1.Items.Add(valueListItem27);
- this.ultraComboEditor1.Location = new System.Drawing.Point(340, 5);
- this.ultraComboEditor1.Name = "ultraComboEditor1";
- this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
- this.ultraComboEditor1.TabIndex = 369;
- //
- // ultraLabel9
- //
- this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel9.Location = new System.Drawing.Point(289, 8);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel9.TabIndex = 368;
- this.ultraLabel9.Text = "物资类别";
- //
- // ultraLabel10
- //
- this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel10.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel10.TabIndex = 367;
- this.ultraLabel10.Text = "材质";
- //
- // ultraTextEditor4
- //
- this.ultraTextEditor4.AutoSize = true;
- this.ultraTextEditor4.Enabled = false;
- this.ultraTextEditor4.FlatMode = true;
- this.ultraTextEditor4.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor4.Multiline = true;
- this.ultraTextEditor4.Name = "ultraTextEditor4";
- this.ultraTextEditor4.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor4.TabIndex = 366;
- this.ultraTextEditor4.Tag = "";
- //
- // ultraLabel11
- //
- this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel11.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel11.TabIndex = 365;
- this.ultraLabel11.Text = "规格型号";
- //
- // ultraTextEditor5
- //
- this.ultraTextEditor5.AutoSize = true;
- this.ultraTextEditor5.Enabled = false;
- this.ultraTextEditor5.FlatMode = true;
- this.ultraTextEditor5.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor5.Multiline = true;
- this.ultraTextEditor5.Name = "ultraTextEditor5";
- this.ultraTextEditor5.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor5.TabIndex = 364;
- this.ultraTextEditor5.Tag = "";
- //
- // ultraLabel12
- //
- this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel12.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel12.TabIndex = 363;
- this.ultraLabel12.Text = "物资名称";
- //
- // ultraTextEditor6
- //
- this.ultraTextEditor6.AutoSize = true;
- this.ultraTextEditor6.Enabled = false;
- this.ultraTextEditor6.FlatMode = true;
- this.ultraTextEditor6.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor6.Multiline = true;
- this.ultraTextEditor6.Name = "ultraTextEditor6";
- this.ultraTextEditor6.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor6.TabIndex = 362;
- this.ultraTextEditor6.Tag = "";
- //
- // ultraLabel13
- //
- this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel13.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel13.TabIndex = 361;
- this.ultraLabel13.Text = "物资代码";
- //
- // ultraTextEditor7
- //
- this.ultraTextEditor7.AutoSize = true;
- this.ultraTextEditor7.Enabled = false;
- this.ultraTextEditor7.FlatMode = true;
- this.ultraTextEditor7.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor7.Name = "ultraTextEditor7";
- this.ultraTextEditor7.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor7.TabIndex = 358;
- this.ultraTextEditor7.Tag = "";
- //
- // ultraLabel18
- //
- this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel18.Location = new System.Drawing.Point(3, 99);
- this.ultraLabel18.Name = "ultraLabel18";
- this.ultraLabel18.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel18.TabIndex = 377;
- this.ultraLabel18.Text = "最高限价";
- //
- // ultraTextEditor9
- //
- this.ultraTextEditor9.AutoSize = true;
- this.ultraTextEditor9.Enabled = false;
- this.ultraTextEditor9.FlatMode = true;
- this.ultraTextEditor9.Location = new System.Drawing.Point(60, 96);
- this.ultraTextEditor9.Name = "ultraTextEditor9";
- this.ultraTextEditor9.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor9.TabIndex = 376;
- this.ultraTextEditor9.Tag = "";
- //
- // ultraLabel19
- //
- this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel19.Location = new System.Drawing.Point(289, 77);
- this.ultraLabel19.Name = "ultraLabel19";
- this.ultraLabel19.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel19.TabIndex = 375;
- this.ultraLabel19.Text = "最高限价";
- //
- // ultraTextEditor10
- //
- this.ultraTextEditor10.AutoSize = true;
- this.ultraTextEditor10.Enabled = false;
- this.ultraTextEditor10.FlatMode = true;
- this.ultraTextEditor10.Location = new System.Drawing.Point(346, 74);
- this.ultraTextEditor10.Name = "ultraTextEditor10";
- this.ultraTextEditor10.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor10.TabIndex = 374;
- this.ultraTextEditor10.Tag = "";
- //
- // ultraLabel20
- //
- this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel20.Location = new System.Drawing.Point(289, 55);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel20.TabIndex = 373;
- this.ultraLabel20.Text = "预估价";
- //
- // ultraTextEditor11
- //
- this.ultraTextEditor11.AutoSize = true;
- this.ultraTextEditor11.Enabled = false;
- this.ultraTextEditor11.FlatMode = true;
- this.ultraTextEditor11.Location = new System.Drawing.Point(346, 52);
- this.ultraTextEditor11.Name = "ultraTextEditor11";
- this.ultraTextEditor11.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor11.TabIndex = 372;
- this.ultraTextEditor11.Tag = "";
- //
- // ultraLabel21
- //
- this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel21.Location = new System.Drawing.Point(289, 33);
- this.ultraLabel21.Name = "ultraLabel21";
- this.ultraLabel21.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel21.TabIndex = 371;
- this.ultraLabel21.Text = "计划价";
- //
- // ultraTextEditor12
- //
- this.ultraTextEditor12.AutoSize = true;
- this.ultraTextEditor12.Enabled = false;
- this.ultraTextEditor12.FlatMode = true;
- this.ultraTextEditor12.Location = new System.Drawing.Point(346, 30);
- this.ultraTextEditor12.Name = "ultraTextEditor12";
- this.ultraTextEditor12.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor12.TabIndex = 370;
- this.ultraTextEditor12.Tag = "";
- //
- // ultraComboEditor2
- //
- this.ultraComboEditor2.AutoSize = true;
- valueListItem38.DataValue = "0";
- valueListItem37.DataValue = valueListItem38;
- valueListItem37.DisplayText = "";
- valueListItem36.DataValue = valueListItem37;
- valueListItem36.DisplayText = "";
- valueListItem35.DataValue = valueListItem36;
- valueListItem35.DisplayText = "";
- valueListItem34.DataValue = valueListItem35;
- valueListItem34.DisplayText = "";
- valueListItem33.DataValue = valueListItem34;
- valueListItem33.DisplayText = "";
- valueListItem44.DataValue = "A";
- valueListItem44.DisplayText = "A";
- valueListItem43.DataValue = valueListItem44;
- valueListItem43.DisplayText = "A";
- valueListItem42.DataValue = valueListItem43;
- valueListItem42.DisplayText = "A";
- valueListItem41.DataValue = valueListItem42;
- valueListItem41.DisplayText = "A";
- valueListItem40.DataValue = valueListItem41;
- valueListItem40.DisplayText = "A";
- valueListItem39.DataValue = valueListItem40;
- valueListItem39.DisplayText = "A";
- valueListItem50.DataValue = "B";
- valueListItem50.DisplayText = "B";
- valueListItem49.DataValue = valueListItem50;
- valueListItem49.DisplayText = "B";
- valueListItem48.DataValue = valueListItem49;
- valueListItem48.DisplayText = "B";
- valueListItem47.DataValue = valueListItem48;
- valueListItem47.DisplayText = "B";
- valueListItem46.DataValue = valueListItem47;
- valueListItem46.DisplayText = "B";
- valueListItem45.DataValue = valueListItem46;
- valueListItem45.DisplayText = "B";
- valueListItem56.DataValue = "C";
- valueListItem56.DisplayText = "C";
- valueListItem55.DataValue = valueListItem56;
- valueListItem55.DisplayText = "C";
- valueListItem54.DataValue = valueListItem55;
- valueListItem54.DisplayText = "C";
- valueListItem53.DataValue = valueListItem54;
- valueListItem53.DisplayText = "C";
- valueListItem52.DataValue = valueListItem53;
- valueListItem52.DisplayText = "C";
- valueListItem51.DataValue = valueListItem52;
- valueListItem51.DisplayText = "C";
- this.ultraComboEditor2.Items.Add(valueListItem33);
- this.ultraComboEditor2.Items.Add(valueListItem39);
- this.ultraComboEditor2.Items.Add(valueListItem45);
- this.ultraComboEditor2.Items.Add(valueListItem51);
- this.ultraComboEditor2.Location = new System.Drawing.Point(346, 5);
- this.ultraComboEditor2.Name = "ultraComboEditor2";
- this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
- this.ultraComboEditor2.TabIndex = 369;
- //
- // ultraLabel22
- //
- this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel22.Location = new System.Drawing.Point(289, 8);
- this.ultraLabel22.Name = "ultraLabel22";
- this.ultraLabel22.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel22.TabIndex = 368;
- this.ultraLabel22.Text = "物资类别";
- //
- // ultraLabel23
- //
- this.ultraLabel23.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel23.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel23.Name = "ultraLabel23";
- this.ultraLabel23.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel23.TabIndex = 367;
- this.ultraLabel23.Text = "材质";
- //
- // ultraTextEditor13
- //
- this.ultraTextEditor13.AutoSize = true;
- this.ultraTextEditor13.Enabled = false;
- this.ultraTextEditor13.FlatMode = true;
- this.ultraTextEditor13.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor13.Multiline = true;
- this.ultraTextEditor13.Name = "ultraTextEditor13";
- this.ultraTextEditor13.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor13.TabIndex = 366;
- this.ultraTextEditor13.Tag = "";
- //
- // ultraLabel24
- //
- this.ultraLabel24.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel24.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel24.Name = "ultraLabel24";
- this.ultraLabel24.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel24.TabIndex = 365;
- this.ultraLabel24.Text = "规格型号";
- //
- // ultraTextEditor14
- //
- this.ultraTextEditor14.AutoSize = true;
- this.ultraTextEditor14.Enabled = false;
- this.ultraTextEditor14.FlatMode = true;
- this.ultraTextEditor14.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor14.Multiline = true;
- this.ultraTextEditor14.Name = "ultraTextEditor14";
- this.ultraTextEditor14.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor14.TabIndex = 364;
- this.ultraTextEditor14.Tag = "";
- //
- // ultraLabel25
- //
- this.ultraLabel25.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel25.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel25.TabIndex = 363;
- this.ultraLabel25.Text = "物资名称";
- //
- // ultraTextEditor15
- //
- this.ultraTextEditor15.AutoSize = true;
- this.ultraTextEditor15.Enabled = false;
- this.ultraTextEditor15.FlatMode = true;
- this.ultraTextEditor15.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor15.Multiline = true;
- this.ultraTextEditor15.Name = "ultraTextEditor15";
- this.ultraTextEditor15.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor15.TabIndex = 362;
- this.ultraTextEditor15.Tag = "";
- //
- // ultraLabel26
- //
- this.ultraLabel26.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel26.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel26.Name = "ultraLabel26";
- this.ultraLabel26.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel26.TabIndex = 361;
- this.ultraLabel26.Text = "物资代码";
- //
- // ultraTextEditor16
- //
- this.ultraTextEditor16.AutoSize = true;
- this.ultraTextEditor16.Enabled = false;
- this.ultraTextEditor16.FlatMode = true;
- this.ultraTextEditor16.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor16.Name = "ultraTextEditor16";
- this.ultraTextEditor16.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor16.TabIndex = 358;
- this.ultraTextEditor16.Tag = "";
- //
- // ultraLabel16
- //
- this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel16.Location = new System.Drawing.Point(261, 33);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(118, 18);
- this.ultraLabel16.TabIndex = 405;
- this.ultraLabel16.Text = "委托代理人身份证号";
- //
- // ultraTextEditor8
- //
- this.ultraTextEditor8.AutoSize = true;
- this.ultraTextEditor8.FlatMode = true;
- this.ultraTextEditor8.Location = new System.Drawing.Point(385, 30);
- this.ultraTextEditor8.Multiline = true;
- this.ultraTextEditor8.Name = "ultraTextEditor8";
- this.ultraTextEditor8.Size = new System.Drawing.Size(91, 19);
- this.ultraTextEditor8.TabIndex = 404;
- this.ultraTextEditor8.Tag = "";
- //
- // ultraLabel17
- //
- this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel17.Location = new System.Drawing.Point(4, 99);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(109, 19);
- this.ultraLabel17.TabIndex = 403;
- this.ultraLabel17.Text = "法人代表身份证号";
- //
- // ultraTextEditor18
- //
- this.ultraTextEditor18.AutoSize = true;
- this.ultraTextEditor18.FlatMode = true;
- this.ultraTextEditor18.Location = new System.Drawing.Point(112, 96);
- this.ultraTextEditor18.Multiline = true;
- this.ultraTextEditor18.Name = "ultraTextEditor18";
- this.ultraTextEditor18.Size = new System.Drawing.Size(139, 19);
- this.ultraTextEditor18.TabIndex = 402;
- this.ultraTextEditor18.Tag = "";
- //
- // ultraLabel27
- //
- this.ultraLabel27.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel27.Location = new System.Drawing.Point(261, 7);
- this.ultraLabel27.Name = "ultraLabel27";
- this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel27.TabIndex = 401;
- this.ultraLabel27.Text = "委托代理人";
- //
- // ultraTextEditor19
- //
- this.ultraTextEditor19.AutoSize = true;
- this.ultraTextEditor19.FlatMode = true;
- this.ultraTextEditor19.Location = new System.Drawing.Point(333, 4);
- this.ultraTextEditor19.Multiline = true;
- this.ultraTextEditor19.Name = "ultraTextEditor19";
- this.ultraTextEditor19.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor19.TabIndex = 400;
- this.ultraTextEditor19.Tag = "";
- //
- // ultraTextEditor20
- //
- this.ultraTextEditor20.AutoSize = true;
- this.ultraTextEditor20.FlatMode = true;
- this.ultraTextEditor20.Location = new System.Drawing.Point(927, 28);
- this.ultraTextEditor20.Multiline = true;
- this.ultraTextEditor20.Name = "ultraTextEditor20";
- this.ultraTextEditor20.Size = new System.Drawing.Size(173, 85);
- this.ultraTextEditor20.TabIndex = 399;
- this.ultraTextEditor20.Tag = "";
- //
- // ultraComboEditor3
- //
- this.ultraComboEditor3.AutoSize = true;
- valueListItem62.DataValue = "0";
- valueListItem62.DisplayText = "非以旧换新";
- valueListItem61.DataValue = valueListItem62;
- valueListItem61.DisplayText = "非以旧换新";
- valueListItem60.DataValue = valueListItem61;
- valueListItem60.DisplayText = "非以旧换新";
- valueListItem59.DataValue = valueListItem60;
- valueListItem59.DisplayText = "非以旧换新";
- valueListItem58.DataValue = valueListItem59;
- valueListItem58.DisplayText = "非以旧换新";
- valueListItem57.DataValue = valueListItem58;
- valueListItem57.DisplayText = "非以旧换新";
- valueListItem68.DataValue = "1";
- valueListItem68.DisplayText = "以旧换新";
- valueListItem67.DataValue = valueListItem68;
- valueListItem67.DisplayText = "以旧换新";
- valueListItem66.DataValue = valueListItem67;
- valueListItem66.DisplayText = "以旧换新";
- valueListItem65.DataValue = valueListItem66;
- valueListItem65.DisplayText = "以旧换新";
- valueListItem64.DataValue = valueListItem65;
- valueListItem64.DisplayText = "以旧换新";
- valueListItem63.DataValue = valueListItem64;
- valueListItem63.DisplayText = "以旧换新";
- this.ultraComboEditor3.Items.Add(valueListItem57);
- this.ultraComboEditor3.Items.Add(valueListItem63);
- this.ultraComboEditor3.Location = new System.Drawing.Point(962, 2);
- this.ultraComboEditor3.Name = "ultraComboEditor3";
- this.ultraComboEditor3.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor3.TabIndex = 398;
- //
- // ultraLabel37
- //
- this.ultraLabel37.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel37.Location = new System.Drawing.Point(886, 5);
- this.ultraLabel37.Name = "ultraLabel37";
- this.ultraLabel37.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel37.TabIndex = 397;
- this.ultraLabel37.Text = "是否以旧换新";
- //
- // ultraComboEditor4
- //
- this.ultraComboEditor4.AutoSize = true;
- valueListItem74.DataValue = "0";
- valueListItem74.DisplayText = "非招标物资";
- valueListItem73.DataValue = valueListItem74;
- valueListItem73.DisplayText = "非招标物资";
- valueListItem72.DataValue = valueListItem73;
- valueListItem72.DisplayText = "非招标物资";
- valueListItem71.DataValue = valueListItem72;
- valueListItem71.DisplayText = "非招标物资";
- valueListItem70.DataValue = valueListItem71;
- valueListItem70.DisplayText = "非招标物资";
- valueListItem69.DataValue = valueListItem70;
- valueListItem69.DisplayText = "非招标物资";
- valueListItem80.DataValue = "1";
- valueListItem80.DisplayText = "招标物资";
- valueListItem79.DataValue = valueListItem80;
- valueListItem79.DisplayText = "招标物资";
- valueListItem78.DataValue = valueListItem79;
- valueListItem78.DisplayText = "招标物资";
- valueListItem77.DataValue = valueListItem78;
- valueListItem77.DisplayText = "招标物资";
- valueListItem76.DataValue = valueListItem77;
- valueListItem76.DisplayText = "招标物资";
- valueListItem75.DataValue = valueListItem76;
- valueListItem75.DisplayText = "招标物资";
- this.ultraComboEditor4.Items.Add(valueListItem69);
- this.ultraComboEditor4.Items.Add(valueListItem75);
- this.ultraComboEditor4.Location = new System.Drawing.Point(760, 73);
- this.ultraComboEditor4.Name = "ultraComboEditor4";
- this.ultraComboEditor4.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor4.TabIndex = 396;
- //
- // ultraLabel38
- //
- this.ultraLabel38.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel38.Location = new System.Drawing.Point(684, 76);
- this.ultraLabel38.Name = "ultraLabel38";
- this.ultraLabel38.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel38.TabIndex = 395;
- this.ultraLabel38.Text = "是否招标物资";
- //
- // ultraComboEditor5
- //
- this.ultraComboEditor5.AutoSize = true;
- valueListItem86.DataValue = "0";
- valueListItem86.DisplayText = "非修复物资";
- valueListItem85.DataValue = valueListItem86;
- valueListItem85.DisplayText = "非修复物资";
- valueListItem84.DataValue = valueListItem85;
- valueListItem84.DisplayText = "非修复物资";
- valueListItem83.DataValue = valueListItem84;
- valueListItem83.DisplayText = "非修复物资";
- valueListItem82.DataValue = valueListItem83;
- valueListItem82.DisplayText = "非修复物资";
- valueListItem81.DataValue = valueListItem82;
- valueListItem81.DisplayText = "非修复物资";
- valueListItem92.DataValue = "1";
- valueListItem92.DisplayText = "修复物资";
- valueListItem91.DataValue = valueListItem92;
- valueListItem91.DisplayText = "修复物资";
- valueListItem90.DataValue = valueListItem91;
- valueListItem90.DisplayText = "修复物资";
- valueListItem89.DataValue = valueListItem90;
- valueListItem89.DisplayText = "修复物资";
- valueListItem88.DataValue = valueListItem89;
- valueListItem88.DisplayText = "修复物资";
- valueListItem87.DataValue = valueListItem88;
- valueListItem87.DisplayText = "修复物资";
- this.ultraComboEditor5.Items.Add(valueListItem81);
- this.ultraComboEditor5.Items.Add(valueListItem87);
- this.ultraComboEditor5.Location = new System.Drawing.Point(760, 49);
- this.ultraComboEditor5.Name = "ultraComboEditor5";
- this.ultraComboEditor5.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor5.TabIndex = 394;
- //
- // ultraLabel39
- //
- this.ultraLabel39.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel39.Location = new System.Drawing.Point(684, 52);
- this.ultraLabel39.Name = "ultraLabel39";
- this.ultraLabel39.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel39.TabIndex = 393;
- this.ultraLabel39.Text = "是否修复物资";
- //
- // ultraComboEditor6
- //
- this.ultraComboEditor6.AutoSize = true;
- valueListItem98.DataValue = "0";
- valueListItem98.DisplayText = "不包安装";
- valueListItem97.DataValue = valueListItem98;
- valueListItem97.DisplayText = "不包安装";
- valueListItem96.DataValue = valueListItem97;
- valueListItem96.DisplayText = "不包安装";
- valueListItem95.DataValue = valueListItem96;
- valueListItem95.DisplayText = "不包安装";
- valueListItem94.DataValue = valueListItem95;
- valueListItem94.DisplayText = "不包安装";
- valueListItem93.DataValue = valueListItem94;
- valueListItem93.DisplayText = "不包安装";
- valueListItem104.DataValue = "1";
- valueListItem104.DisplayText = "包安装";
- valueListItem103.DataValue = valueListItem104;
- valueListItem103.DisplayText = "包安装";
- valueListItem102.DataValue = valueListItem103;
- valueListItem102.DisplayText = "包安装";
- valueListItem101.DataValue = valueListItem102;
- valueListItem101.DisplayText = "包安装";
- valueListItem100.DataValue = valueListItem101;
- valueListItem100.DisplayText = "包安装";
- valueListItem99.DataValue = valueListItem100;
- valueListItem99.DisplayText = "包安装";
- this.ultraComboEditor6.Items.Add(valueListItem93);
- this.ultraComboEditor6.Items.Add(valueListItem99);
- this.ultraComboEditor6.Location = new System.Drawing.Point(760, 26);
- this.ultraComboEditor6.Name = "ultraComboEditor6";
- this.ultraComboEditor6.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor6.TabIndex = 392;
- //
- // ultraLabel40
- //
- this.ultraLabel40.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel40.Location = new System.Drawing.Point(684, 29);
- this.ultraLabel40.Name = "ultraLabel40";
- this.ultraLabel40.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel40.TabIndex = 391;
- this.ultraLabel40.Text = "是否包安装";
- //
- // ultraComboEditor7
- //
- this.ultraComboEditor7.AutoSize = true;
- valueListItem110.DataValue = "0";
- valueListItem110.DisplayText = "非备库物资";
- valueListItem109.DataValue = valueListItem110;
- valueListItem109.DisplayText = "非备库物资";
- valueListItem108.DataValue = valueListItem109;
- valueListItem108.DisplayText = "非备库物资";
- valueListItem107.DataValue = valueListItem108;
- valueListItem107.DisplayText = "非备库物资";
- valueListItem106.DataValue = valueListItem107;
- valueListItem106.DisplayText = "非备库物资";
- valueListItem105.DataValue = valueListItem106;
- valueListItem105.DisplayText = "非备库物资";
- valueListItem116.DataValue = "1";
- valueListItem116.DisplayText = "备库物资";
- valueListItem115.DataValue = valueListItem116;
- valueListItem115.DisplayText = "备库物资";
- valueListItem114.DataValue = valueListItem115;
- valueListItem114.DisplayText = "备库物资";
- valueListItem113.DataValue = valueListItem114;
- valueListItem113.DisplayText = "备库物资";
- valueListItem112.DataValue = valueListItem113;
- valueListItem112.DisplayText = "备库物资";
- valueListItem111.DataValue = valueListItem112;
- valueListItem111.DisplayText = "备库物资";
- this.ultraComboEditor7.Items.Add(valueListItem105);
- this.ultraComboEditor7.Items.Add(valueListItem111);
- this.ultraComboEditor7.Location = new System.Drawing.Point(760, 3);
- this.ultraComboEditor7.Name = "ultraComboEditor7";
- this.ultraComboEditor7.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor7.TabIndex = 390;
- //
- // ultraLabel41
- //
- this.ultraLabel41.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel41.Location = new System.Drawing.Point(684, 6);
- this.ultraLabel41.Name = "ultraLabel41";
- this.ultraLabel41.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel41.TabIndex = 389;
- this.ultraLabel41.Text = "是否备库物资";
- //
- // ultraComboEditor8
- //
- this.ultraComboEditor8.AutoSize = true;
- valueListItem122.DataValue = "0";
- valueListItem122.DisplayText = "正在使用的物资";
- valueListItem121.DataValue = valueListItem122;
- valueListItem121.DisplayText = "正在使用的物资";
- valueListItem120.DataValue = valueListItem121;
- valueListItem120.DisplayText = "正在使用的物资";
- valueListItem119.DataValue = valueListItem120;
- valueListItem119.DisplayText = "正在使用的物资";
- valueListItem118.DataValue = valueListItem119;
- valueListItem118.DisplayText = "正在使用的物资";
- valueListItem117.DataValue = valueListItem118;
- valueListItem117.DisplayText = "正在使用的物资";
- valueListItem128.DataValue = "1";
- valueListItem128.DisplayText = "已废除的物资";
- valueListItem127.DataValue = valueListItem128;
- valueListItem127.DisplayText = "已废除的物资";
- valueListItem126.DataValue = valueListItem127;
- valueListItem126.DisplayText = "已废除的物资";
- valueListItem125.DataValue = valueListItem126;
- valueListItem125.DisplayText = "已废除的物资";
- valueListItem124.DataValue = valueListItem125;
- valueListItem124.DisplayText = "已废除的物资";
- valueListItem123.DataValue = valueListItem124;
- valueListItem123.DisplayText = "已废除的物资";
- this.ultraComboEditor8.Items.Add(valueListItem117);
- this.ultraComboEditor8.Items.Add(valueListItem123);
- this.ultraComboEditor8.Location = new System.Drawing.Point(584, 76);
- this.ultraComboEditor8.Name = "ultraComboEditor8";
- this.ultraComboEditor8.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor8.TabIndex = 388;
- //
- // ultraLabel42
- //
- this.ultraLabel42.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel42.Location = new System.Drawing.Point(482, 79);
- this.ultraLabel42.Name = "ultraLabel42";
- this.ultraLabel42.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel42.TabIndex = 387;
- this.ultraLabel42.Text = "是否废除的物资";
- //
- // ultraComboEditor9
- //
- this.ultraComboEditor9.AutoSize = true;
- valueListItem134.DataValue = "0";
- valueListItem134.DisplayText = "不允许负数发";
- valueListItem133.DataValue = valueListItem134;
- valueListItem133.DisplayText = "不允许负数发";
- valueListItem132.DataValue = valueListItem133;
- valueListItem132.DisplayText = "不允许负数发";
- valueListItem131.DataValue = valueListItem132;
- valueListItem131.DisplayText = "不允许负数发";
- valueListItem130.DataValue = valueListItem131;
- valueListItem130.DisplayText = "不允许负数发";
- valueListItem129.DataValue = valueListItem130;
- valueListItem129.DisplayText = "不允许负数发";
- valueListItem140.DataValue = "1";
- valueListItem140.DisplayText = "允许负数发料";
- valueListItem139.DataValue = valueListItem140;
- valueListItem139.DisplayText = "允许负数发料";
- valueListItem138.DataValue = valueListItem139;
- valueListItem138.DisplayText = "允许负数发料";
- valueListItem137.DataValue = valueListItem138;
- valueListItem137.DisplayText = "允许负数发料";
- valueListItem136.DataValue = valueListItem137;
- valueListItem136.DisplayText = "允许负数发料";
- valueListItem135.DataValue = valueListItem136;
- valueListItem135.DisplayText = "允许负数发料";
- this.ultraComboEditor9.Items.Add(valueListItem129);
- this.ultraComboEditor9.Items.Add(valueListItem135);
- this.ultraComboEditor9.Location = new System.Drawing.Point(584, 52);
- this.ultraComboEditor9.Name = "ultraComboEditor9";
- this.ultraComboEditor9.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor9.TabIndex = 386;
- //
- // ultraLabel43
- //
- this.ultraLabel43.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel43.Location = new System.Drawing.Point(482, 55);
- this.ultraLabel43.Name = "ultraLabel43";
- this.ultraLabel43.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel43.TabIndex = 385;
- this.ultraLabel43.Text = "是否允许负数发料";
- //
- // ultraComboEditor10
- //
- this.ultraComboEditor10.AutoSize = true;
- valueListItem146.DataValue = "0";
- valueListItem146.DisplayText = "非零库存物资";
- valueListItem145.DataValue = valueListItem146;
- valueListItem145.DisplayText = "非零库存物资";
- valueListItem144.DataValue = valueListItem145;
- valueListItem144.DisplayText = "非零库存物资";
- valueListItem143.DataValue = valueListItem144;
- valueListItem143.DisplayText = "非零库存物资";
- valueListItem142.DataValue = valueListItem143;
- valueListItem142.DisplayText = "非零库存物资";
- valueListItem141.DataValue = valueListItem142;
- valueListItem141.DisplayText = "非零库存物资";
- valueListItem152.DataValue = "1";
- valueListItem152.DisplayText = "零库存物资";
- valueListItem151.DataValue = valueListItem152;
- valueListItem151.DisplayText = "零库存物资";
- valueListItem150.DataValue = valueListItem151;
- valueListItem150.DisplayText = "零库存物资";
- valueListItem149.DataValue = valueListItem150;
- valueListItem149.DisplayText = "零库存物资";
- valueListItem148.DataValue = valueListItem149;
- valueListItem148.DisplayText = "零库存物资";
- valueListItem147.DataValue = valueListItem148;
- valueListItem147.DisplayText = "零库存物资";
- this.ultraComboEditor10.Items.Add(valueListItem141);
- this.ultraComboEditor10.Items.Add(valueListItem147);
- this.ultraComboEditor10.Location = new System.Drawing.Point(550, 28);
- this.ultraComboEditor10.Name = "ultraComboEditor10";
- this.ultraComboEditor10.Size = new System.Drawing.Size(128, 21);
- this.ultraComboEditor10.TabIndex = 384;
- //
- // ultraLabel44
- //
- this.ultraLabel44.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel44.Location = new System.Drawing.Point(482, 31);
- this.ultraLabel44.Name = "ultraLabel44";
- this.ultraLabel44.Size = new System.Drawing.Size(66, 20);
- this.ultraLabel44.TabIndex = 383;
- this.ultraLabel44.Text = "是否零库存";
- //
- // ultraLabel45
- //
- this.ultraLabel45.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel45.Location = new System.Drawing.Point(482, 8);
- this.ultraLabel45.Name = "ultraLabel45";
- this.ultraLabel45.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel45.TabIndex = 381;
- this.ultraLabel45.Text = "制造周期";
- //
- // ultraTextEditor21
- //
- this.ultraTextEditor21.AutoSize = true;
- this.ultraTextEditor21.FlatMode = true;
- this.ultraTextEditor21.Location = new System.Drawing.Point(550, 5);
- this.ultraTextEditor21.Name = "ultraTextEditor21";
- this.ultraTextEditor21.Size = new System.Drawing.Size(128, 19);
- this.ultraTextEditor21.TabIndex = 380;
- this.ultraTextEditor21.Tag = "";
- //
- // ultraLabel46
- //
- this.ultraLabel46.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel46.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel46.Name = "ultraLabel46";
- this.ultraLabel46.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel46.TabIndex = 367;
- this.ultraLabel46.Text = "法人代表";
- //
- // ultraTextEditor22
- //
- this.ultraTextEditor22.AutoSize = true;
- this.ultraTextEditor22.FlatMode = true;
- this.ultraTextEditor22.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor22.Multiline = true;
- this.ultraTextEditor22.Name = "ultraTextEditor22";
- this.ultraTextEditor22.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor22.TabIndex = 366;
- this.ultraTextEditor22.Tag = "";
- //
- // ultraLabel47
- //
- this.ultraLabel47.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel47.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel47.Name = "ultraLabel47";
- this.ultraLabel47.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel47.TabIndex = 365;
- this.ultraLabel47.Text = "产品标准";
- //
- // ultraTextEditor23
- //
- this.ultraTextEditor23.AutoSize = true;
- this.ultraTextEditor23.FlatMode = true;
- this.ultraTextEditor23.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor23.Multiline = true;
- this.ultraTextEditor23.Name = "ultraTextEditor23";
- this.ultraTextEditor23.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor23.TabIndex = 364;
- this.ultraTextEditor23.Tag = "";
- //
- // ultraLabel48
- //
- this.ultraLabel48.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel48.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel48.Name = "ultraLabel48";
- this.ultraLabel48.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel48.TabIndex = 363;
- this.ultraLabel48.Text = "供方名称";
- //
- // ultraTextEditor24
- //
- this.ultraTextEditor24.AutoSize = true;
- this.ultraTextEditor24.FlatMode = true;
- this.ultraTextEditor24.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor24.Multiline = true;
- this.ultraTextEditor24.Name = "ultraTextEditor24";
- this.ultraTextEditor24.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor24.TabIndex = 362;
- this.ultraTextEditor24.Tag = "";
- //
- // ultraLabel49
- //
- this.ultraLabel49.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel49.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel49.Name = "ultraLabel49";
- this.ultraLabel49.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel49.TabIndex = 361;
- this.ultraLabel49.Text = "供方代码";
- //
- // ultraTextEditor25
- //
- this.ultraTextEditor25.AutoSize = true;
- this.ultraTextEditor25.Enabled = false;
- this.ultraTextEditor25.FlatMode = true;
- this.ultraTextEditor25.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor25.Name = "ultraTextEditor25";
- this.ultraTextEditor25.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor25.TabIndex = 358;
- this.ultraTextEditor25.Tag = "";
- //
- // ultraLabel51
- //
- this.ultraLabel51.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel51.Location = new System.Drawing.Point(261, 57);
- this.ultraLabel51.Name = "ultraLabel51";
- this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel51.TabIndex = 407;
- this.ultraLabel51.Text = "注册资金";
- //
- // ultraTextEditor26
- //
- this.ultraTextEditor26.AutoSize = true;
- this.ultraTextEditor26.FlatMode = true;
- this.ultraTextEditor26.Location = new System.Drawing.Point(333, 54);
- this.ultraTextEditor26.Multiline = true;
- this.ultraTextEditor26.Name = "ultraTextEditor26";
- this.ultraTextEditor26.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor26.TabIndex = 406;
- this.ultraTextEditor26.Tag = "";
- //
- // ultraLabel52
- //
- this.ultraLabel52.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel52.Location = new System.Drawing.Point(261, 33);
- this.ultraLabel52.Name = "ultraLabel52";
- this.ultraLabel52.Size = new System.Drawing.Size(118, 18);
- this.ultraLabel52.TabIndex = 405;
- this.ultraLabel52.Text = "委托代理人身份证号";
- //
- // ultraTextEditor27
- //
- this.ultraTextEditor27.AutoSize = true;
- this.ultraTextEditor27.FlatMode = true;
- this.ultraTextEditor27.Location = new System.Drawing.Point(385, 30);
- this.ultraTextEditor27.Multiline = true;
- this.ultraTextEditor27.Name = "ultraTextEditor27";
- this.ultraTextEditor27.Size = new System.Drawing.Size(91, 19);
- this.ultraTextEditor27.TabIndex = 404;
- this.ultraTextEditor27.Tag = "";
- //
- // ultraLabel53
- //
- this.ultraLabel53.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel53.Location = new System.Drawing.Point(4, 99);
- this.ultraLabel53.Name = "ultraLabel53";
- this.ultraLabel53.Size = new System.Drawing.Size(109, 19);
- this.ultraLabel53.TabIndex = 403;
- this.ultraLabel53.Text = "法人代表身份证号";
- //
- // ultraTextEditor28
- //
- this.ultraTextEditor28.AutoSize = true;
- this.ultraTextEditor28.FlatMode = true;
- this.ultraTextEditor28.Location = new System.Drawing.Point(112, 96);
- this.ultraTextEditor28.Multiline = true;
- this.ultraTextEditor28.Name = "ultraTextEditor28";
- this.ultraTextEditor28.Size = new System.Drawing.Size(139, 19);
- this.ultraTextEditor28.TabIndex = 402;
- this.ultraTextEditor28.Tag = "";
- //
- // ultraLabel54
- //
- this.ultraLabel54.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel54.Location = new System.Drawing.Point(261, 7);
- this.ultraLabel54.Name = "ultraLabel54";
- this.ultraLabel54.Size = new System.Drawing.Size(66, 16);
- this.ultraLabel54.TabIndex = 401;
- this.ultraLabel54.Text = "委托代理人";
- //
- // ultraTextEditor29
- //
- this.ultraTextEditor29.AutoSize = true;
- this.ultraTextEditor29.FlatMode = true;
- this.ultraTextEditor29.Location = new System.Drawing.Point(333, 4);
- this.ultraTextEditor29.Multiline = true;
- this.ultraTextEditor29.Name = "ultraTextEditor29";
- this.ultraTextEditor29.Size = new System.Drawing.Size(143, 19);
- this.ultraTextEditor29.TabIndex = 400;
- this.ultraTextEditor29.Tag = "";
- //
- // ultraTextEditor30
- //
- this.ultraTextEditor30.AutoSize = true;
- this.ultraTextEditor30.FlatMode = true;
- this.ultraTextEditor30.Location = new System.Drawing.Point(927, 28);
- this.ultraTextEditor30.Multiline = true;
- this.ultraTextEditor30.Name = "ultraTextEditor30";
- this.ultraTextEditor30.Size = new System.Drawing.Size(173, 85);
- this.ultraTextEditor30.TabIndex = 399;
- this.ultraTextEditor30.Tag = "";
- //
- // ultraComboEditor11
- //
- this.ultraComboEditor11.AutoSize = true;
- valueListItem158.DataValue = "0";
- valueListItem158.DisplayText = "非以旧换新";
- valueListItem157.DataValue = valueListItem158;
- valueListItem157.DisplayText = "非以旧换新";
- valueListItem156.DataValue = valueListItem157;
- valueListItem156.DisplayText = "非以旧换新";
- valueListItem155.DataValue = valueListItem156;
- valueListItem155.DisplayText = "非以旧换新";
- valueListItem154.DataValue = valueListItem155;
- valueListItem154.DisplayText = "非以旧换新";
- valueListItem153.DataValue = valueListItem154;
- valueListItem153.DisplayText = "非以旧换新";
- valueListItem164.DataValue = "1";
- valueListItem164.DisplayText = "以旧换新";
- valueListItem163.DataValue = valueListItem164;
- valueListItem163.DisplayText = "以旧换新";
- valueListItem162.DataValue = valueListItem163;
- valueListItem162.DisplayText = "以旧换新";
- valueListItem161.DataValue = valueListItem162;
- valueListItem161.DisplayText = "以旧换新";
- valueListItem160.DataValue = valueListItem161;
- valueListItem160.DisplayText = "以旧换新";
- valueListItem159.DataValue = valueListItem160;
- valueListItem159.DisplayText = "以旧换新";
- this.ultraComboEditor11.Items.Add(valueListItem153);
- this.ultraComboEditor11.Items.Add(valueListItem159);
- this.ultraComboEditor11.Location = new System.Drawing.Point(962, 2);
- this.ultraComboEditor11.Name = "ultraComboEditor11";
- this.ultraComboEditor11.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor11.TabIndex = 398;
- //
- // ultraLabel55
- //
- this.ultraLabel55.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel55.Location = new System.Drawing.Point(886, 5);
- this.ultraLabel55.Name = "ultraLabel55";
- this.ultraLabel55.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel55.TabIndex = 397;
- this.ultraLabel55.Text = "是否以旧换新";
- //
- // ultraComboEditor12
- //
- this.ultraComboEditor12.AutoSize = true;
- valueListItem170.DataValue = "0";
- valueListItem170.DisplayText = "非招标物资";
- valueListItem169.DataValue = valueListItem170;
- valueListItem169.DisplayText = "非招标物资";
- valueListItem168.DataValue = valueListItem169;
- valueListItem168.DisplayText = "非招标物资";
- valueListItem167.DataValue = valueListItem168;
- valueListItem167.DisplayText = "非招标物资";
- valueListItem166.DataValue = valueListItem167;
- valueListItem166.DisplayText = "非招标物资";
- valueListItem165.DataValue = valueListItem166;
- valueListItem165.DisplayText = "非招标物资";
- valueListItem176.DataValue = "1";
- valueListItem176.DisplayText = "招标物资";
- valueListItem175.DataValue = valueListItem176;
- valueListItem175.DisplayText = "招标物资";
- valueListItem174.DataValue = valueListItem175;
- valueListItem174.DisplayText = "招标物资";
- valueListItem173.DataValue = valueListItem174;
- valueListItem173.DisplayText = "招标物资";
- valueListItem172.DataValue = valueListItem173;
- valueListItem172.DisplayText = "招标物资";
- valueListItem171.DataValue = valueListItem172;
- valueListItem171.DisplayText = "招标物资";
- this.ultraComboEditor12.Items.Add(valueListItem165);
- this.ultraComboEditor12.Items.Add(valueListItem171);
- this.ultraComboEditor12.Location = new System.Drawing.Point(760, 73);
- this.ultraComboEditor12.Name = "ultraComboEditor12";
- this.ultraComboEditor12.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor12.TabIndex = 396;
- //
- // ultraLabel56
- //
- this.ultraLabel56.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel56.Location = new System.Drawing.Point(684, 76);
- this.ultraLabel56.Name = "ultraLabel56";
- this.ultraLabel56.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel56.TabIndex = 395;
- this.ultraLabel56.Text = "是否招标物资";
- //
- // ultraComboEditor13
- //
- this.ultraComboEditor13.AutoSize = true;
- valueListItem182.DataValue = "0";
- valueListItem182.DisplayText = "非修复物资";
- valueListItem181.DataValue = valueListItem182;
- valueListItem181.DisplayText = "非修复物资";
- valueListItem180.DataValue = valueListItem181;
- valueListItem180.DisplayText = "非修复物资";
- valueListItem179.DataValue = valueListItem180;
- valueListItem179.DisplayText = "非修复物资";
- valueListItem178.DataValue = valueListItem179;
- valueListItem178.DisplayText = "非修复物资";
- valueListItem177.DataValue = valueListItem178;
- valueListItem177.DisplayText = "非修复物资";
- valueListItem188.DataValue = "1";
- valueListItem188.DisplayText = "修复物资";
- valueListItem187.DataValue = valueListItem188;
- valueListItem187.DisplayText = "修复物资";
- valueListItem186.DataValue = valueListItem187;
- valueListItem186.DisplayText = "修复物资";
- valueListItem185.DataValue = valueListItem186;
- valueListItem185.DisplayText = "修复物资";
- valueListItem184.DataValue = valueListItem185;
- valueListItem184.DisplayText = "修复物资";
- valueListItem183.DataValue = valueListItem184;
- valueListItem183.DisplayText = "修复物资";
- this.ultraComboEditor13.Items.Add(valueListItem177);
- this.ultraComboEditor13.Items.Add(valueListItem183);
- this.ultraComboEditor13.Location = new System.Drawing.Point(760, 49);
- this.ultraComboEditor13.Name = "ultraComboEditor13";
- this.ultraComboEditor13.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor13.TabIndex = 394;
- //
- // ultraLabel57
- //
- this.ultraLabel57.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel57.Location = new System.Drawing.Point(684, 52);
- this.ultraLabel57.Name = "ultraLabel57";
- this.ultraLabel57.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel57.TabIndex = 393;
- this.ultraLabel57.Text = "是否修复物资";
- //
- // ultraComboEditor14
- //
- this.ultraComboEditor14.AutoSize = true;
- valueListItem194.DataValue = "0";
- valueListItem194.DisplayText = "不包安装";
- valueListItem193.DataValue = valueListItem194;
- valueListItem193.DisplayText = "不包安装";
- valueListItem192.DataValue = valueListItem193;
- valueListItem192.DisplayText = "不包安装";
- valueListItem191.DataValue = valueListItem192;
- valueListItem191.DisplayText = "不包安装";
- valueListItem190.DataValue = valueListItem191;
- valueListItem190.DisplayText = "不包安装";
- valueListItem189.DataValue = valueListItem190;
- valueListItem189.DisplayText = "不包安装";
- valueListItem200.DataValue = "1";
- valueListItem200.DisplayText = "包安装";
- valueListItem199.DataValue = valueListItem200;
- valueListItem199.DisplayText = "包安装";
- valueListItem198.DataValue = valueListItem199;
- valueListItem198.DisplayText = "包安装";
- valueListItem197.DataValue = valueListItem198;
- valueListItem197.DisplayText = "包安装";
- valueListItem196.DataValue = valueListItem197;
- valueListItem196.DisplayText = "包安装";
- valueListItem195.DataValue = valueListItem196;
- valueListItem195.DisplayText = "包安装";
- this.ultraComboEditor14.Items.Add(valueListItem189);
- this.ultraComboEditor14.Items.Add(valueListItem195);
- this.ultraComboEditor14.Location = new System.Drawing.Point(760, 26);
- this.ultraComboEditor14.Name = "ultraComboEditor14";
- this.ultraComboEditor14.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor14.TabIndex = 392;
- //
- // ultraLabel58
- //
- this.ultraLabel58.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel58.Location = new System.Drawing.Point(684, 29);
- this.ultraLabel58.Name = "ultraLabel58";
- this.ultraLabel58.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel58.TabIndex = 391;
- this.ultraLabel58.Text = "是否包安装";
- //
- // ultraComboEditor15
- //
- this.ultraComboEditor15.AutoSize = true;
- valueListItem206.DataValue = "0";
- valueListItem206.DisplayText = "非备库物资";
- valueListItem205.DataValue = valueListItem206;
- valueListItem205.DisplayText = "非备库物资";
- valueListItem204.DataValue = valueListItem205;
- valueListItem204.DisplayText = "非备库物资";
- valueListItem203.DataValue = valueListItem204;
- valueListItem203.DisplayText = "非备库物资";
- valueListItem202.DataValue = valueListItem203;
- valueListItem202.DisplayText = "非备库物资";
- valueListItem201.DataValue = valueListItem202;
- valueListItem201.DisplayText = "非备库物资";
- valueListItem212.DataValue = "1";
- valueListItem212.DisplayText = "备库物资";
- valueListItem211.DataValue = valueListItem212;
- valueListItem211.DisplayText = "备库物资";
- valueListItem210.DataValue = valueListItem211;
- valueListItem210.DisplayText = "备库物资";
- valueListItem209.DataValue = valueListItem210;
- valueListItem209.DisplayText = "备库物资";
- valueListItem208.DataValue = valueListItem209;
- valueListItem208.DisplayText = "备库物资";
- valueListItem207.DataValue = valueListItem208;
- valueListItem207.DisplayText = "备库物资";
- this.ultraComboEditor15.Items.Add(valueListItem201);
- this.ultraComboEditor15.Items.Add(valueListItem207);
- this.ultraComboEditor15.Location = new System.Drawing.Point(760, 3);
- this.ultraComboEditor15.Name = "ultraComboEditor15";
- this.ultraComboEditor15.Size = new System.Drawing.Size(120, 21);
- this.ultraComboEditor15.TabIndex = 390;
- //
- // ultraLabel59
- //
- this.ultraLabel59.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel59.Location = new System.Drawing.Point(684, 6);
- this.ultraLabel59.Name = "ultraLabel59";
- this.ultraLabel59.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel59.TabIndex = 389;
- this.ultraLabel59.Text = "是否备库物资";
- //
- // ultraComboEditor16
- //
- this.ultraComboEditor16.AutoSize = true;
- valueListItem218.DataValue = "0";
- valueListItem218.DisplayText = "正在使用的物资";
- valueListItem217.DataValue = valueListItem218;
- valueListItem217.DisplayText = "正在使用的物资";
- valueListItem216.DataValue = valueListItem217;
- valueListItem216.DisplayText = "正在使用的物资";
- valueListItem215.DataValue = valueListItem216;
- valueListItem215.DisplayText = "正在使用的物资";
- valueListItem214.DataValue = valueListItem215;
- valueListItem214.DisplayText = "正在使用的物资";
- valueListItem213.DataValue = valueListItem214;
- valueListItem213.DisplayText = "正在使用的物资";
- valueListItem224.DataValue = "1";
- valueListItem224.DisplayText = "已废除的物资";
- valueListItem223.DataValue = valueListItem224;
- valueListItem223.DisplayText = "已废除的物资";
- valueListItem222.DataValue = valueListItem223;
- valueListItem222.DisplayText = "已废除的物资";
- valueListItem221.DataValue = valueListItem222;
- valueListItem221.DisplayText = "已废除的物资";
- valueListItem220.DataValue = valueListItem221;
- valueListItem220.DisplayText = "已废除的物资";
- valueListItem219.DataValue = valueListItem220;
- valueListItem219.DisplayText = "已废除的物资";
- this.ultraComboEditor16.Items.Add(valueListItem213);
- this.ultraComboEditor16.Items.Add(valueListItem219);
- this.ultraComboEditor16.Location = new System.Drawing.Point(584, 76);
- this.ultraComboEditor16.Name = "ultraComboEditor16";
- this.ultraComboEditor16.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor16.TabIndex = 388;
- //
- // ultraLabel60
- //
- this.ultraLabel60.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel60.Location = new System.Drawing.Point(482, 79);
- this.ultraLabel60.Name = "ultraLabel60";
- this.ultraLabel60.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel60.TabIndex = 387;
- this.ultraLabel60.Text = "是否废除的物资";
- //
- // ultraComboEditor17
- //
- this.ultraComboEditor17.AutoSize = true;
- valueListItem230.DataValue = "0";
- valueListItem230.DisplayText = "不允许负数发";
- valueListItem229.DataValue = valueListItem230;
- valueListItem229.DisplayText = "不允许负数发";
- valueListItem228.DataValue = valueListItem229;
- valueListItem228.DisplayText = "不允许负数发";
- valueListItem227.DataValue = valueListItem228;
- valueListItem227.DisplayText = "不允许负数发";
- valueListItem226.DataValue = valueListItem227;
- valueListItem226.DisplayText = "不允许负数发";
- valueListItem225.DataValue = valueListItem226;
- valueListItem225.DisplayText = "不允许负数发";
- valueListItem236.DataValue = "1";
- valueListItem236.DisplayText = "允许负数发料";
- valueListItem235.DataValue = valueListItem236;
- valueListItem235.DisplayText = "允许负数发料";
- valueListItem234.DataValue = valueListItem235;
- valueListItem234.DisplayText = "允许负数发料";
- valueListItem233.DataValue = valueListItem234;
- valueListItem233.DisplayText = "允许负数发料";
- valueListItem232.DataValue = valueListItem233;
- valueListItem232.DisplayText = "允许负数发料";
- valueListItem231.DataValue = valueListItem232;
- valueListItem231.DisplayText = "允许负数发料";
- this.ultraComboEditor17.Items.Add(valueListItem225);
- this.ultraComboEditor17.Items.Add(valueListItem231);
- this.ultraComboEditor17.Location = new System.Drawing.Point(584, 52);
- this.ultraComboEditor17.Name = "ultraComboEditor17";
- this.ultraComboEditor17.Size = new System.Drawing.Size(94, 21);
- this.ultraComboEditor17.TabIndex = 386;
- //
- // ultraLabel61
- //
- this.ultraLabel61.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel61.Location = new System.Drawing.Point(482, 55);
- this.ultraLabel61.Name = "ultraLabel61";
- this.ultraLabel61.Size = new System.Drawing.Size(117, 18);
- this.ultraLabel61.TabIndex = 385;
- this.ultraLabel61.Text = "是否允许负数发料";
- //
- // ultraComboEditor18
- //
- this.ultraComboEditor18.AutoSize = true;
- valueListItem242.DataValue = "0";
- valueListItem242.DisplayText = "非零库存物资";
- valueListItem241.DataValue = valueListItem242;
- valueListItem241.DisplayText = "非零库存物资";
- valueListItem240.DataValue = valueListItem241;
- valueListItem240.DisplayText = "非零库存物资";
- valueListItem239.DataValue = valueListItem240;
- valueListItem239.DisplayText = "非零库存物资";
- valueListItem238.DataValue = valueListItem239;
- valueListItem238.DisplayText = "非零库存物资";
- valueListItem237.DataValue = valueListItem238;
- valueListItem237.DisplayText = "非零库存物资";
- valueListItem248.DataValue = "1";
- valueListItem248.DisplayText = "零库存物资";
- valueListItem247.DataValue = valueListItem248;
- valueListItem247.DisplayText = "零库存物资";
- valueListItem246.DataValue = valueListItem247;
- valueListItem246.DisplayText = "零库存物资";
- valueListItem245.DataValue = valueListItem246;
- valueListItem245.DisplayText = "零库存物资";
- valueListItem244.DataValue = valueListItem245;
- valueListItem244.DisplayText = "零库存物资";
- valueListItem243.DataValue = valueListItem244;
- valueListItem243.DisplayText = "零库存物资";
- this.ultraComboEditor18.Items.Add(valueListItem237);
- this.ultraComboEditor18.Items.Add(valueListItem243);
- this.ultraComboEditor18.Location = new System.Drawing.Point(550, 28);
- this.ultraComboEditor18.Name = "ultraComboEditor18";
- this.ultraComboEditor18.Size = new System.Drawing.Size(128, 21);
- this.ultraComboEditor18.TabIndex = 384;
- //
- // ultraLabel62
- //
- this.ultraLabel62.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel62.Location = new System.Drawing.Point(482, 31);
- this.ultraLabel62.Name = "ultraLabel62";
- this.ultraLabel62.Size = new System.Drawing.Size(66, 20);
- this.ultraLabel62.TabIndex = 383;
- this.ultraLabel62.Text = "是否零库存";
- //
- // ultraLabel63
- //
- this.ultraLabel63.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel63.Location = new System.Drawing.Point(482, 8);
- this.ultraLabel63.Name = "ultraLabel63";
- this.ultraLabel63.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel63.TabIndex = 381;
- this.ultraLabel63.Text = "制造周期";
- //
- // ultraTextEditor31
- //
- this.ultraTextEditor31.AutoSize = true;
- this.ultraTextEditor31.FlatMode = true;
- this.ultraTextEditor31.Location = new System.Drawing.Point(550, 5);
- this.ultraTextEditor31.Name = "ultraTextEditor31";
- this.ultraTextEditor31.Size = new System.Drawing.Size(128, 19);
- this.ultraTextEditor31.TabIndex = 380;
- this.ultraTextEditor31.Tag = "";
- //
- // ultraLabel64
- //
- this.ultraLabel64.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel64.Location = new System.Drawing.Point(3, 77);
- this.ultraLabel64.Name = "ultraLabel64";
- this.ultraLabel64.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel64.TabIndex = 367;
- this.ultraLabel64.Text = "法人代表";
- //
- // ultraTextEditor32
- //
- this.ultraTextEditor32.AutoSize = true;
- this.ultraTextEditor32.FlatMode = true;
- this.ultraTextEditor32.Location = new System.Drawing.Point(60, 74);
- this.ultraTextEditor32.Multiline = true;
- this.ultraTextEditor32.Name = "ultraTextEditor32";
- this.ultraTextEditor32.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor32.TabIndex = 366;
- this.ultraTextEditor32.Tag = "";
- //
- // ultraLabel65
- //
- this.ultraLabel65.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel65.Location = new System.Drawing.Point(3, 55);
- this.ultraLabel65.Name = "ultraLabel65";
- this.ultraLabel65.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel65.TabIndex = 365;
- this.ultraLabel65.Text = "产品标准";
- //
- // ultraTextEditor33
- //
- this.ultraTextEditor33.AutoSize = true;
- this.ultraTextEditor33.FlatMode = true;
- this.ultraTextEditor33.Location = new System.Drawing.Point(60, 52);
- this.ultraTextEditor33.Multiline = true;
- this.ultraTextEditor33.Name = "ultraTextEditor33";
- this.ultraTextEditor33.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor33.TabIndex = 364;
- this.ultraTextEditor33.Tag = "";
- //
- // ultraLabel66
- //
- this.ultraLabel66.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel66.Location = new System.Drawing.Point(3, 31);
- this.ultraLabel66.Name = "ultraLabel66";
- this.ultraLabel66.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel66.TabIndex = 363;
- this.ultraLabel66.Text = "供方名称";
- //
- // ultraTextEditor34
- //
- this.ultraTextEditor34.AutoSize = true;
- this.ultraTextEditor34.FlatMode = true;
- this.ultraTextEditor34.Location = new System.Drawing.Point(60, 28);
- this.ultraTextEditor34.Multiline = true;
- this.ultraTextEditor34.Name = "ultraTextEditor34";
- this.ultraTextEditor34.Size = new System.Drawing.Size(191, 19);
- this.ultraTextEditor34.TabIndex = 362;
- this.ultraTextEditor34.Tag = "";
- //
- // ultraLabel67
- //
- this.ultraLabel67.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel67.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel67.Name = "ultraLabel67";
- this.ultraLabel67.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel67.TabIndex = 361;
- this.ultraLabel67.Text = "供方代码";
- //
- // ultraTextEditor35
- //
- this.ultraTextEditor35.AutoSize = true;
- this.ultraTextEditor35.Enabled = false;
- this.ultraTextEditor35.FlatMode = true;
- this.ultraTextEditor35.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor35.Name = "ultraTextEditor35";
- this.ultraTextEditor35.Size = new System.Drawing.Size(84, 19);
- this.ultraTextEditor35.TabIndex = 358;
- this.ultraTextEditor35.Tag = "";
- //
- // ultraLabel30
- //
- this.ultraLabel30.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel30.Location = new System.Drawing.Point(912, 10);
- this.ultraLabel30.Name = "ultraLabel30";
- this.ultraLabel30.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel30.TabIndex = 453;
- this.ultraLabel30.Text = "供方名称";
- //
- // ultraTextEditor17
- //
- this.ultraTextEditor17.AutoSize = true;
- this.ultraTextEditor17.FlatMode = true;
- this.ultraTextEditor17.Location = new System.Drawing.Point(969, 7);
- this.ultraTextEditor17.Multiline = true;
- this.ultraTextEditor17.Name = "ultraTextEditor17";
- this.ultraTextEditor17.Size = new System.Drawing.Size(129, 19);
- this.ultraTextEditor17.TabIndex = 452;
- this.ultraTextEditor17.Tag = "";
- //
- // ultraComboEditor19
- //
- this.ultraComboEditor19.AutoSize = true;
- this.ultraComboEditor19.Location = new System.Drawing.Point(836, 9);
- this.ultraComboEditor19.Name = "ultraComboEditor19";
- this.ultraComboEditor19.Size = new System.Drawing.Size(70, 21);
- this.ultraComboEditor19.TabIndex = 451;
- //
- // ultraLabel31
- //
- this.ultraLabel31.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel31.Location = new System.Drawing.Point(589, 34);
- this.ultraLabel31.Name = "ultraLabel31";
- this.ultraLabel31.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel31.TabIndex = 450;
- this.ultraLabel31.Text = "计量单位";
- //
- // ultraTextEditor36
- //
- this.ultraTextEditor36.AutoSize = true;
- this.ultraTextEditor36.FlatMode = true;
- this.ultraTextEditor36.Location = new System.Drawing.Point(646, 31);
- this.ultraTextEditor36.Multiline = true;
- this.ultraTextEditor36.Name = "ultraTextEditor36";
- this.ultraTextEditor36.Size = new System.Drawing.Size(129, 19);
- this.ultraTextEditor36.TabIndex = 449;
- this.ultraTextEditor36.Tag = "";
- //
- // ultraLabel32
- //
- this.ultraLabel32.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel32.Location = new System.Drawing.Point(387, 36);
- this.ultraLabel32.Name = "ultraLabel32";
- this.ultraLabel32.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel32.TabIndex = 448;
- this.ultraLabel32.Text = "规格型号";
- //
- // ultraTextEditor37
- //
- this.ultraTextEditor37.AutoSize = true;
- this.ultraTextEditor37.FlatMode = true;
- this.ultraTextEditor37.Location = new System.Drawing.Point(444, 33);
- this.ultraTextEditor37.Multiline = true;
- this.ultraTextEditor37.Name = "ultraTextEditor37";
- this.ultraTextEditor37.Size = new System.Drawing.Size(139, 19);
- this.ultraTextEditor37.TabIndex = 447;
- this.ultraTextEditor37.Tag = "";
- //
- // ultraLabel33
- //
- this.ultraLabel33.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel33.Location = new System.Drawing.Point(204, 36);
- this.ultraLabel33.Name = "ultraLabel33";
- this.ultraLabel33.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel33.TabIndex = 446;
- this.ultraLabel33.Text = "物资名称";
- //
- // ultraTextEditor38
- //
- this.ultraTextEditor38.AutoSize = true;
- this.ultraTextEditor38.FlatMode = true;
- this.ultraTextEditor38.Location = new System.Drawing.Point(263, 33);
- this.ultraTextEditor38.Multiline = true;
- this.ultraTextEditor38.Name = "ultraTextEditor38";
- this.ultraTextEditor38.Size = new System.Drawing.Size(118, 19);
- this.ultraTextEditor38.TabIndex = 445;
- this.ultraTextEditor38.Tag = "";
- //
- // ultraLabel34
- //
- this.ultraLabel34.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel34.Location = new System.Drawing.Point(589, 8);
- this.ultraLabel34.Name = "ultraLabel34";
- this.ultraLabel34.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel34.TabIndex = 444;
- this.ultraLabel34.Text = "仓库名称";
- //
- // ultraTextEditor39
- //
- this.ultraTextEditor39.AutoSize = true;
- this.ultraTextEditor39.FlatMode = true;
- this.ultraTextEditor39.Location = new System.Drawing.Point(646, 5);
- this.ultraTextEditor39.Multiline = true;
- this.ultraTextEditor39.Name = "ultraTextEditor39";
- this.ultraTextEditor39.Size = new System.Drawing.Size(129, 19);
- this.ultraTextEditor39.TabIndex = 443;
- this.ultraTextEditor39.Tag = "";
- //
- // ultraDateTimeEditor1
- //
- this.ultraDateTimeEditor1.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- this.ultraDateTimeEditor1.Enabled = false;
- this.ultraDateTimeEditor1.FlatMode = true;
- this.ultraDateTimeEditor1.Location = new System.Drawing.Point(265, 5);
- this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
- this.ultraDateTimeEditor1.Size = new System.Drawing.Size(116, 19);
- this.ultraDateTimeEditor1.TabIndex = 442;
- this.ultraDateTimeEditor1.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
- //
- // ultraLabel35
- //
- this.ultraLabel35.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel35.Location = new System.Drawing.Point(204, 5);
- this.ultraLabel35.Name = "ultraLabel35";
- this.ultraLabel35.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel35.TabIndex = 441;
- this.ultraLabel35.Text = "验收日期";
- //
- // ultraTextEditor40
- //
- this.ultraTextEditor40.AutoSize = true;
- this.ultraTextEditor40.FlatMode = true;
- this.ultraTextEditor40.Location = new System.Drawing.Point(669, 81);
- this.ultraTextEditor40.Multiline = true;
- this.ultraTextEditor40.Name = "ultraTextEditor40";
- this.ultraTextEditor40.Size = new System.Drawing.Size(357, 49);
- this.ultraTextEditor40.TabIndex = 440;
- this.ultraTextEditor40.Tag = "";
- //
- // ultraComboEditor20
- //
- this.ultraComboEditor20.AutoSize = true;
- valueListItem254.DataValue = "0";
- valueListItem254.DisplayText = "不启用";
- valueListItem253.DataValue = valueListItem254;
- valueListItem253.DisplayText = "不启用";
- valueListItem252.DataValue = valueListItem253;
- valueListItem252.DisplayText = "不启用";
- valueListItem251.DataValue = valueListItem252;
- valueListItem251.DisplayText = "不启用";
- valueListItem250.DataValue = valueListItem251;
- valueListItem250.DisplayText = "不启用";
- valueListItem249.DataValue = valueListItem250;
- valueListItem249.DisplayText = "不启用";
- valueListItem260.DataValue = "1";
- valueListItem260.DisplayText = "启用";
- valueListItem259.DataValue = valueListItem260;
- valueListItem259.DisplayText = "启用";
- valueListItem258.DataValue = valueListItem259;
- valueListItem258.DisplayText = "启用";
- valueListItem257.DataValue = valueListItem258;
- valueListItem257.DisplayText = "启用";
- valueListItem256.DataValue = valueListItem257;
- valueListItem256.DisplayText = "启用";
- valueListItem255.DataValue = valueListItem256;
- valueListItem255.DisplayText = "启用";
- this.ultraComboEditor20.Items.Add(valueListItem249);
- this.ultraComboEditor20.Items.Add(valueListItem255);
- this.ultraComboEditor20.Location = new System.Drawing.Point(60, 33);
- this.ultraComboEditor20.Name = "ultraComboEditor20";
- this.ultraComboEditor20.Size = new System.Drawing.Size(129, 21);
- this.ultraComboEditor20.TabIndex = 439;
- //
- // ultraLabel36
- //
- this.ultraLabel36.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel36.Location = new System.Drawing.Point(3, 36);
- this.ultraLabel36.Name = "ultraLabel36";
- this.ultraLabel36.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel36.TabIndex = 438;
- this.ultraLabel36.Text = "物资代码";
- //
- // ultraLabel50
- //
- this.ultraLabel50.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel50.Location = new System.Drawing.Point(625, 84);
- this.ultraLabel50.Name = "ultraLabel50";
- this.ultraLabel50.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel50.TabIndex = 436;
- this.ultraLabel50.Text = "备注";
- //
- // ultraComboEditor21
- //
- this.ultraComboEditor21.AutoSize = true;
- this.ultraComboEditor21.Location = new System.Drawing.Point(444, 5);
- this.ultraComboEditor21.Name = "ultraComboEditor21";
- this.ultraComboEditor21.Size = new System.Drawing.Size(139, 21);
- this.ultraComboEditor21.TabIndex = 429;
- //
- // ultraLabel68
- //
- this.ultraLabel68.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel68.Location = new System.Drawing.Point(387, 8);
- this.ultraLabel68.Name = "ultraLabel68";
- this.ultraLabel68.Size = new System.Drawing.Size(89, 20);
- this.ultraLabel68.TabIndex = 428;
- this.ultraLabel68.Text = "仓库类别";
- //
- // ultraLabel69
- //
- this.ultraLabel69.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel69.Location = new System.Drawing.Point(781, 10);
- this.ultraLabel69.Name = "ultraLabel69";
- this.ultraLabel69.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel69.TabIndex = 363;
- this.ultraLabel69.Text = "供方代码";
- //
- // ultraLabel70
- //
- this.ultraLabel70.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel70.Location = new System.Drawing.Point(3, 8);
- this.ultraLabel70.Name = "ultraLabel70";
- this.ultraLabel70.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel70.TabIndex = 361;
- this.ultraLabel70.Text = "验收单号";
- //
- // ultraTextEditor41
- //
- this.ultraTextEditor41.AutoSize = true;
- this.ultraTextEditor41.Enabled = false;
- this.ultraTextEditor41.FlatMode = true;
- this.ultraTextEditor41.Location = new System.Drawing.Point(60, 5);
- this.ultraTextEditor41.Name = "ultraTextEditor41";
- this.ultraTextEditor41.Size = new System.Drawing.Size(129, 19);
- this.ultraTextEditor41.TabIndex = 358;
- this.ultraTextEditor41.Tag = "";
- //
- // saveFileDialog1
- //
- this.saveFileDialog1.Filter = "xls文件 (*.xls)|*.xls";
- this.saveFileDialog1.InitialDirectory = "C:\\";
- //
- // Cmb_wzdm
- //
- this.Cmb_wzdm.ButtonsRight.Add(editorButton4);
- this.Cmb_wzdm.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance37.BackColor = System.Drawing.SystemColors.Window;
- appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.Cmb_wzdm.DisplayLayout.Appearance = appearance37;
- ultraGridColumn16.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn16.Header.Caption = " 物资代码";
- ultraGridColumn16.Header.VisiblePosition = 0;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn17.Header.Caption = "物资名称";
- ultraGridColumn17.Header.VisiblePosition = 1;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn18.Header.Caption = "规格型号";
- ultraGridColumn18.Header.VisiblePosition = 2;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn19.Header.Caption = "材质";
- ultraGridColumn19.Header.VisiblePosition = 3;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn20.Header.Caption = "计量单位";
- ultraGridColumn20.Header.VisiblePosition = 4;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20});
- ultraGridBand4.UseRowLayout = true;
- this.Cmb_wzdm.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.Cmb_wzdm.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.Cmb_wzdm.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance38.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmb_wzdm.DisplayLayout.GroupByBox.Appearance = appearance38;
- appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmb_wzdm.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
- this.Cmb_wzdm.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance40.BackColor2 = System.Drawing.SystemColors.Control;
- appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmb_wzdm.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
- this.Cmb_wzdm.DisplayLayout.MaxColScrollRegions = 1;
- this.Cmb_wzdm.DisplayLayout.MaxRowScrollRegions = 1;
- appearance41.BackColor = System.Drawing.SystemColors.Window;
- appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
- this.Cmb_wzdm.DisplayLayout.Override.ActiveCellAppearance = appearance41;
- appearance42.BackColor = System.Drawing.SystemColors.Highlight;
- appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.Cmb_wzdm.DisplayLayout.Override.ActiveRowAppearance = appearance42;
- this.Cmb_wzdm.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.Cmb_wzdm.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance43.BackColor = System.Drawing.SystemColors.Window;
- this.Cmb_wzdm.DisplayLayout.Override.CardAreaAppearance = appearance43;
- appearance44.BorderColor = System.Drawing.Color.Silver;
- appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.Cmb_wzdm.DisplayLayout.Override.CellAppearance = appearance44;
- this.Cmb_wzdm.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.Cmb_wzdm.DisplayLayout.Override.CellPadding = 0;
- appearance45.BackColor = System.Drawing.SystemColors.Control;
- appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance45.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmb_wzdm.DisplayLayout.Override.GroupByRowAppearance = appearance45;
- appearance46.TextHAlign = Infragistics.Win.HAlign.Left;
- this.Cmb_wzdm.DisplayLayout.Override.HeaderAppearance = appearance46;
- this.Cmb_wzdm.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.Cmb_wzdm.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance47.BackColor = System.Drawing.SystemColors.Window;
- appearance47.BorderColor = System.Drawing.Color.Silver;
- this.Cmb_wzdm.DisplayLayout.Override.RowAppearance = appearance47;
- this.Cmb_wzdm.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
- this.Cmb_wzdm.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
- this.Cmb_wzdm.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.Cmb_wzdm.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.Cmb_wzdm.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.Cmb_wzdm.DisplayMember = "";
- this.Cmb_wzdm.Location = new System.Drawing.Point(61, 33);
- this.Cmb_wzdm.Name = "Cmb_wzdm";
- this.Cmb_wzdm.Size = new System.Drawing.Size(130, 21);
- this.Cmb_wzdm.TabIndex = 628;
- this.Cmb_wzdm.ValueMember = "";
- this.Cmb_wzdm.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmb_wzdm_EditorButtonClick);
- //
- // Cmb_CKDM
- //
- this.Cmb_CKDM.ButtonsRight.Add(editorButton3);
- this.Cmb_CKDM.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance25.BackColor = System.Drawing.SystemColors.Window;
- appearance25.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.Cmb_CKDM.DisplayLayout.Appearance = appearance25;
- ultraGridColumn11.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn11.Header.Caption = " 物资代码";
- ultraGridColumn11.Header.VisiblePosition = 0;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn12.Header.Caption = "物资名称";
- ultraGridColumn12.Header.VisiblePosition = 1;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn13.Header.Caption = "规格型号";
- ultraGridColumn13.Header.VisiblePosition = 2;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn14.Header.Caption = "材质";
- ultraGridColumn14.Header.VisiblePosition = 3;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn15.Header.Caption = "计量单位";
- ultraGridColumn15.Header.VisiblePosition = 4;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15});
- ultraGridBand3.UseRowLayout = true;
- this.Cmb_CKDM.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.Cmb_CKDM.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.Cmb_CKDM.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance26.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance26.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmb_CKDM.DisplayLayout.GroupByBox.Appearance = appearance26;
- appearance27.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmb_CKDM.DisplayLayout.GroupByBox.BandLabelAppearance = appearance27;
- this.Cmb_CKDM.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance28.BackColor2 = System.Drawing.SystemColors.Control;
- appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmb_CKDM.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
- this.Cmb_CKDM.DisplayLayout.MaxColScrollRegions = 1;
- this.Cmb_CKDM.DisplayLayout.MaxRowScrollRegions = 1;
- appearance29.BackColor = System.Drawing.SystemColors.Window;
- appearance29.ForeColor = System.Drawing.SystemColors.ControlText;
- this.Cmb_CKDM.DisplayLayout.Override.ActiveCellAppearance = appearance29;
- appearance30.BackColor = System.Drawing.SystemColors.Highlight;
- appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.Cmb_CKDM.DisplayLayout.Override.ActiveRowAppearance = appearance30;
- this.Cmb_CKDM.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.Cmb_CKDM.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance31.BackColor = System.Drawing.SystemColors.Window;
- this.Cmb_CKDM.DisplayLayout.Override.CardAreaAppearance = appearance31;
- appearance32.BorderColor = System.Drawing.Color.Silver;
- appearance32.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.Cmb_CKDM.DisplayLayout.Override.CellAppearance = appearance32;
- this.Cmb_CKDM.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.Cmb_CKDM.DisplayLayout.Override.CellPadding = 0;
- appearance33.BackColor = System.Drawing.SystemColors.Control;
- appearance33.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance33.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance33.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmb_CKDM.DisplayLayout.Override.GroupByRowAppearance = appearance33;
- appearance34.TextHAlign = Infragistics.Win.HAlign.Left;
- this.Cmb_CKDM.DisplayLayout.Override.HeaderAppearance = appearance34;
- this.Cmb_CKDM.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.Cmb_CKDM.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance35.BackColor = System.Drawing.SystemColors.Window;
- appearance35.BorderColor = System.Drawing.Color.Silver;
- this.Cmb_CKDM.DisplayLayout.Override.RowAppearance = appearance35;
- this.Cmb_CKDM.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance36.BackColor = System.Drawing.SystemColors.ControlLight;
- this.Cmb_CKDM.DisplayLayout.Override.TemplateAddRowAppearance = appearance36;
- this.Cmb_CKDM.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.Cmb_CKDM.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.Cmb_CKDM.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.Cmb_CKDM.DisplayMember = "";
- this.Cmb_CKDM.Location = new System.Drawing.Point(444, 5);
- this.Cmb_CKDM.Name = "Cmb_CKDM";
- this.Cmb_CKDM.Size = new System.Drawing.Size(139, 21);
- this.Cmb_CKDM.TabIndex = 629;
- this.Cmb_CKDM.ValueMember = "";
- this.Cmb_CKDM.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmb_CKDM_EditorButtonClick);
- //
- // ultraCombo1
- //
- this.ultraCombo1.ButtonsRight.Add(editorButton2);
- this.ultraCombo1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance13.BackColor = System.Drawing.SystemColors.Window;
- appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.ultraCombo1.DisplayLayout.Appearance = appearance13;
- ultraGridColumn6.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn6.Header.Caption = " 物资代码";
- ultraGridColumn6.Header.VisiblePosition = 0;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn7.Header.Caption = "物资名称";
- ultraGridColumn7.Header.VisiblePosition = 1;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn8.Header.Caption = "规格型号";
- ultraGridColumn8.Header.VisiblePosition = 2;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn9.Header.Caption = "材质";
- ultraGridColumn9.Header.VisiblePosition = 3;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn10.Header.Caption = "计量单位";
- ultraGridColumn10.Header.VisiblePosition = 4;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10});
- ultraGridBand2.UseRowLayout = true;
- this.ultraCombo1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraCombo1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.ultraCombo1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance14.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraCombo1.DisplayLayout.GroupByBox.Appearance = appearance14;
- appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraCombo1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
- this.ultraCombo1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance16.BackColor2 = System.Drawing.SystemColors.Control;
- appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
- this.ultraCombo1.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
- this.ultraCombo1.DisplayLayout.MaxColScrollRegions = 1;
- this.ultraCombo1.DisplayLayout.MaxRowScrollRegions = 1;
- appearance17.BackColor = System.Drawing.SystemColors.Window;
- appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
- this.ultraCombo1.DisplayLayout.Override.ActiveCellAppearance = appearance17;
- appearance18.BackColor = System.Drawing.SystemColors.Highlight;
- appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.ultraCombo1.DisplayLayout.Override.ActiveRowAppearance = appearance18;
- this.ultraCombo1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.ultraCombo1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance19.BackColor = System.Drawing.SystemColors.Window;
- this.ultraCombo1.DisplayLayout.Override.CardAreaAppearance = appearance19;
- appearance20.BorderColor = System.Drawing.Color.Silver;
- appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.ultraCombo1.DisplayLayout.Override.CellAppearance = appearance20;
- this.ultraCombo1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.ultraCombo1.DisplayLayout.Override.CellPadding = 0;
- appearance21.BackColor = System.Drawing.SystemColors.Control;
- appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance21.BorderColor = System.Drawing.SystemColors.Window;
- this.ultraCombo1.DisplayLayout.Override.GroupByRowAppearance = appearance21;
- appearance22.TextHAlign = Infragistics.Win.HAlign.Left;
- this.ultraCombo1.DisplayLayout.Override.HeaderAppearance = appearance22;
- this.ultraCombo1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.ultraCombo1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance23.BackColor = System.Drawing.SystemColors.Window;
- appearance23.BorderColor = System.Drawing.Color.Silver;
- this.ultraCombo1.DisplayLayout.Override.RowAppearance = appearance23;
- this.ultraCombo1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
- this.ultraCombo1.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
- this.ultraCombo1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.ultraCombo1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.ultraCombo1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.ultraCombo1.DisplayMember = "";
- this.ultraCombo1.Location = new System.Drawing.Point(59, 106);
- this.ultraCombo1.Name = "ultraCombo1";
- this.ultraCombo1.Size = new System.Drawing.Size(130, 21);
- this.ultraCombo1.TabIndex = 630;
- this.ultraCombo1.ValueMember = "";
- this.ultraCombo1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraCombo1_EditorButtonClick);
- //
- // Cmd_GFCode
- //
- this.Cmd_GFCode.ButtonsRight.Add(editorButton1);
- this.Cmd_GFCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance1.BackColor = System.Drawing.SystemColors.Window;
- appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.Cmd_GFCode.DisplayLayout.Appearance = appearance1;
- ultraGridColumn1.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn1.Header.Caption = " 物资代码";
- ultraGridColumn1.Header.VisiblePosition = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn2.Header.Caption = "物资名称";
- ultraGridColumn2.Header.VisiblePosition = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn3.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn3.Header.Caption = "规格型号";
- ultraGridColumn3.Header.VisiblePosition = 2;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn4.Header.Caption = "材质";
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- ultraGridColumn5.Header.Caption = "计量单位";
- ultraGridColumn5.Header.VisiblePosition = 4;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5});
- ultraGridBand1.UseRowLayout = true;
- this.Cmd_GFCode.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.Cmd_GFCode.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.Cmd_GFCode.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance2.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmd_GFCode.DisplayLayout.GroupByBox.Appearance = appearance2;
- appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmd_GFCode.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
- this.Cmd_GFCode.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance4.BackColor2 = System.Drawing.SystemColors.Control;
- appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
- this.Cmd_GFCode.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
- this.Cmd_GFCode.DisplayLayout.MaxColScrollRegions = 1;
- this.Cmd_GFCode.DisplayLayout.MaxRowScrollRegions = 1;
- appearance5.BackColor = System.Drawing.SystemColors.Window;
- appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
- this.Cmd_GFCode.DisplayLayout.Override.ActiveCellAppearance = appearance5;
- appearance6.BackColor = System.Drawing.SystemColors.Highlight;
- appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.Cmd_GFCode.DisplayLayout.Override.ActiveRowAppearance = appearance6;
- this.Cmd_GFCode.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.Cmd_GFCode.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance7.BackColor = System.Drawing.SystemColors.Window;
- this.Cmd_GFCode.DisplayLayout.Override.CardAreaAppearance = appearance7;
- appearance8.BorderColor = System.Drawing.Color.Silver;
- appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.Cmd_GFCode.DisplayLayout.Override.CellAppearance = appearance8;
- this.Cmd_GFCode.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.Cmd_GFCode.DisplayLayout.Override.CellPadding = 0;
- appearance9.BackColor = System.Drawing.SystemColors.Control;
- appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance9.BorderColor = System.Drawing.SystemColors.Window;
- this.Cmd_GFCode.DisplayLayout.Override.GroupByRowAppearance = appearance9;
- appearance10.TextHAlign = Infragistics.Win.HAlign.Left;
- this.Cmd_GFCode.DisplayLayout.Override.HeaderAppearance = appearance10;
- this.Cmd_GFCode.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.Cmd_GFCode.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance11.BackColor = System.Drawing.SystemColors.Window;
- appearance11.BorderColor = System.Drawing.Color.Silver;
- this.Cmd_GFCode.DisplayLayout.Override.RowAppearance = appearance11;
- this.Cmd_GFCode.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance12.BackColor = System.Drawing.SystemColors.ControlLight;
- this.Cmd_GFCode.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
- this.Cmd_GFCode.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.Cmd_GFCode.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.Cmd_GFCode.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.Cmd_GFCode.DisplayMember = "";
- this.Cmd_GFCode.Location = new System.Drawing.Point(59, 82);
- this.Cmd_GFCode.Name = "Cmd_GFCode";
- this.Cmd_GFCode.Size = new System.Drawing.Size(130, 21);
- this.Cmd_GFCode.TabIndex = 631;
- this.Cmd_GFCode.ValueMember = "";
- this.Cmd_GFCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmd_GFCode_EditorButtonClick);
- //
- // AccpetSheetNew
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(1169, 518);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Controls.Add(this.ultraGroupBox1);
- this.Controls.Add(this.panel1);
- this.Name = "AccpetSheetNew";
- this.Text = "领料单管理";
- this.Load += new System.EventHandler(this.AccpetSheet_Load);
- ((System.ComponentModel.ISupportInitialize)(this.cmb_StorageLB)).EndInit();
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ckm)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_CKMC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_Checker)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ylbz)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.date_td)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DZ)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CZ)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Moneny)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YSS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_qlsl)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GYMC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GGXH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WZMC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.date_YS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BH)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor21)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_wzdm)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKDM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Cmd_GFCode)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wzdm;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_WZDM;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Time;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
- private Infragistics.Win.Misc.UltraLabel Lab_To;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor date_YS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WZMC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GGXH;
- private Infragistics.Win.Misc.UltraLabel ultraLabel28;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_JLDW;
- private Infragistics.Win.Misc.UltraLabel ultraLabel74;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Price;
- private Infragistics.Win.Misc.UltraLabel ultraLabel73;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YSS;
- private Infragistics.Win.Misc.UltraLabel ultraLabel72;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_qlsl;
- private Infragistics.Win.Misc.UltraLabel ultraLabel29;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GYMC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel30;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor19;
- private Infragistics.Win.Misc.UltraLabel ultraLabel31;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor36;
- private Infragistics.Win.Misc.UltraLabel ultraLabel32;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor37;
- private Infragistics.Win.Misc.UltraLabel ultraLabel33;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor38;
- private Infragistics.Win.Misc.UltraLabel ultraLabel34;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor39;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel35;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor40;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel36;
- private Infragistics.Win.Misc.UltraLabel ultraLabel50;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor21;
- private Infragistics.Win.Misc.UltraLabel ultraLabel68;
- private Infragistics.Win.Misc.UltraLabel ultraLabel69;
- private Infragistics.Win.Misc.UltraLabel ultraLabel70;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor41;
- private Infragistics.Win.Misc.UltraLabel ultraLabel76;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Moneny;
- private Infragistics.Win.Misc.UltraLabel ultraLabel77;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CZ;
- private Infragistics.Win.Misc.UltraLabel ultraLabel78;
- private Infragistics.Win.Misc.UltraLabel ultraLabel79;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DZ;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ckm;
- private Infragistics.Win.Misc.UltraLabel ultraLabel81;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ylbz;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor date_td;
- private Infragistics.Win.Misc.UltraLabel ultraLabel80;
- private Infragistics.Win.Misc.UltraLabel ultraLabel83;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YR;
- private Infragistics.Win.Misc.UltraLabel ultraLabel82;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanR;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wz;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_wzmc;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Spet;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Spet;
- private Infragistics.Win.Misc.UltraLabel ultraLabel84;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor42;
- private Infragistics.Win.Misc.UltraLabel ultraLabel85;
- private System.Windows.Forms.SaveFileDialog saveFileDialog1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel86;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor43;
- private Infragistics.Win.Misc.UltraLabel ultraLabel87;
- private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_Checker;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_CKMC;
- private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_wzdm;
- private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_CKDM;
- private Infragistics.Win.UltraWinGrid.UltraCombo ultraCombo1;
- private Infragistics.Win.UltraWinGrid.UltraCombo Cmd_GFCode;
- }
- }
|