AccpetSheetNew.designer.cs 269 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356
  1. namespace Core.XgMes.Client.JGKC.MaterialManager
  2. {
  3. partial class AccpetSheetNew
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.Windows.Forms.Panel panel1;
  9. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  10. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  11. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  12. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  13. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  14. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  15. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  16. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  17. private System.Windows.Forms.Panel panel2;
  18. private Infragistics.Win.UltraWinGrid.UltraGrid gd_CK;
  19. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  20. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BH;
  21. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  22. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  23. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  24. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  25. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  26. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  27. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  28. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  29. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  30. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  31. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  32. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  33. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  34. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  35. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  36. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  37. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  38. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  39. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  40. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  41. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  42. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  43. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  44. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  45. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  46. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  47. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  48. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  49. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  50. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  51. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  52. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  53. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  54. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  55. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  56. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  57. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  58. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKLB;
  59. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  60. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
  61. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  62. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
  63. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  64. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
  65. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
  66. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
  67. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  68. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
  69. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  70. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
  71. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  72. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
  73. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  74. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
  75. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  76. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
  77. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  78. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
  79. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  80. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
  81. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  82. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  83. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
  84. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  85. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  86. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  87. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
  88. private Infragistics.Win.Misc.UltraLabel ultraLabel48;
  89. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
  90. private Infragistics.Win.Misc.UltraLabel ultraLabel49;
  91. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
  92. private Infragistics.Win.Misc.UltraLabel ultraLabel51;
  93. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
  94. private Infragistics.Win.Misc.UltraLabel ultraLabel52;
  95. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
  96. private Infragistics.Win.Misc.UltraLabel ultraLabel53;
  97. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
  98. private Infragistics.Win.Misc.UltraLabel ultraLabel54;
  99. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
  100. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
  101. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
  102. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  103. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor12;
  104. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  105. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor13;
  106. private Infragistics.Win.Misc.UltraLabel ultraLabel57;
  107. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor14;
  108. private Infragistics.Win.Misc.UltraLabel ultraLabel58;
  109. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor15;
  110. private Infragistics.Win.Misc.UltraLabel ultraLabel59;
  111. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor16;
  112. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  113. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor17;
  114. private Infragistics.Win.Misc.UltraLabel ultraLabel61;
  115. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor18;
  116. private Infragistics.Win.Misc.UltraLabel ultraLabel62;
  117. private Infragistics.Win.Misc.UltraLabel ultraLabel63;
  118. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor31;
  119. private Infragistics.Win.Misc.UltraLabel ultraLabel64;
  120. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor32;
  121. private Infragistics.Win.Misc.UltraLabel ultraLabel65;
  122. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor33;
  123. private Infragistics.Win.Misc.UltraLabel ultraLabel66;
  124. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor34;
  125. private Infragistics.Win.Misc.UltraLabel ultraLabel67;
  126. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor35;
  127. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_StorageLB;
  128. private Infragistics.Win.Misc.UltraLabel ultraLabel71;
  129. private Infragistics.Win.Misc.UltraLabel ultraLabel75;
  130. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
  131. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  132. private System.ComponentModel.IContainer components;
  133. /// <summary>
  134. /// 清理所有正在使用的资源。
  135. /// </summary>
  136. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  137. protected override void Dispose(bool disposing)
  138. {
  139. if (disposing && (components != null))
  140. {
  141. components.Dispose();
  142. }
  143. base.Dispose(disposing);
  144. }
  145. #region Windows 窗体设计器生成的代码
  146. /// <summary>
  147. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  148. /// 此方法的内容。
  149. /// </summary>
  150. private void InitializeComponent()
  151. {
  152. this.components = new System.ComponentModel.Container();
  153. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  154. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  155. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  156. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  157. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  158. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  159. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportLL");
  160. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  161. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveIN");
  162. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  163. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  164. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  165. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  166. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  167. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  168. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportLL");
  169. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("SaveIN");
  170. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  171. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  172. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  173. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  174. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  175. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  176. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  177. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  178. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  179. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  180. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  181. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  182. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  183. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  184. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  185. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_NO");
  186. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISSUE_DATE");
  187. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_CODE");
  188. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STORAGE_STYLE");
  189. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISSUE_STORE");
  190. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_NAME");
  191. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  192. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  193. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPET");
  194. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNIT");
  195. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  196. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHT");
  197. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SCHEDULER");
  198. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLEASE_NUM");
  199. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REAL_NUM");
  200. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICE");
  201. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MONERY");
  202. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FILLING_DATE");
  203. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PICKING_RECODER");
  204. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GF_CODE");
  205. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GF_NAME");
  206. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RECODER");
  207. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INPUT_DATE");
  208. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  209. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("USE_TO", 0);
  210. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB", 1);
  211. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB_NAME", 2);
  212. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INVOICE_NO", 3);
  213. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  215. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  216. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  217. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  218. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  219. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  220. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  221. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  222. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  223. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  224. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  225. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  226. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  227. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  228. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  229. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  230. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  231. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  232. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  233. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  234. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  235. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  236. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  237. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  238. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  239. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  240. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  241. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  242. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  243. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  244. Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
  245. Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
  246. Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
  247. Infragistics.Win.ValueListItem valueListItem42 = new Infragistics.Win.ValueListItem();
  248. Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
  249. Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
  250. Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
  251. Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
  252. Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
  253. Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
  254. Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
  255. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  256. Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
  257. Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
  258. Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
  259. Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
  260. Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
  261. Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
  262. Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
  263. Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
  264. Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
  265. Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
  266. Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
  267. Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
  268. Infragistics.Win.ValueListItem valueListItem63 = new Infragistics.Win.ValueListItem();
  269. Infragistics.Win.ValueListItem valueListItem64 = new Infragistics.Win.ValueListItem();
  270. Infragistics.Win.ValueListItem valueListItem65 = new Infragistics.Win.ValueListItem();
  271. Infragistics.Win.ValueListItem valueListItem66 = new Infragistics.Win.ValueListItem();
  272. Infragistics.Win.ValueListItem valueListItem67 = new Infragistics.Win.ValueListItem();
  273. Infragistics.Win.ValueListItem valueListItem68 = new Infragistics.Win.ValueListItem();
  274. Infragistics.Win.ValueListItem valueListItem69 = new Infragistics.Win.ValueListItem();
  275. Infragistics.Win.ValueListItem valueListItem70 = new Infragistics.Win.ValueListItem();
  276. Infragistics.Win.ValueListItem valueListItem71 = new Infragistics.Win.ValueListItem();
  277. Infragistics.Win.ValueListItem valueListItem72 = new Infragistics.Win.ValueListItem();
  278. Infragistics.Win.ValueListItem valueListItem73 = new Infragistics.Win.ValueListItem();
  279. Infragistics.Win.ValueListItem valueListItem74 = new Infragistics.Win.ValueListItem();
  280. Infragistics.Win.ValueListItem valueListItem75 = new Infragistics.Win.ValueListItem();
  281. Infragistics.Win.ValueListItem valueListItem76 = new Infragistics.Win.ValueListItem();
  282. Infragistics.Win.ValueListItem valueListItem77 = new Infragistics.Win.ValueListItem();
  283. Infragistics.Win.ValueListItem valueListItem78 = new Infragistics.Win.ValueListItem();
  284. Infragistics.Win.ValueListItem valueListItem79 = new Infragistics.Win.ValueListItem();
  285. Infragistics.Win.ValueListItem valueListItem80 = new Infragistics.Win.ValueListItem();
  286. Infragistics.Win.ValueListItem valueListItem81 = new Infragistics.Win.ValueListItem();
  287. Infragistics.Win.ValueListItem valueListItem82 = new Infragistics.Win.ValueListItem();
  288. Infragistics.Win.ValueListItem valueListItem83 = new Infragistics.Win.ValueListItem();
  289. Infragistics.Win.ValueListItem valueListItem84 = new Infragistics.Win.ValueListItem();
  290. Infragistics.Win.ValueListItem valueListItem85 = new Infragistics.Win.ValueListItem();
  291. Infragistics.Win.ValueListItem valueListItem86 = new Infragistics.Win.ValueListItem();
  292. Infragistics.Win.ValueListItem valueListItem87 = new Infragistics.Win.ValueListItem();
  293. Infragistics.Win.ValueListItem valueListItem88 = new Infragistics.Win.ValueListItem();
  294. Infragistics.Win.ValueListItem valueListItem89 = new Infragistics.Win.ValueListItem();
  295. Infragistics.Win.ValueListItem valueListItem90 = new Infragistics.Win.ValueListItem();
  296. Infragistics.Win.ValueListItem valueListItem91 = new Infragistics.Win.ValueListItem();
  297. Infragistics.Win.ValueListItem valueListItem92 = new Infragistics.Win.ValueListItem();
  298. Infragistics.Win.ValueListItem valueListItem93 = new Infragistics.Win.ValueListItem();
  299. Infragistics.Win.ValueListItem valueListItem94 = new Infragistics.Win.ValueListItem();
  300. Infragistics.Win.ValueListItem valueListItem95 = new Infragistics.Win.ValueListItem();
  301. Infragistics.Win.ValueListItem valueListItem96 = new Infragistics.Win.ValueListItem();
  302. Infragistics.Win.ValueListItem valueListItem97 = new Infragistics.Win.ValueListItem();
  303. Infragistics.Win.ValueListItem valueListItem98 = new Infragistics.Win.ValueListItem();
  304. Infragistics.Win.ValueListItem valueListItem99 = new Infragistics.Win.ValueListItem();
  305. Infragistics.Win.ValueListItem valueListItem100 = new Infragistics.Win.ValueListItem();
  306. Infragistics.Win.ValueListItem valueListItem101 = new Infragistics.Win.ValueListItem();
  307. Infragistics.Win.ValueListItem valueListItem102 = new Infragistics.Win.ValueListItem();
  308. Infragistics.Win.ValueListItem valueListItem103 = new Infragistics.Win.ValueListItem();
  309. Infragistics.Win.ValueListItem valueListItem104 = new Infragistics.Win.ValueListItem();
  310. Infragistics.Win.ValueListItem valueListItem105 = new Infragistics.Win.ValueListItem();
  311. Infragistics.Win.ValueListItem valueListItem106 = new Infragistics.Win.ValueListItem();
  312. Infragistics.Win.ValueListItem valueListItem107 = new Infragistics.Win.ValueListItem();
  313. Infragistics.Win.ValueListItem valueListItem108 = new Infragistics.Win.ValueListItem();
  314. Infragistics.Win.ValueListItem valueListItem109 = new Infragistics.Win.ValueListItem();
  315. Infragistics.Win.ValueListItem valueListItem110 = new Infragistics.Win.ValueListItem();
  316. Infragistics.Win.ValueListItem valueListItem111 = new Infragistics.Win.ValueListItem();
  317. Infragistics.Win.ValueListItem valueListItem112 = new Infragistics.Win.ValueListItem();
  318. Infragistics.Win.ValueListItem valueListItem113 = new Infragistics.Win.ValueListItem();
  319. Infragistics.Win.ValueListItem valueListItem114 = new Infragistics.Win.ValueListItem();
  320. Infragistics.Win.ValueListItem valueListItem115 = new Infragistics.Win.ValueListItem();
  321. Infragistics.Win.ValueListItem valueListItem116 = new Infragistics.Win.ValueListItem();
  322. Infragistics.Win.ValueListItem valueListItem117 = new Infragistics.Win.ValueListItem();
  323. Infragistics.Win.ValueListItem valueListItem118 = new Infragistics.Win.ValueListItem();
  324. Infragistics.Win.ValueListItem valueListItem119 = new Infragistics.Win.ValueListItem();
  325. Infragistics.Win.ValueListItem valueListItem120 = new Infragistics.Win.ValueListItem();
  326. Infragistics.Win.ValueListItem valueListItem121 = new Infragistics.Win.ValueListItem();
  327. Infragistics.Win.ValueListItem valueListItem122 = new Infragistics.Win.ValueListItem();
  328. Infragistics.Win.ValueListItem valueListItem123 = new Infragistics.Win.ValueListItem();
  329. Infragistics.Win.ValueListItem valueListItem124 = new Infragistics.Win.ValueListItem();
  330. Infragistics.Win.ValueListItem valueListItem125 = new Infragistics.Win.ValueListItem();
  331. Infragistics.Win.ValueListItem valueListItem126 = new Infragistics.Win.ValueListItem();
  332. Infragistics.Win.ValueListItem valueListItem127 = new Infragistics.Win.ValueListItem();
  333. Infragistics.Win.ValueListItem valueListItem128 = new Infragistics.Win.ValueListItem();
  334. Infragistics.Win.ValueListItem valueListItem129 = new Infragistics.Win.ValueListItem();
  335. Infragistics.Win.ValueListItem valueListItem130 = new Infragistics.Win.ValueListItem();
  336. Infragistics.Win.ValueListItem valueListItem131 = new Infragistics.Win.ValueListItem();
  337. Infragistics.Win.ValueListItem valueListItem132 = new Infragistics.Win.ValueListItem();
  338. Infragistics.Win.ValueListItem valueListItem133 = new Infragistics.Win.ValueListItem();
  339. Infragistics.Win.ValueListItem valueListItem134 = new Infragistics.Win.ValueListItem();
  340. Infragistics.Win.ValueListItem valueListItem135 = new Infragistics.Win.ValueListItem();
  341. Infragistics.Win.ValueListItem valueListItem136 = new Infragistics.Win.ValueListItem();
  342. Infragistics.Win.ValueListItem valueListItem137 = new Infragistics.Win.ValueListItem();
  343. Infragistics.Win.ValueListItem valueListItem138 = new Infragistics.Win.ValueListItem();
  344. Infragistics.Win.ValueListItem valueListItem139 = new Infragistics.Win.ValueListItem();
  345. Infragistics.Win.ValueListItem valueListItem140 = new Infragistics.Win.ValueListItem();
  346. Infragistics.Win.ValueListItem valueListItem141 = new Infragistics.Win.ValueListItem();
  347. Infragistics.Win.ValueListItem valueListItem142 = new Infragistics.Win.ValueListItem();
  348. Infragistics.Win.ValueListItem valueListItem143 = new Infragistics.Win.ValueListItem();
  349. Infragistics.Win.ValueListItem valueListItem144 = new Infragistics.Win.ValueListItem();
  350. Infragistics.Win.ValueListItem valueListItem145 = new Infragistics.Win.ValueListItem();
  351. Infragistics.Win.ValueListItem valueListItem146 = new Infragistics.Win.ValueListItem();
  352. Infragistics.Win.ValueListItem valueListItem147 = new Infragistics.Win.ValueListItem();
  353. Infragistics.Win.ValueListItem valueListItem148 = new Infragistics.Win.ValueListItem();
  354. Infragistics.Win.ValueListItem valueListItem149 = new Infragistics.Win.ValueListItem();
  355. Infragistics.Win.ValueListItem valueListItem150 = new Infragistics.Win.ValueListItem();
  356. Infragistics.Win.ValueListItem valueListItem151 = new Infragistics.Win.ValueListItem();
  357. Infragistics.Win.ValueListItem valueListItem152 = new Infragistics.Win.ValueListItem();
  358. Infragistics.Win.ValueListItem valueListItem153 = new Infragistics.Win.ValueListItem();
  359. Infragistics.Win.ValueListItem valueListItem154 = new Infragistics.Win.ValueListItem();
  360. Infragistics.Win.ValueListItem valueListItem155 = new Infragistics.Win.ValueListItem();
  361. Infragistics.Win.ValueListItem valueListItem156 = new Infragistics.Win.ValueListItem();
  362. Infragistics.Win.ValueListItem valueListItem157 = new Infragistics.Win.ValueListItem();
  363. Infragistics.Win.ValueListItem valueListItem158 = new Infragistics.Win.ValueListItem();
  364. Infragistics.Win.ValueListItem valueListItem159 = new Infragistics.Win.ValueListItem();
  365. Infragistics.Win.ValueListItem valueListItem160 = new Infragistics.Win.ValueListItem();
  366. Infragistics.Win.ValueListItem valueListItem161 = new Infragistics.Win.ValueListItem();
  367. Infragistics.Win.ValueListItem valueListItem162 = new Infragistics.Win.ValueListItem();
  368. Infragistics.Win.ValueListItem valueListItem163 = new Infragistics.Win.ValueListItem();
  369. Infragistics.Win.ValueListItem valueListItem164 = new Infragistics.Win.ValueListItem();
  370. Infragistics.Win.ValueListItem valueListItem165 = new Infragistics.Win.ValueListItem();
  371. Infragistics.Win.ValueListItem valueListItem166 = new Infragistics.Win.ValueListItem();
  372. Infragistics.Win.ValueListItem valueListItem167 = new Infragistics.Win.ValueListItem();
  373. Infragistics.Win.ValueListItem valueListItem168 = new Infragistics.Win.ValueListItem();
  374. Infragistics.Win.ValueListItem valueListItem169 = new Infragistics.Win.ValueListItem();
  375. Infragistics.Win.ValueListItem valueListItem170 = new Infragistics.Win.ValueListItem();
  376. Infragistics.Win.ValueListItem valueListItem171 = new Infragistics.Win.ValueListItem();
  377. Infragistics.Win.ValueListItem valueListItem172 = new Infragistics.Win.ValueListItem();
  378. Infragistics.Win.ValueListItem valueListItem173 = new Infragistics.Win.ValueListItem();
  379. Infragistics.Win.ValueListItem valueListItem174 = new Infragistics.Win.ValueListItem();
  380. Infragistics.Win.ValueListItem valueListItem175 = new Infragistics.Win.ValueListItem();
  381. Infragistics.Win.ValueListItem valueListItem176 = new Infragistics.Win.ValueListItem();
  382. Infragistics.Win.ValueListItem valueListItem177 = new Infragistics.Win.ValueListItem();
  383. Infragistics.Win.ValueListItem valueListItem178 = new Infragistics.Win.ValueListItem();
  384. Infragistics.Win.ValueListItem valueListItem179 = new Infragistics.Win.ValueListItem();
  385. Infragistics.Win.ValueListItem valueListItem180 = new Infragistics.Win.ValueListItem();
  386. Infragistics.Win.ValueListItem valueListItem181 = new Infragistics.Win.ValueListItem();
  387. Infragistics.Win.ValueListItem valueListItem182 = new Infragistics.Win.ValueListItem();
  388. Infragistics.Win.ValueListItem valueListItem183 = new Infragistics.Win.ValueListItem();
  389. Infragistics.Win.ValueListItem valueListItem184 = new Infragistics.Win.ValueListItem();
  390. Infragistics.Win.ValueListItem valueListItem185 = new Infragistics.Win.ValueListItem();
  391. Infragistics.Win.ValueListItem valueListItem186 = new Infragistics.Win.ValueListItem();
  392. Infragistics.Win.ValueListItem valueListItem187 = new Infragistics.Win.ValueListItem();
  393. Infragistics.Win.ValueListItem valueListItem188 = new Infragistics.Win.ValueListItem();
  394. Infragistics.Win.ValueListItem valueListItem189 = new Infragistics.Win.ValueListItem();
  395. Infragistics.Win.ValueListItem valueListItem190 = new Infragistics.Win.ValueListItem();
  396. Infragistics.Win.ValueListItem valueListItem191 = new Infragistics.Win.ValueListItem();
  397. Infragistics.Win.ValueListItem valueListItem192 = new Infragistics.Win.ValueListItem();
  398. Infragistics.Win.ValueListItem valueListItem193 = new Infragistics.Win.ValueListItem();
  399. Infragistics.Win.ValueListItem valueListItem194 = new Infragistics.Win.ValueListItem();
  400. Infragistics.Win.ValueListItem valueListItem195 = new Infragistics.Win.ValueListItem();
  401. Infragistics.Win.ValueListItem valueListItem196 = new Infragistics.Win.ValueListItem();
  402. Infragistics.Win.ValueListItem valueListItem197 = new Infragistics.Win.ValueListItem();
  403. Infragistics.Win.ValueListItem valueListItem198 = new Infragistics.Win.ValueListItem();
  404. Infragistics.Win.ValueListItem valueListItem199 = new Infragistics.Win.ValueListItem();
  405. Infragistics.Win.ValueListItem valueListItem200 = new Infragistics.Win.ValueListItem();
  406. Infragistics.Win.ValueListItem valueListItem201 = new Infragistics.Win.ValueListItem();
  407. Infragistics.Win.ValueListItem valueListItem202 = new Infragistics.Win.ValueListItem();
  408. Infragistics.Win.ValueListItem valueListItem203 = new Infragistics.Win.ValueListItem();
  409. Infragistics.Win.ValueListItem valueListItem204 = new Infragistics.Win.ValueListItem();
  410. Infragistics.Win.ValueListItem valueListItem205 = new Infragistics.Win.ValueListItem();
  411. Infragistics.Win.ValueListItem valueListItem206 = new Infragistics.Win.ValueListItem();
  412. Infragistics.Win.ValueListItem valueListItem207 = new Infragistics.Win.ValueListItem();
  413. Infragistics.Win.ValueListItem valueListItem208 = new Infragistics.Win.ValueListItem();
  414. Infragistics.Win.ValueListItem valueListItem209 = new Infragistics.Win.ValueListItem();
  415. Infragistics.Win.ValueListItem valueListItem210 = new Infragistics.Win.ValueListItem();
  416. Infragistics.Win.ValueListItem valueListItem211 = new Infragistics.Win.ValueListItem();
  417. Infragistics.Win.ValueListItem valueListItem212 = new Infragistics.Win.ValueListItem();
  418. Infragistics.Win.ValueListItem valueListItem213 = new Infragistics.Win.ValueListItem();
  419. Infragistics.Win.ValueListItem valueListItem214 = new Infragistics.Win.ValueListItem();
  420. Infragistics.Win.ValueListItem valueListItem215 = new Infragistics.Win.ValueListItem();
  421. Infragistics.Win.ValueListItem valueListItem216 = new Infragistics.Win.ValueListItem();
  422. Infragistics.Win.ValueListItem valueListItem217 = new Infragistics.Win.ValueListItem();
  423. Infragistics.Win.ValueListItem valueListItem218 = new Infragistics.Win.ValueListItem();
  424. Infragistics.Win.ValueListItem valueListItem219 = new Infragistics.Win.ValueListItem();
  425. Infragistics.Win.ValueListItem valueListItem220 = new Infragistics.Win.ValueListItem();
  426. Infragistics.Win.ValueListItem valueListItem221 = new Infragistics.Win.ValueListItem();
  427. Infragistics.Win.ValueListItem valueListItem222 = new Infragistics.Win.ValueListItem();
  428. Infragistics.Win.ValueListItem valueListItem223 = new Infragistics.Win.ValueListItem();
  429. Infragistics.Win.ValueListItem valueListItem224 = new Infragistics.Win.ValueListItem();
  430. Infragistics.Win.ValueListItem valueListItem225 = new Infragistics.Win.ValueListItem();
  431. Infragistics.Win.ValueListItem valueListItem226 = new Infragistics.Win.ValueListItem();
  432. Infragistics.Win.ValueListItem valueListItem227 = new Infragistics.Win.ValueListItem();
  433. Infragistics.Win.ValueListItem valueListItem228 = new Infragistics.Win.ValueListItem();
  434. Infragistics.Win.ValueListItem valueListItem229 = new Infragistics.Win.ValueListItem();
  435. Infragistics.Win.ValueListItem valueListItem230 = new Infragistics.Win.ValueListItem();
  436. Infragistics.Win.ValueListItem valueListItem231 = new Infragistics.Win.ValueListItem();
  437. Infragistics.Win.ValueListItem valueListItem232 = new Infragistics.Win.ValueListItem();
  438. Infragistics.Win.ValueListItem valueListItem233 = new Infragistics.Win.ValueListItem();
  439. Infragistics.Win.ValueListItem valueListItem234 = new Infragistics.Win.ValueListItem();
  440. Infragistics.Win.ValueListItem valueListItem235 = new Infragistics.Win.ValueListItem();
  441. Infragistics.Win.ValueListItem valueListItem236 = new Infragistics.Win.ValueListItem();
  442. Infragistics.Win.ValueListItem valueListItem237 = new Infragistics.Win.ValueListItem();
  443. Infragistics.Win.ValueListItem valueListItem238 = new Infragistics.Win.ValueListItem();
  444. Infragistics.Win.ValueListItem valueListItem239 = new Infragistics.Win.ValueListItem();
  445. Infragistics.Win.ValueListItem valueListItem240 = new Infragistics.Win.ValueListItem();
  446. Infragistics.Win.ValueListItem valueListItem241 = new Infragistics.Win.ValueListItem();
  447. Infragistics.Win.ValueListItem valueListItem242 = new Infragistics.Win.ValueListItem();
  448. Infragistics.Win.ValueListItem valueListItem243 = new Infragistics.Win.ValueListItem();
  449. Infragistics.Win.ValueListItem valueListItem244 = new Infragistics.Win.ValueListItem();
  450. Infragistics.Win.ValueListItem valueListItem245 = new Infragistics.Win.ValueListItem();
  451. Infragistics.Win.ValueListItem valueListItem246 = new Infragistics.Win.ValueListItem();
  452. Infragistics.Win.ValueListItem valueListItem247 = new Infragistics.Win.ValueListItem();
  453. Infragistics.Win.ValueListItem valueListItem248 = new Infragistics.Win.ValueListItem();
  454. Infragistics.Win.ValueListItem valueListItem249 = new Infragistics.Win.ValueListItem();
  455. Infragistics.Win.ValueListItem valueListItem250 = new Infragistics.Win.ValueListItem();
  456. Infragistics.Win.ValueListItem valueListItem251 = new Infragistics.Win.ValueListItem();
  457. Infragistics.Win.ValueListItem valueListItem252 = new Infragistics.Win.ValueListItem();
  458. Infragistics.Win.ValueListItem valueListItem253 = new Infragistics.Win.ValueListItem();
  459. Infragistics.Win.ValueListItem valueListItem254 = new Infragistics.Win.ValueListItem();
  460. Infragistics.Win.ValueListItem valueListItem255 = new Infragistics.Win.ValueListItem();
  461. Infragistics.Win.ValueListItem valueListItem256 = new Infragistics.Win.ValueListItem();
  462. Infragistics.Win.ValueListItem valueListItem257 = new Infragistics.Win.ValueListItem();
  463. Infragistics.Win.ValueListItem valueListItem258 = new Infragistics.Win.ValueListItem();
  464. Infragistics.Win.ValueListItem valueListItem259 = new Infragistics.Win.ValueListItem();
  465. Infragistics.Win.ValueListItem valueListItem260 = new Infragistics.Win.ValueListItem();
  466. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
  467. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  468. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  469. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  470. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  471. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  472. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  473. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  474. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  475. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  476. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  477. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  478. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  479. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  480. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  481. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  482. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  483. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  484. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  485. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
  486. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  487. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  488. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  489. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  490. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  491. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  492. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  493. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  494. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  495. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  496. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  497. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  498. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  499. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  500. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  501. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  502. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  503. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  504. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
  505. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  506. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  507. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  508. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  509. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  510. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  511. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  512. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  513. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  514. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  515. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  516. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  517. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  518. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  519. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  520. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  521. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  522. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  523. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  524. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  525. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  526. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  527. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  528. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  529. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  530. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  531. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  532. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  533. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  534. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  535. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  536. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  537. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  538. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  539. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  540. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  541. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  542. this.cmb_StorageLB = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  543. this.panel1 = new System.Windows.Forms.Panel();
  544. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  545. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  546. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  547. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  548. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  549. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  550. this.txt_Spet = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  551. this.chk_Spet = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  552. this.txt_wz = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  553. this.chk_wzmc = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  554. this.txt_ckm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  555. this.chk_Time = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  556. this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  557. this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  558. this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
  559. this.txt_wzdm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  560. this.Chk_WZDM = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  561. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  562. this.Chk_CKLB = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  563. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  564. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  565. this.txt_CKMC = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  566. this.Cmb_Checker = new Infragistics.Win.UltraWinGrid.UltraCombo();
  567. this.ultraLabel87 = new Infragistics.Win.Misc.UltraLabel();
  568. this.ultraLabel86 = new Infragistics.Win.Misc.UltraLabel();
  569. this.ultraTextEditor43 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  570. this.ultraLabel84 = new Infragistics.Win.Misc.UltraLabel();
  571. this.ultraTextEditor42 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  572. this.ultraLabel85 = new Infragistics.Win.Misc.UltraLabel();
  573. this.ultraLabel83 = new Infragistics.Win.Misc.UltraLabel();
  574. this.txt_YR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  575. this.ultraLabel82 = new Infragistics.Win.Misc.UltraLabel();
  576. this.txt_PlanR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  577. this.ultraLabel81 = new Infragistics.Win.Misc.UltraLabel();
  578. this.txt_ylbz = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  579. this.date_td = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  580. this.ultraLabel80 = new Infragistics.Win.Misc.UltraLabel();
  581. this.ultraLabel79 = new Infragistics.Win.Misc.UltraLabel();
  582. this.txt_DZ = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  583. this.ultraLabel78 = new Infragistics.Win.Misc.UltraLabel();
  584. this.ultraLabel77 = new Infragistics.Win.Misc.UltraLabel();
  585. this.txt_CZ = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  586. this.ultraLabel76 = new Infragistics.Win.Misc.UltraLabel();
  587. this.txt_Moneny = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  588. this.ultraLabel74 = new Infragistics.Win.Misc.UltraLabel();
  589. this.txt_Price = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  590. this.ultraLabel73 = new Infragistics.Win.Misc.UltraLabel();
  591. this.txt_YSS = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  592. this.ultraLabel72 = new Infragistics.Win.Misc.UltraLabel();
  593. this.txt_qlsl = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  594. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  595. this.txt_GYMC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  596. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  597. this.txt_JLDW = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  598. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  599. this.txt_GGXH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  600. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  601. this.txt_WZMC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  602. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  603. this.date_YS = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  604. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  605. this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  606. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  607. this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
  608. this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
  609. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  610. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  611. this.txt_BH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  612. this.panel2 = new System.Windows.Forms.Panel();
  613. this.gd_CK = new Infragistics.Win.UltraWinGrid.UltraGrid();
  614. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  615. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  616. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  617. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  618. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  619. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  620. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  621. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  622. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  623. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  624. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  625. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  626. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  627. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  628. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  629. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  630. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  631. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  632. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  633. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  634. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  635. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  636. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  637. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  638. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  639. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  640. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  641. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  642. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  643. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  644. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  645. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  646. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  647. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  648. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  649. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  650. this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  651. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  652. this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  653. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  654. this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  655. this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  656. this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  657. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  658. this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  659. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  660. this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  661. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  662. this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  663. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  664. this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  665. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  666. this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  667. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  668. this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  669. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  670. this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  671. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  672. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  673. this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  674. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  675. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  676. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  677. this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  678. this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
  679. this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  680. this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
  681. this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  682. this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
  683. this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  684. this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
  685. this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  686. this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
  687. this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  688. this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
  689. this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  690. this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  691. this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  692. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  693. this.ultraComboEditor12 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  694. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  695. this.ultraComboEditor13 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  696. this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
  697. this.ultraComboEditor14 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  698. this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
  699. this.ultraComboEditor15 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  700. this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
  701. this.ultraComboEditor16 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  702. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  703. this.ultraComboEditor17 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  704. this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
  705. this.ultraComboEditor18 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  706. this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
  707. this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
  708. this.ultraTextEditor31 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  709. this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
  710. this.ultraTextEditor32 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  711. this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
  712. this.ultraTextEditor33 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  713. this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
  714. this.ultraTextEditor34 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  715. this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
  716. this.ultraTextEditor35 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  717. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  718. this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  719. this.ultraComboEditor19 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  720. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  721. this.ultraTextEditor36 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  722. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  723. this.ultraTextEditor37 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  724. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  725. this.ultraTextEditor38 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  726. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  727. this.ultraTextEditor39 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  728. this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  729. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  730. this.ultraTextEditor40 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  731. this.ultraComboEditor20 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  732. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  733. this.ultraLabel50 = new Infragistics.Win.Misc.UltraLabel();
  734. this.ultraComboEditor21 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  735. this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
  736. this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
  737. this.ultraLabel70 = new Infragistics.Win.Misc.UltraLabel();
  738. this.ultraTextEditor41 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  739. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  740. this.Cmb_wzdm = new Infragistics.Win.UltraWinGrid.UltraCombo();
  741. this.Cmb_CKDM = new Infragistics.Win.UltraWinGrid.UltraCombo();
  742. this.ultraCombo1 = new Infragistics.Win.UltraWinGrid.UltraCombo();
  743. this.Cmd_GFCode = new Infragistics.Win.UltraWinGrid.UltraCombo();
  744. ((System.ComponentModel.ISupportInitialize)(this.cmb_StorageLB)).BeginInit();
  745. this.panel1.SuspendLayout();
  746. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  747. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  748. this.ultraGroupBox1.SuspendLayout();
  749. ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).BeginInit();
  750. ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).BeginInit();
  751. ((System.ComponentModel.ISupportInitialize)(this.txt_ckm)).BeginInit();
  752. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
  753. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
  754. ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).BeginInit();
  755. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  756. this.ultraExpandableGroupBox1.SuspendLayout();
  757. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  758. ((System.ComponentModel.ISupportInitialize)(this.txt_CKMC)).BeginInit();
  759. ((System.ComponentModel.ISupportInitialize)(this.Cmb_Checker)).BeginInit();
  760. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).BeginInit();
  761. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).BeginInit();
  762. ((System.ComponentModel.ISupportInitialize)(this.txt_YR)).BeginInit();
  763. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanR)).BeginInit();
  764. ((System.ComponentModel.ISupportInitialize)(this.txt_ylbz)).BeginInit();
  765. ((System.ComponentModel.ISupportInitialize)(this.date_td)).BeginInit();
  766. ((System.ComponentModel.ISupportInitialize)(this.txt_DZ)).BeginInit();
  767. ((System.ComponentModel.ISupportInitialize)(this.txt_CZ)).BeginInit();
  768. ((System.ComponentModel.ISupportInitialize)(this.txt_Moneny)).BeginInit();
  769. ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).BeginInit();
  770. ((System.ComponentModel.ISupportInitialize)(this.txt_YSS)).BeginInit();
  771. ((System.ComponentModel.ISupportInitialize)(this.txt_qlsl)).BeginInit();
  772. ((System.ComponentModel.ISupportInitialize)(this.txt_GYMC)).BeginInit();
  773. ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).BeginInit();
  774. ((System.ComponentModel.ISupportInitialize)(this.txt_GGXH)).BeginInit();
  775. ((System.ComponentModel.ISupportInitialize)(this.txt_WZMC)).BeginInit();
  776. ((System.ComponentModel.ISupportInitialize)(this.date_YS)).BeginInit();
  777. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
  778. ((System.ComponentModel.ISupportInitialize)(this.txt_BH)).BeginInit();
  779. this.panel2.SuspendLayout();
  780. ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).BeginInit();
  781. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  782. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  783. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  784. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  785. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  786. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  787. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  788. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  789. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  790. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  791. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  792. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  793. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  794. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  795. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  796. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  797. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  798. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
  799. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
  800. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
  801. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
  802. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
  803. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
  804. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
  805. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
  806. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
  807. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
  808. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
  809. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
  810. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
  811. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  812. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
  813. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
  814. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
  815. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
  816. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
  817. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
  818. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
  819. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
  820. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
  821. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).BeginInit();
  822. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).BeginInit();
  823. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).BeginInit();
  824. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).BeginInit();
  825. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).BeginInit();
  826. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).BeginInit();
  827. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).BeginInit();
  828. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).BeginInit();
  829. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).BeginInit();
  830. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).BeginInit();
  831. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).BeginInit();
  832. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).BeginInit();
  833. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
  834. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).BeginInit();
  835. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).BeginInit();
  836. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).BeginInit();
  837. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).BeginInit();
  838. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).BeginInit();
  839. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
  840. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).BeginInit();
  841. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).BeginInit();
  842. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor21)).BeginInit();
  843. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).BeginInit();
  844. ((System.ComponentModel.ISupportInitialize)(this.Cmb_wzdm)).BeginInit();
  845. ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKDM)).BeginInit();
  846. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
  847. ((System.ComponentModel.ISupportInitialize)(this.Cmd_GFCode)).BeginInit();
  848. this.SuspendLayout();
  849. //
  850. // cmb_StorageLB
  851. //
  852. this.cmb_StorageLB.AutoSize = true;
  853. this.cmb_StorageLB.Location = new System.Drawing.Point(643, 5);
  854. this.cmb_StorageLB.Name = "cmb_StorageLB";
  855. this.cmb_StorageLB.Size = new System.Drawing.Size(139, 21);
  856. this.cmb_StorageLB.TabIndex = 429;
  857. //
  858. // panel1
  859. //
  860. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  861. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  862. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  863. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  864. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  865. this.panel1.Location = new System.Drawing.Point(0, 0);
  866. this.panel1.Name = "panel1";
  867. this.panel1.Size = new System.Drawing.Size(1169, 32);
  868. this.panel1.TabIndex = 0;
  869. //
  870. // _panel1_Toolbars_Dock_Area_Left
  871. //
  872. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  873. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  874. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  875. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  876. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  877. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  878. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
  879. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  880. //
  881. // ultraToolbarsManager1
  882. //
  883. this.ultraToolbarsManager1.DesignerFlags = 1;
  884. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  885. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  886. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  887. ultraToolbar1.DockedColumn = 0;
  888. ultraToolbar1.DockedRow = 0;
  889. ultraToolbar1.Text = "工具栏";
  890. buttonTool1.InstanceProps.IsFirstInGroup = true;
  891. buttonTool4.InstanceProps.IsFirstInGroup = true;
  892. buttonTool5.InstanceProps.IsFirstInGroup = true;
  893. buttonTool6.InstanceProps.IsFirstInGroup = true;
  894. ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  895. buttonTool1,
  896. buttonTool2,
  897. buttonTool3,
  898. buttonTool4,
  899. buttonTool5,
  900. buttonTool6,
  901. buttonTool7,
  902. buttonTool8});
  903. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  904. ultraToolbar1});
  905. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  906. buttonTool9.SharedProps.Caption = "新增";
  907. buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  908. buttonTool10.SharedProps.Caption = "查询";
  909. buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  910. buttonTool11.SharedProps.Caption = "关闭";
  911. buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  912. buttonTool12.SharedProps.Caption = "导出";
  913. buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  914. buttonTool13.SharedProps.Caption = "修改";
  915. buttonTool13.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  916. buttonTool14.SharedProps.Caption = "撤销领料";
  917. buttonTool14.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  918. buttonTool15.SharedProps.Caption = "导出领料单";
  919. buttonTool15.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  920. buttonTool16.SharedProps.Caption = "保存发票号";
  921. buttonTool16.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  922. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  923. buttonTool9,
  924. buttonTool10,
  925. buttonTool11,
  926. buttonTool12,
  927. buttonTool13,
  928. buttonTool14,
  929. buttonTool15,
  930. buttonTool16});
  931. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  932. //
  933. // _panel1_Toolbars_Dock_Area_Right
  934. //
  935. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  936. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  937. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  938. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  939. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1169, 24);
  940. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  941. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
  942. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  943. //
  944. // _panel1_Toolbars_Dock_Area_Top
  945. //
  946. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  947. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  948. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  949. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  950. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  951. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  952. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1169, 24);
  953. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  954. //
  955. // _panel1_Toolbars_Dock_Area_Bottom
  956. //
  957. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  958. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  959. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  960. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  961. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
  962. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  963. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1169, 0);
  964. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  965. //
  966. // ultraGroupBox1
  967. //
  968. this.ultraGroupBox1.Controls.Add(this.txt_Spet);
  969. this.ultraGroupBox1.Controls.Add(this.chk_Spet);
  970. this.ultraGroupBox1.Controls.Add(this.txt_wz);
  971. this.ultraGroupBox1.Controls.Add(this.chk_wzmc);
  972. this.ultraGroupBox1.Controls.Add(this.txt_ckm);
  973. this.ultraGroupBox1.Controls.Add(this.chk_Time);
  974. this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
  975. this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
  976. this.ultraGroupBox1.Controls.Add(this.Lab_To);
  977. this.ultraGroupBox1.Controls.Add(this.txt_wzdm);
  978. this.ultraGroupBox1.Controls.Add(this.Chk_WZDM);
  979. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  980. this.ultraGroupBox1.Controls.Add(this.Chk_CKLB);
  981. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  982. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
  983. this.ultraGroupBox1.Name = "ultraGroupBox1";
  984. this.ultraGroupBox1.Size = new System.Drawing.Size(1169, 35);
  985. this.ultraGroupBox1.SupportThemes = false;
  986. this.ultraGroupBox1.TabIndex = 1;
  987. //
  988. // txt_Spet
  989. //
  990. this.txt_Spet.AutoSize = true;
  991. this.txt_Spet.Enabled = false;
  992. this.txt_Spet.FlatMode = true;
  993. this.txt_Spet.Location = new System.Drawing.Point(986, 9);
  994. this.txt_Spet.Name = "txt_Spet";
  995. this.txt_Spet.Size = new System.Drawing.Size(99, 19);
  996. this.txt_Spet.TabIndex = 406;
  997. this.txt_Spet.Tag = "";
  998. //
  999. // chk_Spet
  1000. //
  1001. this.chk_Spet.FlatMode = true;
  1002. this.chk_Spet.Location = new System.Drawing.Point(908, 10);
  1003. this.chk_Spet.Name = "chk_Spet";
  1004. this.chk_Spet.Size = new System.Drawing.Size(85, 16);
  1005. this.chk_Spet.TabIndex = 405;
  1006. this.chk_Spet.Text = "规格型号";
  1007. this.chk_Spet.CheckedChanged += new System.EventHandler(this.chk_Spet_CheckedChanged);
  1008. //
  1009. // txt_wz
  1010. //
  1011. this.txt_wz.AutoSize = true;
  1012. this.txt_wz.Enabled = false;
  1013. this.txt_wz.FlatMode = true;
  1014. this.txt_wz.Location = new System.Drawing.Point(806, 10);
  1015. this.txt_wz.Name = "txt_wz";
  1016. this.txt_wz.Size = new System.Drawing.Size(96, 19);
  1017. this.txt_wz.TabIndex = 404;
  1018. this.txt_wz.Tag = "";
  1019. //
  1020. // chk_wzmc
  1021. //
  1022. this.chk_wzmc.FlatMode = true;
  1023. this.chk_wzmc.Location = new System.Drawing.Point(728, 11);
  1024. this.chk_wzmc.Name = "chk_wzmc";
  1025. this.chk_wzmc.Size = new System.Drawing.Size(85, 16);
  1026. this.chk_wzmc.TabIndex = 403;
  1027. this.chk_wzmc.Text = "物资名称";
  1028. this.chk_wzmc.CheckedChanged += new System.EventHandler(this.chk_wzmc_CheckedChanged);
  1029. //
  1030. // txt_ckm
  1031. //
  1032. this.txt_ckm.AutoSize = true;
  1033. this.txt_ckm.Enabled = false;
  1034. this.txt_ckm.FlatMode = true;
  1035. this.txt_ckm.Location = new System.Drawing.Point(447, 9);
  1036. this.txt_ckm.Name = "txt_ckm";
  1037. this.txt_ckm.Size = new System.Drawing.Size(96, 19);
  1038. this.txt_ckm.TabIndex = 402;
  1039. this.txt_ckm.Tag = "";
  1040. //
  1041. // chk_Time
  1042. //
  1043. this.chk_Time.Checked = true;
  1044. this.chk_Time.CheckState = System.Windows.Forms.CheckState.Checked;
  1045. this.chk_Time.Location = new System.Drawing.Point(6, 6);
  1046. this.chk_Time.Name = "chk_Time";
  1047. this.chk_Time.Size = new System.Drawing.Size(84, 22);
  1048. this.chk_Time.TabIndex = 401;
  1049. this.chk_Time.Text = "发料时间";
  1050. //
  1051. // dte_EndTime
  1052. //
  1053. this.dte_EndTime.DateTime = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
  1054. this.dte_EndTime.FlatMode = true;
  1055. this.dte_EndTime.Location = new System.Drawing.Point(245, 6);
  1056. this.dte_EndTime.Name = "dte_EndTime";
  1057. this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
  1058. this.dte_EndTime.TabIndex = 400;
  1059. this.dte_EndTime.Value = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
  1060. //
  1061. // dte_BeginTime
  1062. //
  1063. this.dte_BeginTime.DateTime = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
  1064. this.dte_BeginTime.FlatMode = true;
  1065. this.dte_BeginTime.Location = new System.Drawing.Point(97, 7);
  1066. this.dte_BeginTime.Name = "dte_BeginTime";
  1067. this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
  1068. this.dte_BeginTime.TabIndex = 399;
  1069. this.dte_BeginTime.Value = new System.DateTime(2023, 7, 26, 0, 0, 0, 0);
  1070. //
  1071. // Lab_To
  1072. //
  1073. this.Lab_To.FlatMode = true;
  1074. this.Lab_To.Location = new System.Drawing.Point(219, 8);
  1075. this.Lab_To.Name = "Lab_To";
  1076. this.Lab_To.Size = new System.Drawing.Size(17, 16);
  1077. this.Lab_To.TabIndex = 398;
  1078. this.Lab_To.Text = "到";
  1079. //
  1080. // txt_wzdm
  1081. //
  1082. this.txt_wzdm.AutoSize = true;
  1083. this.txt_wzdm.Enabled = false;
  1084. this.txt_wzdm.FlatMode = true;
  1085. this.txt_wzdm.Location = new System.Drawing.Point(627, 10);
  1086. this.txt_wzdm.Name = "txt_wzdm";
  1087. this.txt_wzdm.Size = new System.Drawing.Size(96, 19);
  1088. this.txt_wzdm.TabIndex = 395;
  1089. this.txt_wzdm.Tag = "";
  1090. //
  1091. // Chk_WZDM
  1092. //
  1093. this.Chk_WZDM.FlatMode = true;
  1094. this.Chk_WZDM.Location = new System.Drawing.Point(549, 11);
  1095. this.Chk_WZDM.Name = "Chk_WZDM";
  1096. this.Chk_WZDM.Size = new System.Drawing.Size(85, 16);
  1097. this.Chk_WZDM.TabIndex = 394;
  1098. this.Chk_WZDM.Text = "物资代码";
  1099. this.Chk_WZDM.CheckedChanged += new System.EventHandler(this.Chk_WZDM_CheckedChanged);
  1100. //
  1101. // chk_AllowFilter
  1102. //
  1103. this.chk_AllowFilter.Location = new System.Drawing.Point(1091, 8);
  1104. this.chk_AllowFilter.Name = "chk_AllowFilter";
  1105. this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
  1106. this.chk_AllowFilter.TabIndex = 131;
  1107. this.chk_AllowFilter.TabStop = false;
  1108. this.chk_AllowFilter.Text = "允许过滤";
  1109. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  1110. //
  1111. // Chk_CKLB
  1112. //
  1113. this.Chk_CKLB.FlatMode = true;
  1114. this.Chk_CKLB.Location = new System.Drawing.Point(369, 8);
  1115. this.Chk_CKLB.Name = "Chk_CKLB";
  1116. this.Chk_CKLB.Size = new System.Drawing.Size(75, 17);
  1117. this.Chk_CKLB.TabIndex = 112;
  1118. this.Chk_CKLB.Text = "发料仓库";
  1119. this.Chk_CKLB.CheckedChanged += new System.EventHandler(this.Chk_CKLB_CheckedChanged);
  1120. //
  1121. // ultraExpandableGroupBox1
  1122. //
  1123. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1124. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1125. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(200, 185);
  1126. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 350);
  1127. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1128. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1169, 168);
  1129. this.ultraExpandableGroupBox1.SupportThemes = false;
  1130. this.ultraExpandableGroupBox1.TabIndex = 4;
  1131. this.ultraExpandableGroupBox1.Text = "领料单详情";
  1132. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  1133. //
  1134. // ultraExpandableGroupBoxPanel1
  1135. //
  1136. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmd_GFCode);
  1137. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraCombo1);
  1138. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_CKDM);
  1139. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_wzdm);
  1140. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_CKMC);
  1141. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Cmb_Checker);
  1142. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel87);
  1143. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel86);
  1144. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor43);
  1145. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel84);
  1146. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor42);
  1147. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel85);
  1148. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel83);
  1149. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YR);
  1150. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel82);
  1151. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_PlanR);
  1152. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel81);
  1153. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_ylbz);
  1154. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.date_td);
  1155. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel80);
  1156. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel79);
  1157. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_DZ);
  1158. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel78);
  1159. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel77);
  1160. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_CZ);
  1161. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel76);
  1162. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Moneny);
  1163. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel74);
  1164. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Price);
  1165. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel73);
  1166. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YSS);
  1167. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel72);
  1168. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_qlsl);
  1169. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel29);
  1170. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_GYMC);
  1171. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel28);
  1172. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_JLDW);
  1173. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel15);
  1174. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_GGXH);
  1175. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel14);
  1176. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_WZMC);
  1177. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
  1178. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.date_YS);
  1179. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
  1180. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Remark);
  1181. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  1182. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel75);
  1183. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_StorageLB);
  1184. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel71);
  1185. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
  1186. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  1187. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_BH);
  1188. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1189. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
  1190. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1191. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1165, 146);
  1192. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1193. //
  1194. // txt_CKMC
  1195. //
  1196. this.txt_CKMC.AutoSize = true;
  1197. valueListItem3.DataValue = "2#";
  1198. valueListItem3.DisplayText = "2#";
  1199. valueListItem2.DataValue = valueListItem3;
  1200. valueListItem2.DisplayText = "2#";
  1201. valueListItem1.DataValue = valueListItem2;
  1202. valueListItem1.DisplayText = "2#";
  1203. valueListItem4.DataValue = "3#";
  1204. valueListItem4.DisplayText = "3#";
  1205. valueListItem7.DataValue = "临时库";
  1206. valueListItem7.DisplayText = "临时库";
  1207. valueListItem6.DataValue = valueListItem7;
  1208. valueListItem6.DisplayText = "临时库";
  1209. valueListItem5.DataValue = valueListItem6;
  1210. valueListItem5.DisplayText = "临时库";
  1211. valueListItem8.DataValue = "中间库";
  1212. valueListItem8.DisplayText = "中间库";
  1213. this.txt_CKMC.Items.Add(valueListItem1);
  1214. this.txt_CKMC.Items.Add(valueListItem4);
  1215. this.txt_CKMC.Items.Add(valueListItem5);
  1216. this.txt_CKMC.Items.Add(valueListItem8);
  1217. this.txt_CKMC.Location = new System.Drawing.Point(857, 3);
  1218. this.txt_CKMC.Name = "txt_CKMC";
  1219. this.txt_CKMC.Size = new System.Drawing.Size(117, 21);
  1220. this.txt_CKMC.TabIndex = 625;
  1221. //
  1222. // Cmb_Checker
  1223. //
  1224. this.Cmb_Checker.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1225. ultraGridColumn21.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1226. ultraGridColumn21.Header.Caption = " 物资代码";
  1227. ultraGridColumn21.Header.VisiblePosition = 0;
  1228. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 0;
  1229. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1230. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  1231. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1232. ultraGridColumn22.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1233. ultraGridColumn22.Header.Caption = "物资名称";
  1234. ultraGridColumn22.Header.VisiblePosition = 1;
  1235. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 2;
  1236. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1237. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  1238. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1239. ultraGridColumn23.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1240. ultraGridColumn23.Header.Caption = "规格型号";
  1241. ultraGridColumn23.Header.VisiblePosition = 2;
  1242. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 4;
  1243. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1244. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  1245. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  1246. ultraGridColumn24.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1247. ultraGridColumn24.Header.Caption = "材质";
  1248. ultraGridColumn24.Header.VisiblePosition = 3;
  1249. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 6;
  1250. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1251. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  1252. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  1253. ultraGridColumn25.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1254. ultraGridColumn25.Header.Caption = "计量单位";
  1255. ultraGridColumn25.Header.VisiblePosition = 4;
  1256. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 8;
  1257. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1258. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  1259. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  1260. ultraGridBand5.Columns.AddRange(new object[] {
  1261. ultraGridColumn21,
  1262. ultraGridColumn22,
  1263. ultraGridColumn23,
  1264. ultraGridColumn24,
  1265. ultraGridColumn25});
  1266. ultraGridBand5.UseRowLayout = true;
  1267. this.Cmb_Checker.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  1268. this.Cmb_Checker.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1269. this.Cmb_Checker.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1270. this.Cmb_Checker.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1271. this.Cmb_Checker.DisplayLayout.MaxColScrollRegions = 1;
  1272. this.Cmb_Checker.DisplayLayout.MaxRowScrollRegions = 1;
  1273. this.Cmb_Checker.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1274. this.Cmb_Checker.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1275. this.Cmb_Checker.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1276. this.Cmb_Checker.DisplayLayout.Override.CellPadding = 0;
  1277. this.Cmb_Checker.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1278. this.Cmb_Checker.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1279. this.Cmb_Checker.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1280. this.Cmb_Checker.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1281. this.Cmb_Checker.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1282. this.Cmb_Checker.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1283. this.Cmb_Checker.DisplayMember = "";
  1284. this.Cmb_Checker.Location = new System.Drawing.Point(1042, 85);
  1285. this.Cmb_Checker.Name = "Cmb_Checker";
  1286. this.Cmb_Checker.Size = new System.Drawing.Size(108, 21);
  1287. this.Cmb_Checker.TabIndex = 624;
  1288. this.Cmb_Checker.ValueMember = "";
  1289. //
  1290. // ultraLabel87
  1291. //
  1292. this.ultraLabel87.BackColor = System.Drawing.Color.Transparent;
  1293. this.ultraLabel87.Location = new System.Drawing.Point(980, 87);
  1294. this.ultraLabel87.Name = "ultraLabel87";
  1295. this.ultraLabel87.Size = new System.Drawing.Size(56, 16);
  1296. this.ultraLabel87.TabIndex = 489;
  1297. this.ultraLabel87.Text = "审核人";
  1298. //
  1299. // ultraLabel86
  1300. //
  1301. this.ultraLabel86.BackColor = System.Drawing.Color.Transparent;
  1302. this.ultraLabel86.Location = new System.Drawing.Point(387, 59);
  1303. this.ultraLabel86.Name = "ultraLabel86";
  1304. this.ultraLabel86.Size = new System.Drawing.Size(56, 16);
  1305. this.ultraLabel86.TabIndex = 487;
  1306. this.ultraLabel86.Text = "用途";
  1307. //
  1308. // ultraTextEditor43
  1309. //
  1310. this.ultraTextEditor43.AutoSize = true;
  1311. this.ultraTextEditor43.FlatMode = true;
  1312. this.ultraTextEditor43.Location = new System.Drawing.Point(449, 58);
  1313. this.ultraTextEditor43.Multiline = true;
  1314. this.ultraTextEditor43.Name = "ultraTextEditor43";
  1315. this.ultraTextEditor43.Size = new System.Drawing.Size(297, 19);
  1316. this.ultraTextEditor43.TabIndex = 486;
  1317. this.ultraTextEditor43.Tag = "";
  1318. //
  1319. // ultraLabel84
  1320. //
  1321. this.ultraLabel84.BackColor = System.Drawing.Color.Transparent;
  1322. this.ultraLabel84.Location = new System.Drawing.Point(205, 112);
  1323. this.ultraLabel84.Name = "ultraLabel84";
  1324. this.ultraLabel84.Size = new System.Drawing.Size(56, 16);
  1325. this.ultraLabel84.TabIndex = 484;
  1326. this.ultraLabel84.Text = "类别名称";
  1327. //
  1328. // ultraTextEditor42
  1329. //
  1330. this.ultraTextEditor42.AutoSize = true;
  1331. this.ultraTextEditor42.FlatMode = true;
  1332. this.ultraTextEditor42.Location = new System.Drawing.Point(264, 109);
  1333. this.ultraTextEditor42.Multiline = true;
  1334. this.ultraTextEditor42.Name = "ultraTextEditor42";
  1335. this.ultraTextEditor42.Size = new System.Drawing.Size(118, 19);
  1336. this.ultraTextEditor42.TabIndex = 483;
  1337. this.ultraTextEditor42.Tag = "";
  1338. //
  1339. // ultraLabel85
  1340. //
  1341. this.ultraLabel85.BackColor = System.Drawing.Color.Transparent;
  1342. this.ultraLabel85.Location = new System.Drawing.Point(4, 112);
  1343. this.ultraLabel85.Name = "ultraLabel85";
  1344. this.ultraLabel85.Size = new System.Drawing.Size(89, 20);
  1345. this.ultraLabel85.TabIndex = 482;
  1346. this.ultraLabel85.Text = "类别代码";
  1347. //
  1348. // ultraLabel83
  1349. //
  1350. this.ultraLabel83.BackColor = System.Drawing.Color.Transparent;
  1351. this.ultraLabel83.Location = new System.Drawing.Point(980, 62);
  1352. this.ultraLabel83.Name = "ultraLabel83";
  1353. this.ultraLabel83.Size = new System.Drawing.Size(56, 16);
  1354. this.ultraLabel83.TabIndex = 481;
  1355. this.ultraLabel83.Text = "领料人";
  1356. //
  1357. // txt_YR
  1358. //
  1359. this.txt_YR.AutoSize = true;
  1360. this.txt_YR.FlatMode = true;
  1361. this.txt_YR.Location = new System.Drawing.Point(1042, 61);
  1362. this.txt_YR.Multiline = true;
  1363. this.txt_YR.Name = "txt_YR";
  1364. this.txt_YR.Size = new System.Drawing.Size(75, 19);
  1365. this.txt_YR.TabIndex = 480;
  1366. this.txt_YR.Tag = "";
  1367. //
  1368. // ultraLabel82
  1369. //
  1370. this.ultraLabel82.BackColor = System.Drawing.Color.Transparent;
  1371. this.ultraLabel82.Location = new System.Drawing.Point(980, 34);
  1372. this.ultraLabel82.Name = "ultraLabel82";
  1373. this.ultraLabel82.Size = new System.Drawing.Size(56, 16);
  1374. this.ultraLabel82.TabIndex = 479;
  1375. this.ultraLabel82.Text = "计划人";
  1376. //
  1377. // txt_PlanR
  1378. //
  1379. this.txt_PlanR.AutoSize = true;
  1380. this.txt_PlanR.FlatMode = true;
  1381. this.txt_PlanR.Location = new System.Drawing.Point(1042, 33);
  1382. this.txt_PlanR.Multiline = true;
  1383. this.txt_PlanR.Name = "txt_PlanR";
  1384. this.txt_PlanR.Size = new System.Drawing.Size(75, 19);
  1385. this.txt_PlanR.TabIndex = 478;
  1386. this.txt_PlanR.Tag = "";
  1387. //
  1388. // ultraLabel81
  1389. //
  1390. this.ultraLabel81.BackColor = System.Drawing.Color.Transparent;
  1391. this.ultraLabel81.Location = new System.Drawing.Point(980, 8);
  1392. this.ultraLabel81.Name = "ultraLabel81";
  1393. this.ultraLabel81.Size = new System.Drawing.Size(56, 16);
  1394. this.ultraLabel81.TabIndex = 477;
  1395. this.ultraLabel81.Text = "领料班组";
  1396. //
  1397. // txt_ylbz
  1398. //
  1399. this.txt_ylbz.AutoSize = true;
  1400. this.txt_ylbz.FlatMode = true;
  1401. this.txt_ylbz.Location = new System.Drawing.Point(1042, 5);
  1402. this.txt_ylbz.Multiline = true;
  1403. this.txt_ylbz.Name = "txt_ylbz";
  1404. this.txt_ylbz.Size = new System.Drawing.Size(75, 23);
  1405. this.txt_ylbz.TabIndex = 476;
  1406. this.txt_ylbz.Tag = "";
  1407. //
  1408. // date_td
  1409. //
  1410. this.date_td.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  1411. this.date_td.FlatMode = true;
  1412. this.date_td.Location = new System.Drawing.Point(842, 59);
  1413. this.date_td.Name = "date_td";
  1414. this.date_td.Size = new System.Drawing.Size(116, 19);
  1415. this.date_td.TabIndex = 475;
  1416. this.date_td.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  1417. //
  1418. // ultraLabel80
  1419. //
  1420. this.ultraLabel80.BackColor = System.Drawing.Color.Transparent;
  1421. this.ultraLabel80.Location = new System.Drawing.Point(781, 59);
  1422. this.ultraLabel80.Name = "ultraLabel80";
  1423. this.ultraLabel80.Size = new System.Drawing.Size(56, 16);
  1424. this.ultraLabel80.TabIndex = 474;
  1425. this.ultraLabel80.Text = "填单日期";
  1426. //
  1427. // ultraLabel79
  1428. //
  1429. this.ultraLabel79.BackColor = System.Drawing.Color.Transparent;
  1430. this.ultraLabel79.Location = new System.Drawing.Point(817, 32);
  1431. this.ultraLabel79.Name = "ultraLabel79";
  1432. this.ultraLabel79.Size = new System.Drawing.Size(40, 24);
  1433. this.ultraLabel79.TabIndex = 473;
  1434. this.ultraLabel79.Text = "单重";
  1435. //
  1436. // txt_DZ
  1437. //
  1438. this.txt_DZ.AutoSize = true;
  1439. this.txt_DZ.FlatMode = true;
  1440. this.txt_DZ.Location = new System.Drawing.Point(857, 27);
  1441. this.txt_DZ.Multiline = true;
  1442. this.txt_DZ.Name = "txt_DZ";
  1443. this.txt_DZ.Size = new System.Drawing.Size(117, 19);
  1444. this.txt_DZ.TabIndex = 472;
  1445. this.txt_DZ.Tag = "";
  1446. //
  1447. // ultraLabel78
  1448. //
  1449. this.ultraLabel78.BackColor = System.Drawing.Color.Transparent;
  1450. this.ultraLabel78.Location = new System.Drawing.Point(387, 7);
  1451. this.ultraLabel78.Name = "ultraLabel78";
  1452. this.ultraLabel78.Size = new System.Drawing.Size(89, 20);
  1453. this.ultraLabel78.TabIndex = 464;
  1454. this.ultraLabel78.Text = "仓库代码";
  1455. //
  1456. // ultraLabel77
  1457. //
  1458. this.ultraLabel77.BackColor = System.Drawing.Color.Transparent;
  1459. this.ultraLabel77.Location = new System.Drawing.Point(713, 35);
  1460. this.ultraLabel77.Name = "ultraLabel77";
  1461. this.ultraLabel77.Size = new System.Drawing.Size(33, 14);
  1462. this.ultraLabel77.TabIndex = 463;
  1463. this.ultraLabel77.Text = "材质";
  1464. //
  1465. // txt_CZ
  1466. //
  1467. this.txt_CZ.AutoSize = true;
  1468. this.txt_CZ.FlatMode = true;
  1469. this.txt_CZ.Location = new System.Drawing.Point(748, 31);
  1470. this.txt_CZ.Multiline = true;
  1471. this.txt_CZ.Name = "txt_CZ";
  1472. this.txt_CZ.Size = new System.Drawing.Size(63, 19);
  1473. this.txt_CZ.TabIndex = 462;
  1474. this.txt_CZ.Tag = "";
  1475. //
  1476. // ultraLabel76
  1477. //
  1478. this.ultraLabel76.BackColor = System.Drawing.Color.Transparent;
  1479. this.ultraLabel76.Location = new System.Drawing.Point(817, 90);
  1480. this.ultraLabel76.Name = "ultraLabel76";
  1481. this.ultraLabel76.Size = new System.Drawing.Size(56, 16);
  1482. this.ultraLabel76.TabIndex = 461;
  1483. this.ultraLabel76.Text = "金额";
  1484. this.ultraLabel76.Visible = false;
  1485. //
  1486. // txt_Moneny
  1487. //
  1488. this.txt_Moneny.AutoSize = true;
  1489. this.txt_Moneny.Enabled = false;
  1490. this.txt_Moneny.FlatMode = true;
  1491. this.txt_Moneny.Location = new System.Drawing.Point(876, 87);
  1492. this.txt_Moneny.Multiline = true;
  1493. this.txt_Moneny.Name = "txt_Moneny";
  1494. this.txt_Moneny.Size = new System.Drawing.Size(47, 19);
  1495. this.txt_Moneny.TabIndex = 460;
  1496. this.txt_Moneny.Tag = "";
  1497. this.txt_Moneny.Visible = false;
  1498. //
  1499. // ultraLabel74
  1500. //
  1501. this.ultraLabel74.BackColor = System.Drawing.Color.Transparent;
  1502. this.ultraLabel74.Location = new System.Drawing.Point(817, 116);
  1503. this.ultraLabel74.Name = "ultraLabel74";
  1504. this.ultraLabel74.Size = new System.Drawing.Size(56, 16);
  1505. this.ultraLabel74.TabIndex = 459;
  1506. this.ultraLabel74.Text = "单价";
  1507. this.ultraLabel74.Visible = false;
  1508. //
  1509. // txt_Price
  1510. //
  1511. this.txt_Price.AutoSize = true;
  1512. this.txt_Price.Enabled = false;
  1513. this.txt_Price.FlatMode = true;
  1514. this.txt_Price.Location = new System.Drawing.Point(876, 113);
  1515. this.txt_Price.Multiline = true;
  1516. this.txt_Price.Name = "txt_Price";
  1517. this.txt_Price.Size = new System.Drawing.Size(47, 19);
  1518. this.txt_Price.TabIndex = 458;
  1519. this.txt_Price.Tag = "";
  1520. this.txt_Price.Visible = false;
  1521. //
  1522. // ultraLabel73
  1523. //
  1524. this.ultraLabel73.BackColor = System.Drawing.Color.Transparent;
  1525. this.ultraLabel73.Location = new System.Drawing.Point(204, 62);
  1526. this.ultraLabel73.Name = "ultraLabel73";
  1527. this.ultraLabel73.Size = new System.Drawing.Size(56, 16);
  1528. this.ultraLabel73.TabIndex = 457;
  1529. this.ultraLabel73.Text = "实发数量";
  1530. //
  1531. // txt_YSS
  1532. //
  1533. this.txt_YSS.AutoSize = true;
  1534. this.txt_YSS.FlatMode = true;
  1535. this.txt_YSS.Location = new System.Drawing.Point(263, 59);
  1536. this.txt_YSS.Multiline = true;
  1537. this.txt_YSS.Name = "txt_YSS";
  1538. this.txt_YSS.Size = new System.Drawing.Size(118, 19);
  1539. this.txt_YSS.TabIndex = 456;
  1540. this.txt_YSS.Tag = "";
  1541. //
  1542. // ultraLabel72
  1543. //
  1544. this.ultraLabel72.BackColor = System.Drawing.Color.Transparent;
  1545. this.ultraLabel72.Location = new System.Drawing.Point(3, 62);
  1546. this.ultraLabel72.Name = "ultraLabel72";
  1547. this.ultraLabel72.Size = new System.Drawing.Size(56, 16);
  1548. this.ultraLabel72.TabIndex = 455;
  1549. this.ultraLabel72.Text = "请领数量";
  1550. //
  1551. // txt_qlsl
  1552. //
  1553. this.txt_qlsl.AutoSize = true;
  1554. this.txt_qlsl.FlatMode = true;
  1555. this.txt_qlsl.Location = new System.Drawing.Point(60, 59);
  1556. this.txt_qlsl.Name = "txt_qlsl";
  1557. this.txt_qlsl.Size = new System.Drawing.Size(129, 19);
  1558. this.txt_qlsl.TabIndex = 454;
  1559. this.txt_qlsl.Tag = "";
  1560. //
  1561. // ultraLabel29
  1562. //
  1563. this.ultraLabel29.BackColor = System.Drawing.Color.Transparent;
  1564. this.ultraLabel29.Location = new System.Drawing.Point(204, 88);
  1565. this.ultraLabel29.Name = "ultraLabel29";
  1566. this.ultraLabel29.Size = new System.Drawing.Size(56, 16);
  1567. this.ultraLabel29.TabIndex = 453;
  1568. this.ultraLabel29.Text = "供方名称";
  1569. //
  1570. // txt_GYMC
  1571. //
  1572. this.txt_GYMC.AutoSize = true;
  1573. this.txt_GYMC.FlatMode = true;
  1574. this.txt_GYMC.Location = new System.Drawing.Point(263, 84);
  1575. this.txt_GYMC.Multiline = true;
  1576. this.txt_GYMC.Name = "txt_GYMC";
  1577. this.txt_GYMC.Size = new System.Drawing.Size(118, 19);
  1578. this.txt_GYMC.TabIndex = 452;
  1579. this.txt_GYMC.Tag = "";
  1580. //
  1581. // ultraLabel28
  1582. //
  1583. this.ultraLabel28.BackColor = System.Drawing.Color.Transparent;
  1584. this.ultraLabel28.Location = new System.Drawing.Point(589, 34);
  1585. this.ultraLabel28.Name = "ultraLabel28";
  1586. this.ultraLabel28.Size = new System.Drawing.Size(56, 16);
  1587. this.ultraLabel28.TabIndex = 450;
  1588. this.ultraLabel28.Text = "计量单位";
  1589. //
  1590. // txt_JLDW
  1591. //
  1592. this.txt_JLDW.AutoSize = true;
  1593. this.txt_JLDW.FlatMode = true;
  1594. this.txt_JLDW.Location = new System.Drawing.Point(646, 31);
  1595. this.txt_JLDW.Multiline = true;
  1596. this.txt_JLDW.Name = "txt_JLDW";
  1597. this.txt_JLDW.Size = new System.Drawing.Size(58, 19);
  1598. this.txt_JLDW.TabIndex = 449;
  1599. this.txt_JLDW.Tag = "";
  1600. //
  1601. // ultraLabel15
  1602. //
  1603. this.ultraLabel15.BackColor = System.Drawing.Color.Transparent;
  1604. this.ultraLabel15.Location = new System.Drawing.Point(387, 36);
  1605. this.ultraLabel15.Name = "ultraLabel15";
  1606. this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
  1607. this.ultraLabel15.TabIndex = 448;
  1608. this.ultraLabel15.Text = "规格型号";
  1609. //
  1610. // txt_GGXH
  1611. //
  1612. this.txt_GGXH.AutoSize = true;
  1613. this.txt_GGXH.FlatMode = true;
  1614. this.txt_GGXH.Location = new System.Drawing.Point(444, 33);
  1615. this.txt_GGXH.Multiline = true;
  1616. this.txt_GGXH.Name = "txt_GGXH";
  1617. this.txt_GGXH.Size = new System.Drawing.Size(139, 19);
  1618. this.txt_GGXH.TabIndex = 447;
  1619. this.txt_GGXH.Tag = "";
  1620. //
  1621. // ultraLabel14
  1622. //
  1623. this.ultraLabel14.BackColor = System.Drawing.Color.Transparent;
  1624. this.ultraLabel14.Location = new System.Drawing.Point(204, 36);
  1625. this.ultraLabel14.Name = "ultraLabel14";
  1626. this.ultraLabel14.Size = new System.Drawing.Size(56, 16);
  1627. this.ultraLabel14.TabIndex = 446;
  1628. this.ultraLabel14.Text = "物资名称";
  1629. //
  1630. // txt_WZMC
  1631. //
  1632. this.txt_WZMC.AutoSize = true;
  1633. this.txt_WZMC.FlatMode = true;
  1634. this.txt_WZMC.Location = new System.Drawing.Point(263, 33);
  1635. this.txt_WZMC.Multiline = true;
  1636. this.txt_WZMC.Name = "txt_WZMC";
  1637. this.txt_WZMC.Size = new System.Drawing.Size(118, 19);
  1638. this.txt_WZMC.TabIndex = 445;
  1639. this.txt_WZMC.Tag = "";
  1640. //
  1641. // ultraLabel8
  1642. //
  1643. this.ultraLabel8.BackColor = System.Drawing.Color.Transparent;
  1644. this.ultraLabel8.Location = new System.Drawing.Point(788, 8);
  1645. this.ultraLabel8.Name = "ultraLabel8";
  1646. this.ultraLabel8.Size = new System.Drawing.Size(56, 16);
  1647. this.ultraLabel8.TabIndex = 444;
  1648. this.ultraLabel8.Text = "仓库名称";
  1649. //
  1650. // date_YS
  1651. //
  1652. this.date_YS.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  1653. this.date_YS.Enabled = false;
  1654. this.date_YS.FlatMode = true;
  1655. this.date_YS.Location = new System.Drawing.Point(265, 5);
  1656. this.date_YS.Name = "date_YS";
  1657. this.date_YS.Size = new System.Drawing.Size(116, 19);
  1658. this.date_YS.TabIndex = 442;
  1659. this.date_YS.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  1660. //
  1661. // ultraLabel7
  1662. //
  1663. this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
  1664. this.ultraLabel7.Location = new System.Drawing.Point(204, 5);
  1665. this.ultraLabel7.Name = "ultraLabel7";
  1666. this.ultraLabel7.Size = new System.Drawing.Size(56, 16);
  1667. this.ultraLabel7.TabIndex = 441;
  1668. this.ultraLabel7.Text = "发料日期";
  1669. //
  1670. // txt_Remark
  1671. //
  1672. this.txt_Remark.AutoSize = true;
  1673. this.txt_Remark.FlatMode = true;
  1674. this.txt_Remark.Location = new System.Drawing.Point(431, 83);
  1675. this.txt_Remark.Multiline = true;
  1676. this.txt_Remark.Name = "txt_Remark";
  1677. this.txt_Remark.Size = new System.Drawing.Size(357, 49);
  1678. this.txt_Remark.TabIndex = 440;
  1679. this.txt_Remark.Tag = "";
  1680. //
  1681. // ultraLabel2
  1682. //
  1683. this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
  1684. this.ultraLabel2.Location = new System.Drawing.Point(3, 36);
  1685. this.ultraLabel2.Name = "ultraLabel2";
  1686. this.ultraLabel2.Size = new System.Drawing.Size(89, 20);
  1687. this.ultraLabel2.TabIndex = 438;
  1688. this.ultraLabel2.Text = "物资代码";
  1689. //
  1690. // ultraLabel75
  1691. //
  1692. this.ultraLabel75.BackColor = System.Drawing.Color.Transparent;
  1693. this.ultraLabel75.Location = new System.Drawing.Point(387, 86);
  1694. this.ultraLabel75.Name = "ultraLabel75";
  1695. this.ultraLabel75.Size = new System.Drawing.Size(89, 20);
  1696. this.ultraLabel75.TabIndex = 436;
  1697. this.ultraLabel75.Text = "备注";
  1698. //
  1699. // ultraLabel71
  1700. //
  1701. this.ultraLabel71.BackColor = System.Drawing.Color.Transparent;
  1702. this.ultraLabel71.Location = new System.Drawing.Point(586, 8);
  1703. this.ultraLabel71.Name = "ultraLabel71";
  1704. this.ultraLabel71.Size = new System.Drawing.Size(89, 20);
  1705. this.ultraLabel71.TabIndex = 428;
  1706. this.ultraLabel71.Text = "仓库类别";
  1707. //
  1708. // ultraLabel1
  1709. //
  1710. this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
  1711. this.ultraLabel1.Location = new System.Drawing.Point(3, 84);
  1712. this.ultraLabel1.Name = "ultraLabel1";
  1713. this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
  1714. this.ultraLabel1.TabIndex = 363;
  1715. this.ultraLabel1.Text = "供方代码";
  1716. //
  1717. // ultraLabel4
  1718. //
  1719. this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
  1720. this.ultraLabel4.Location = new System.Drawing.Point(3, 8);
  1721. this.ultraLabel4.Name = "ultraLabel4";
  1722. this.ultraLabel4.Size = new System.Drawing.Size(56, 16);
  1723. this.ultraLabel4.TabIndex = 361;
  1724. this.ultraLabel4.Text = "领料单号";
  1725. //
  1726. // txt_BH
  1727. //
  1728. this.txt_BH.AutoSize = true;
  1729. this.txt_BH.Enabled = false;
  1730. this.txt_BH.FlatMode = true;
  1731. this.txt_BH.Location = new System.Drawing.Point(60, 5);
  1732. this.txt_BH.Name = "txt_BH";
  1733. this.txt_BH.Size = new System.Drawing.Size(129, 19);
  1734. this.txt_BH.TabIndex = 358;
  1735. this.txt_BH.Tag = "";
  1736. //
  1737. // panel2
  1738. //
  1739. this.panel2.Controls.Add(this.gd_CK);
  1740. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1741. this.panel2.Location = new System.Drawing.Point(0, 67);
  1742. this.panel2.Name = "panel2";
  1743. this.panel2.Size = new System.Drawing.Size(1169, 283);
  1744. this.panel2.TabIndex = 5;
  1745. //
  1746. // gd_CK
  1747. //
  1748. ultraGridColumn26.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1749. ultraGridColumn26.Header.Caption = "领料单号";
  1750. ultraGridColumn26.Header.VisiblePosition = 0;
  1751. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 0;
  1752. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1753. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  1754. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  1755. ultraGridColumn27.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1756. ultraGridColumn27.Header.Caption = "发料日期 ";
  1757. ultraGridColumn27.Header.VisiblePosition = 1;
  1758. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 21;
  1759. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1760. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  1761. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  1762. ultraGridColumn28.Header.Caption = "发料仓库代码";
  1763. ultraGridColumn28.Header.VisiblePosition = 2;
  1764. ultraGridColumn28.Hidden = true;
  1765. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
  1766. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1767. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
  1768. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  1769. ultraGridColumn29.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1770. ultraGridColumn29.Header.Caption = "发料仓库类别";
  1771. ultraGridColumn29.Header.VisiblePosition = 3;
  1772. ultraGridColumn29.Hidden = true;
  1773. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
  1774. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1775. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
  1776. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  1777. ultraGridColumn30.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1778. ultraGridColumn30.Header.Caption = "发料仓库";
  1779. ultraGridColumn30.Header.VisiblePosition = 4;
  1780. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 3;
  1781. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  1782. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  1783. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  1784. ultraGridColumn31.Header.Caption = "领料班组";
  1785. ultraGridColumn31.Header.VisiblePosition = 5;
  1786. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 1;
  1787. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  1788. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  1789. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  1790. ultraGridColumn32.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1791. ultraGridColumn32.Header.Caption = "物资代码";
  1792. ultraGridColumn32.Header.VisiblePosition = 6;
  1793. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 4;
  1794. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  1795. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  1796. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  1797. ultraGridColumn33.Header.Caption = "物资名称";
  1798. ultraGridColumn33.Header.VisiblePosition = 8;
  1799. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 5;
  1800. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  1801. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  1802. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  1803. ultraGridColumn34.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1804. ultraGridColumn34.Header.Caption = "规格型号";
  1805. ultraGridColumn34.Header.VisiblePosition = 9;
  1806. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 11;
  1807. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  1808. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
  1809. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
  1810. ultraGridColumn35.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1811. ultraGridColumn35.Header.Caption = "计量单位";
  1812. ultraGridColumn35.Header.VisiblePosition = 10;
  1813. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 12;
  1814. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  1815. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
  1816. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
  1817. ultraGridColumn36.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1818. ultraGridColumn36.Header.Caption = "材质";
  1819. ultraGridColumn36.Header.VisiblePosition = 11;
  1820. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 17;
  1821. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  1822. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
  1823. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
  1824. ultraGridColumn37.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1825. ultraGridColumn37.Header.Caption = "单重";
  1826. ultraGridColumn37.Header.VisiblePosition = 16;
  1827. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 20;
  1828. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  1829. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(81, 0);
  1830. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
  1831. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
  1832. ultraGridColumn38.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1833. ultraGridColumn38.Header.Caption = "计划员";
  1834. ultraGridColumn38.Header.VisiblePosition = 12;
  1835. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 23;
  1836. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  1837. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
  1838. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
  1839. ultraGridColumn39.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1840. ultraGridColumn39.Header.Caption = "请领数量";
  1841. ultraGridColumn39.Header.VisiblePosition = 14;
  1842. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 14;
  1843. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  1844. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
  1845. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
  1846. ultraGridColumn40.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1847. ultraGridColumn40.Header.Caption = "实发数量";
  1848. ultraGridColumn40.Header.VisiblePosition = 15;
  1849. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
  1850. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  1851. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
  1852. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
  1853. ultraGridColumn41.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1854. ultraGridColumn41.Header.Caption = "单价";
  1855. ultraGridColumn41.Header.VisiblePosition = 13;
  1856. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 13;
  1857. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  1858. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
  1859. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
  1860. ultraGridColumn42.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1861. ultraGridColumn42.Header.Caption = "金额";
  1862. ultraGridColumn42.Header.VisiblePosition = 17;
  1863. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 16;
  1864. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  1865. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
  1866. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
  1867. ultraGridColumn43.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1868. ultraGridColumn43.Header.Caption = "填单日期 ";
  1869. ultraGridColumn43.Header.VisiblePosition = 19;
  1870. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 22;
  1871. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  1872. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
  1873. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
  1874. ultraGridColumn44.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1875. ultraGridColumn44.Header.Caption = "领料人";
  1876. ultraGridColumn44.Header.VisiblePosition = 21;
  1877. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 24;
  1878. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  1879. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
  1880. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
  1881. ultraGridColumn45.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1882. ultraGridColumn45.Header.Caption = "供方代码";
  1883. ultraGridColumn45.Header.VisiblePosition = 22;
  1884. ultraGridColumn45.Hidden = true;
  1885. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 37;
  1886. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  1887. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
  1888. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
  1889. ultraGridColumn46.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1890. ultraGridColumn46.Header.Caption = "供方名称";
  1891. ultraGridColumn46.Header.VisiblePosition = 23;
  1892. ultraGridColumn46.Hidden = true;
  1893. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 39;
  1894. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  1895. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
  1896. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
  1897. ultraGridColumn47.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1898. ultraGridColumn47.Header.Caption = "录入人";
  1899. ultraGridColumn47.Header.VisiblePosition = 24;
  1900. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 25;
  1901. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  1902. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
  1903. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
  1904. ultraGridColumn48.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1905. ultraGridColumn48.Header.Caption = "录入日期 ";
  1906. ultraGridColumn48.Header.VisiblePosition = 20;
  1907. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 26;
  1908. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  1909. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
  1910. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
  1911. ultraGridColumn49.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1912. ultraGridColumn49.Header.Caption = "备注";
  1913. ultraGridColumn49.Header.VisiblePosition = 7;
  1914. ultraGridColumn49.RowLayoutColumnInfo.OriginX = 27;
  1915. ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
  1916. ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
  1917. ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
  1918. ultraGridColumn50.Header.Caption = "用途";
  1919. ultraGridColumn50.Header.VisiblePosition = 25;
  1920. ultraGridColumn50.RowLayoutColumnInfo.OriginX = 9;
  1921. ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
  1922. ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
  1923. ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
  1924. ultraGridColumn51.Header.Caption = "类别代码";
  1925. ultraGridColumn51.Header.VisiblePosition = 26;
  1926. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 7;
  1927. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  1928. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
  1929. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
  1930. ultraGridColumn52.Header.Caption = "类别名称";
  1931. ultraGridColumn52.Header.VisiblePosition = 27;
  1932. ultraGridColumn52.RowLayoutColumnInfo.OriginX = 7;
  1933. ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
  1934. ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
  1935. ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
  1936. appearance49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1937. appearance49.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  1938. ultraGridColumn53.CellButtonAppearance = appearance49;
  1939. ultraGridColumn53.Header.Caption = "发票号";
  1940. ultraGridColumn53.Header.VisiblePosition = 18;
  1941. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 18;
  1942. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  1943. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
  1944. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
  1945. ultraGridBand6.Columns.AddRange(new object[] {
  1946. ultraGridColumn26,
  1947. ultraGridColumn27,
  1948. ultraGridColumn28,
  1949. ultraGridColumn29,
  1950. ultraGridColumn30,
  1951. ultraGridColumn31,
  1952. ultraGridColumn32,
  1953. ultraGridColumn33,
  1954. ultraGridColumn34,
  1955. ultraGridColumn35,
  1956. ultraGridColumn36,
  1957. ultraGridColumn37,
  1958. ultraGridColumn38,
  1959. ultraGridColumn39,
  1960. ultraGridColumn40,
  1961. ultraGridColumn41,
  1962. ultraGridColumn42,
  1963. ultraGridColumn43,
  1964. ultraGridColumn44,
  1965. ultraGridColumn45,
  1966. ultraGridColumn46,
  1967. ultraGridColumn47,
  1968. ultraGridColumn48,
  1969. ultraGridColumn49,
  1970. ultraGridColumn50,
  1971. ultraGridColumn51,
  1972. ultraGridColumn52,
  1973. ultraGridColumn53});
  1974. ultraGridBand6.UseRowLayout = true;
  1975. this.gd_CK.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  1976. this.gd_CK.Dock = System.Windows.Forms.DockStyle.Fill;
  1977. this.gd_CK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1978. this.gd_CK.Location = new System.Drawing.Point(0, 0);
  1979. this.gd_CK.Name = "gd_CK";
  1980. this.gd_CK.Size = new System.Drawing.Size(1169, 283);
  1981. this.gd_CK.TabIndex = 1;
  1982. this.gd_CK.AfterRowActivate += new System.EventHandler(this.gd_CK_AfterRowActivate);
  1983. //
  1984. // ultraLabel3
  1985. //
  1986. this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
  1987. this.ultraLabel3.Location = new System.Drawing.Point(3, 55);
  1988. this.ultraLabel3.Name = "ultraLabel3";
  1989. this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
  1990. this.ultraLabel3.TabIndex = 365;
  1991. this.ultraLabel3.Text = "规格型号";
  1992. //
  1993. // ultraTextEditor1
  1994. //
  1995. this.ultraTextEditor1.AutoSize = true;
  1996. this.ultraTextEditor1.Enabled = false;
  1997. this.ultraTextEditor1.FlatMode = true;
  1998. this.ultraTextEditor1.Location = new System.Drawing.Point(60, 52);
  1999. this.ultraTextEditor1.Multiline = true;
  2000. this.ultraTextEditor1.Name = "ultraTextEditor1";
  2001. this.ultraTextEditor1.Size = new System.Drawing.Size(191, 19);
  2002. this.ultraTextEditor1.TabIndex = 364;
  2003. this.ultraTextEditor1.Tag = "";
  2004. //
  2005. // ultraLabel5
  2006. //
  2007. this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
  2008. this.ultraLabel5.Location = new System.Drawing.Point(3, 31);
  2009. this.ultraLabel5.Name = "ultraLabel5";
  2010. this.ultraLabel5.Size = new System.Drawing.Size(56, 16);
  2011. this.ultraLabel5.TabIndex = 363;
  2012. this.ultraLabel5.Text = "物资名称";
  2013. //
  2014. // ultraTextEditor2
  2015. //
  2016. this.ultraTextEditor2.AutoSize = true;
  2017. this.ultraTextEditor2.Enabled = false;
  2018. this.ultraTextEditor2.FlatMode = true;
  2019. this.ultraTextEditor2.Location = new System.Drawing.Point(60, 28);
  2020. this.ultraTextEditor2.Multiline = true;
  2021. this.ultraTextEditor2.Name = "ultraTextEditor2";
  2022. this.ultraTextEditor2.Size = new System.Drawing.Size(191, 19);
  2023. this.ultraTextEditor2.TabIndex = 362;
  2024. this.ultraTextEditor2.Tag = "";
  2025. //
  2026. // ultraLabel6
  2027. //
  2028. this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
  2029. this.ultraLabel6.Location = new System.Drawing.Point(3, 8);
  2030. this.ultraLabel6.Name = "ultraLabel6";
  2031. this.ultraLabel6.Size = new System.Drawing.Size(56, 16);
  2032. this.ultraLabel6.TabIndex = 361;
  2033. this.ultraLabel6.Text = "物资代码";
  2034. //
  2035. // ultraTextEditor3
  2036. //
  2037. this.ultraTextEditor3.AutoSize = true;
  2038. this.ultraTextEditor3.Enabled = false;
  2039. this.ultraTextEditor3.FlatMode = true;
  2040. this.ultraTextEditor3.Location = new System.Drawing.Point(60, 5);
  2041. this.ultraTextEditor3.Name = "ultraTextEditor3";
  2042. this.ultraTextEditor3.Size = new System.Drawing.Size(84, 19);
  2043. this.ultraTextEditor3.TabIndex = 358;
  2044. this.ultraTextEditor3.Tag = "";
  2045. //
  2046. // ultraComboEditor1
  2047. //
  2048. this.ultraComboEditor1.AutoSize = true;
  2049. valueListItem14.DataValue = "0";
  2050. valueListItem13.DataValue = valueListItem14;
  2051. valueListItem13.DisplayText = "";
  2052. valueListItem12.DataValue = valueListItem13;
  2053. valueListItem12.DisplayText = "";
  2054. valueListItem11.DataValue = valueListItem12;
  2055. valueListItem11.DisplayText = "";
  2056. valueListItem10.DataValue = valueListItem11;
  2057. valueListItem10.DisplayText = "";
  2058. valueListItem9.DataValue = valueListItem10;
  2059. valueListItem9.DisplayText = "";
  2060. valueListItem20.DataValue = "A";
  2061. valueListItem20.DisplayText = "A";
  2062. valueListItem19.DataValue = valueListItem20;
  2063. valueListItem19.DisplayText = "A";
  2064. valueListItem18.DataValue = valueListItem19;
  2065. valueListItem18.DisplayText = "A";
  2066. valueListItem17.DataValue = valueListItem18;
  2067. valueListItem17.DisplayText = "A";
  2068. valueListItem16.DataValue = valueListItem17;
  2069. valueListItem16.DisplayText = "A";
  2070. valueListItem15.DataValue = valueListItem16;
  2071. valueListItem15.DisplayText = "A";
  2072. valueListItem26.DataValue = "B";
  2073. valueListItem26.DisplayText = "B";
  2074. valueListItem25.DataValue = valueListItem26;
  2075. valueListItem25.DisplayText = "B";
  2076. valueListItem24.DataValue = valueListItem25;
  2077. valueListItem24.DisplayText = "B";
  2078. valueListItem23.DataValue = valueListItem24;
  2079. valueListItem23.DisplayText = "B";
  2080. valueListItem22.DataValue = valueListItem23;
  2081. valueListItem22.DisplayText = "B";
  2082. valueListItem21.DataValue = valueListItem22;
  2083. valueListItem21.DisplayText = "B";
  2084. valueListItem32.DataValue = "C";
  2085. valueListItem32.DisplayText = "C";
  2086. valueListItem31.DataValue = valueListItem32;
  2087. valueListItem31.DisplayText = "C";
  2088. valueListItem30.DataValue = valueListItem31;
  2089. valueListItem30.DisplayText = "C";
  2090. valueListItem29.DataValue = valueListItem30;
  2091. valueListItem29.DisplayText = "C";
  2092. valueListItem28.DataValue = valueListItem29;
  2093. valueListItem28.DisplayText = "C";
  2094. valueListItem27.DataValue = valueListItem28;
  2095. valueListItem27.DisplayText = "C";
  2096. this.ultraComboEditor1.Items.Add(valueListItem9);
  2097. this.ultraComboEditor1.Items.Add(valueListItem15);
  2098. this.ultraComboEditor1.Items.Add(valueListItem21);
  2099. this.ultraComboEditor1.Items.Add(valueListItem27);
  2100. this.ultraComboEditor1.Location = new System.Drawing.Point(340, 5);
  2101. this.ultraComboEditor1.Name = "ultraComboEditor1";
  2102. this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
  2103. this.ultraComboEditor1.TabIndex = 369;
  2104. //
  2105. // ultraLabel9
  2106. //
  2107. this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
  2108. this.ultraLabel9.Location = new System.Drawing.Point(289, 8);
  2109. this.ultraLabel9.Name = "ultraLabel9";
  2110. this.ultraLabel9.Size = new System.Drawing.Size(56, 16);
  2111. this.ultraLabel9.TabIndex = 368;
  2112. this.ultraLabel9.Text = "物资类别";
  2113. //
  2114. // ultraLabel10
  2115. //
  2116. this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
  2117. this.ultraLabel10.Location = new System.Drawing.Point(3, 77);
  2118. this.ultraLabel10.Name = "ultraLabel10";
  2119. this.ultraLabel10.Size = new System.Drawing.Size(56, 16);
  2120. this.ultraLabel10.TabIndex = 367;
  2121. this.ultraLabel10.Text = "材质";
  2122. //
  2123. // ultraTextEditor4
  2124. //
  2125. this.ultraTextEditor4.AutoSize = true;
  2126. this.ultraTextEditor4.Enabled = false;
  2127. this.ultraTextEditor4.FlatMode = true;
  2128. this.ultraTextEditor4.Location = new System.Drawing.Point(60, 74);
  2129. this.ultraTextEditor4.Multiline = true;
  2130. this.ultraTextEditor4.Name = "ultraTextEditor4";
  2131. this.ultraTextEditor4.Size = new System.Drawing.Size(191, 19);
  2132. this.ultraTextEditor4.TabIndex = 366;
  2133. this.ultraTextEditor4.Tag = "";
  2134. //
  2135. // ultraLabel11
  2136. //
  2137. this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
  2138. this.ultraLabel11.Location = new System.Drawing.Point(3, 55);
  2139. this.ultraLabel11.Name = "ultraLabel11";
  2140. this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
  2141. this.ultraLabel11.TabIndex = 365;
  2142. this.ultraLabel11.Text = "规格型号";
  2143. //
  2144. // ultraTextEditor5
  2145. //
  2146. this.ultraTextEditor5.AutoSize = true;
  2147. this.ultraTextEditor5.Enabled = false;
  2148. this.ultraTextEditor5.FlatMode = true;
  2149. this.ultraTextEditor5.Location = new System.Drawing.Point(60, 52);
  2150. this.ultraTextEditor5.Multiline = true;
  2151. this.ultraTextEditor5.Name = "ultraTextEditor5";
  2152. this.ultraTextEditor5.Size = new System.Drawing.Size(191, 19);
  2153. this.ultraTextEditor5.TabIndex = 364;
  2154. this.ultraTextEditor5.Tag = "";
  2155. //
  2156. // ultraLabel12
  2157. //
  2158. this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
  2159. this.ultraLabel12.Location = new System.Drawing.Point(3, 31);
  2160. this.ultraLabel12.Name = "ultraLabel12";
  2161. this.ultraLabel12.Size = new System.Drawing.Size(56, 16);
  2162. this.ultraLabel12.TabIndex = 363;
  2163. this.ultraLabel12.Text = "物资名称";
  2164. //
  2165. // ultraTextEditor6
  2166. //
  2167. this.ultraTextEditor6.AutoSize = true;
  2168. this.ultraTextEditor6.Enabled = false;
  2169. this.ultraTextEditor6.FlatMode = true;
  2170. this.ultraTextEditor6.Location = new System.Drawing.Point(60, 28);
  2171. this.ultraTextEditor6.Multiline = true;
  2172. this.ultraTextEditor6.Name = "ultraTextEditor6";
  2173. this.ultraTextEditor6.Size = new System.Drawing.Size(191, 19);
  2174. this.ultraTextEditor6.TabIndex = 362;
  2175. this.ultraTextEditor6.Tag = "";
  2176. //
  2177. // ultraLabel13
  2178. //
  2179. this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
  2180. this.ultraLabel13.Location = new System.Drawing.Point(3, 8);
  2181. this.ultraLabel13.Name = "ultraLabel13";
  2182. this.ultraLabel13.Size = new System.Drawing.Size(56, 16);
  2183. this.ultraLabel13.TabIndex = 361;
  2184. this.ultraLabel13.Text = "物资代码";
  2185. //
  2186. // ultraTextEditor7
  2187. //
  2188. this.ultraTextEditor7.AutoSize = true;
  2189. this.ultraTextEditor7.Enabled = false;
  2190. this.ultraTextEditor7.FlatMode = true;
  2191. this.ultraTextEditor7.Location = new System.Drawing.Point(60, 5);
  2192. this.ultraTextEditor7.Name = "ultraTextEditor7";
  2193. this.ultraTextEditor7.Size = new System.Drawing.Size(84, 19);
  2194. this.ultraTextEditor7.TabIndex = 358;
  2195. this.ultraTextEditor7.Tag = "";
  2196. //
  2197. // ultraLabel18
  2198. //
  2199. this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
  2200. this.ultraLabel18.Location = new System.Drawing.Point(3, 99);
  2201. this.ultraLabel18.Name = "ultraLabel18";
  2202. this.ultraLabel18.Size = new System.Drawing.Size(56, 16);
  2203. this.ultraLabel18.TabIndex = 377;
  2204. this.ultraLabel18.Text = "最高限价";
  2205. //
  2206. // ultraTextEditor9
  2207. //
  2208. this.ultraTextEditor9.AutoSize = true;
  2209. this.ultraTextEditor9.Enabled = false;
  2210. this.ultraTextEditor9.FlatMode = true;
  2211. this.ultraTextEditor9.Location = new System.Drawing.Point(60, 96);
  2212. this.ultraTextEditor9.Name = "ultraTextEditor9";
  2213. this.ultraTextEditor9.Size = new System.Drawing.Size(84, 19);
  2214. this.ultraTextEditor9.TabIndex = 376;
  2215. this.ultraTextEditor9.Tag = "";
  2216. //
  2217. // ultraLabel19
  2218. //
  2219. this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
  2220. this.ultraLabel19.Location = new System.Drawing.Point(289, 77);
  2221. this.ultraLabel19.Name = "ultraLabel19";
  2222. this.ultraLabel19.Size = new System.Drawing.Size(56, 16);
  2223. this.ultraLabel19.TabIndex = 375;
  2224. this.ultraLabel19.Text = "最高限价";
  2225. //
  2226. // ultraTextEditor10
  2227. //
  2228. this.ultraTextEditor10.AutoSize = true;
  2229. this.ultraTextEditor10.Enabled = false;
  2230. this.ultraTextEditor10.FlatMode = true;
  2231. this.ultraTextEditor10.Location = new System.Drawing.Point(346, 74);
  2232. this.ultraTextEditor10.Name = "ultraTextEditor10";
  2233. this.ultraTextEditor10.Size = new System.Drawing.Size(84, 19);
  2234. this.ultraTextEditor10.TabIndex = 374;
  2235. this.ultraTextEditor10.Tag = "";
  2236. //
  2237. // ultraLabel20
  2238. //
  2239. this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
  2240. this.ultraLabel20.Location = new System.Drawing.Point(289, 55);
  2241. this.ultraLabel20.Name = "ultraLabel20";
  2242. this.ultraLabel20.Size = new System.Drawing.Size(56, 16);
  2243. this.ultraLabel20.TabIndex = 373;
  2244. this.ultraLabel20.Text = "预估价";
  2245. //
  2246. // ultraTextEditor11
  2247. //
  2248. this.ultraTextEditor11.AutoSize = true;
  2249. this.ultraTextEditor11.Enabled = false;
  2250. this.ultraTextEditor11.FlatMode = true;
  2251. this.ultraTextEditor11.Location = new System.Drawing.Point(346, 52);
  2252. this.ultraTextEditor11.Name = "ultraTextEditor11";
  2253. this.ultraTextEditor11.Size = new System.Drawing.Size(84, 19);
  2254. this.ultraTextEditor11.TabIndex = 372;
  2255. this.ultraTextEditor11.Tag = "";
  2256. //
  2257. // ultraLabel21
  2258. //
  2259. this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
  2260. this.ultraLabel21.Location = new System.Drawing.Point(289, 33);
  2261. this.ultraLabel21.Name = "ultraLabel21";
  2262. this.ultraLabel21.Size = new System.Drawing.Size(56, 16);
  2263. this.ultraLabel21.TabIndex = 371;
  2264. this.ultraLabel21.Text = "计划价";
  2265. //
  2266. // ultraTextEditor12
  2267. //
  2268. this.ultraTextEditor12.AutoSize = true;
  2269. this.ultraTextEditor12.Enabled = false;
  2270. this.ultraTextEditor12.FlatMode = true;
  2271. this.ultraTextEditor12.Location = new System.Drawing.Point(346, 30);
  2272. this.ultraTextEditor12.Name = "ultraTextEditor12";
  2273. this.ultraTextEditor12.Size = new System.Drawing.Size(84, 19);
  2274. this.ultraTextEditor12.TabIndex = 370;
  2275. this.ultraTextEditor12.Tag = "";
  2276. //
  2277. // ultraComboEditor2
  2278. //
  2279. this.ultraComboEditor2.AutoSize = true;
  2280. valueListItem38.DataValue = "0";
  2281. valueListItem37.DataValue = valueListItem38;
  2282. valueListItem37.DisplayText = "";
  2283. valueListItem36.DataValue = valueListItem37;
  2284. valueListItem36.DisplayText = "";
  2285. valueListItem35.DataValue = valueListItem36;
  2286. valueListItem35.DisplayText = "";
  2287. valueListItem34.DataValue = valueListItem35;
  2288. valueListItem34.DisplayText = "";
  2289. valueListItem33.DataValue = valueListItem34;
  2290. valueListItem33.DisplayText = "";
  2291. valueListItem44.DataValue = "A";
  2292. valueListItem44.DisplayText = "A";
  2293. valueListItem43.DataValue = valueListItem44;
  2294. valueListItem43.DisplayText = "A";
  2295. valueListItem42.DataValue = valueListItem43;
  2296. valueListItem42.DisplayText = "A";
  2297. valueListItem41.DataValue = valueListItem42;
  2298. valueListItem41.DisplayText = "A";
  2299. valueListItem40.DataValue = valueListItem41;
  2300. valueListItem40.DisplayText = "A";
  2301. valueListItem39.DataValue = valueListItem40;
  2302. valueListItem39.DisplayText = "A";
  2303. valueListItem50.DataValue = "B";
  2304. valueListItem50.DisplayText = "B";
  2305. valueListItem49.DataValue = valueListItem50;
  2306. valueListItem49.DisplayText = "B";
  2307. valueListItem48.DataValue = valueListItem49;
  2308. valueListItem48.DisplayText = "B";
  2309. valueListItem47.DataValue = valueListItem48;
  2310. valueListItem47.DisplayText = "B";
  2311. valueListItem46.DataValue = valueListItem47;
  2312. valueListItem46.DisplayText = "B";
  2313. valueListItem45.DataValue = valueListItem46;
  2314. valueListItem45.DisplayText = "B";
  2315. valueListItem56.DataValue = "C";
  2316. valueListItem56.DisplayText = "C";
  2317. valueListItem55.DataValue = valueListItem56;
  2318. valueListItem55.DisplayText = "C";
  2319. valueListItem54.DataValue = valueListItem55;
  2320. valueListItem54.DisplayText = "C";
  2321. valueListItem53.DataValue = valueListItem54;
  2322. valueListItem53.DisplayText = "C";
  2323. valueListItem52.DataValue = valueListItem53;
  2324. valueListItem52.DisplayText = "C";
  2325. valueListItem51.DataValue = valueListItem52;
  2326. valueListItem51.DisplayText = "C";
  2327. this.ultraComboEditor2.Items.Add(valueListItem33);
  2328. this.ultraComboEditor2.Items.Add(valueListItem39);
  2329. this.ultraComboEditor2.Items.Add(valueListItem45);
  2330. this.ultraComboEditor2.Items.Add(valueListItem51);
  2331. this.ultraComboEditor2.Location = new System.Drawing.Point(346, 5);
  2332. this.ultraComboEditor2.Name = "ultraComboEditor2";
  2333. this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
  2334. this.ultraComboEditor2.TabIndex = 369;
  2335. //
  2336. // ultraLabel22
  2337. //
  2338. this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
  2339. this.ultraLabel22.Location = new System.Drawing.Point(289, 8);
  2340. this.ultraLabel22.Name = "ultraLabel22";
  2341. this.ultraLabel22.Size = new System.Drawing.Size(56, 16);
  2342. this.ultraLabel22.TabIndex = 368;
  2343. this.ultraLabel22.Text = "物资类别";
  2344. //
  2345. // ultraLabel23
  2346. //
  2347. this.ultraLabel23.BackColor = System.Drawing.Color.Transparent;
  2348. this.ultraLabel23.Location = new System.Drawing.Point(3, 77);
  2349. this.ultraLabel23.Name = "ultraLabel23";
  2350. this.ultraLabel23.Size = new System.Drawing.Size(56, 16);
  2351. this.ultraLabel23.TabIndex = 367;
  2352. this.ultraLabel23.Text = "材质";
  2353. //
  2354. // ultraTextEditor13
  2355. //
  2356. this.ultraTextEditor13.AutoSize = true;
  2357. this.ultraTextEditor13.Enabled = false;
  2358. this.ultraTextEditor13.FlatMode = true;
  2359. this.ultraTextEditor13.Location = new System.Drawing.Point(60, 74);
  2360. this.ultraTextEditor13.Multiline = true;
  2361. this.ultraTextEditor13.Name = "ultraTextEditor13";
  2362. this.ultraTextEditor13.Size = new System.Drawing.Size(191, 19);
  2363. this.ultraTextEditor13.TabIndex = 366;
  2364. this.ultraTextEditor13.Tag = "";
  2365. //
  2366. // ultraLabel24
  2367. //
  2368. this.ultraLabel24.BackColor = System.Drawing.Color.Transparent;
  2369. this.ultraLabel24.Location = new System.Drawing.Point(3, 55);
  2370. this.ultraLabel24.Name = "ultraLabel24";
  2371. this.ultraLabel24.Size = new System.Drawing.Size(56, 16);
  2372. this.ultraLabel24.TabIndex = 365;
  2373. this.ultraLabel24.Text = "规格型号";
  2374. //
  2375. // ultraTextEditor14
  2376. //
  2377. this.ultraTextEditor14.AutoSize = true;
  2378. this.ultraTextEditor14.Enabled = false;
  2379. this.ultraTextEditor14.FlatMode = true;
  2380. this.ultraTextEditor14.Location = new System.Drawing.Point(60, 52);
  2381. this.ultraTextEditor14.Multiline = true;
  2382. this.ultraTextEditor14.Name = "ultraTextEditor14";
  2383. this.ultraTextEditor14.Size = new System.Drawing.Size(191, 19);
  2384. this.ultraTextEditor14.TabIndex = 364;
  2385. this.ultraTextEditor14.Tag = "";
  2386. //
  2387. // ultraLabel25
  2388. //
  2389. this.ultraLabel25.BackColor = System.Drawing.Color.Transparent;
  2390. this.ultraLabel25.Location = new System.Drawing.Point(3, 31);
  2391. this.ultraLabel25.Name = "ultraLabel25";
  2392. this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
  2393. this.ultraLabel25.TabIndex = 363;
  2394. this.ultraLabel25.Text = "物资名称";
  2395. //
  2396. // ultraTextEditor15
  2397. //
  2398. this.ultraTextEditor15.AutoSize = true;
  2399. this.ultraTextEditor15.Enabled = false;
  2400. this.ultraTextEditor15.FlatMode = true;
  2401. this.ultraTextEditor15.Location = new System.Drawing.Point(60, 28);
  2402. this.ultraTextEditor15.Multiline = true;
  2403. this.ultraTextEditor15.Name = "ultraTextEditor15";
  2404. this.ultraTextEditor15.Size = new System.Drawing.Size(191, 19);
  2405. this.ultraTextEditor15.TabIndex = 362;
  2406. this.ultraTextEditor15.Tag = "";
  2407. //
  2408. // ultraLabel26
  2409. //
  2410. this.ultraLabel26.BackColor = System.Drawing.Color.Transparent;
  2411. this.ultraLabel26.Location = new System.Drawing.Point(3, 8);
  2412. this.ultraLabel26.Name = "ultraLabel26";
  2413. this.ultraLabel26.Size = new System.Drawing.Size(56, 16);
  2414. this.ultraLabel26.TabIndex = 361;
  2415. this.ultraLabel26.Text = "物资代码";
  2416. //
  2417. // ultraTextEditor16
  2418. //
  2419. this.ultraTextEditor16.AutoSize = true;
  2420. this.ultraTextEditor16.Enabled = false;
  2421. this.ultraTextEditor16.FlatMode = true;
  2422. this.ultraTextEditor16.Location = new System.Drawing.Point(60, 5);
  2423. this.ultraTextEditor16.Name = "ultraTextEditor16";
  2424. this.ultraTextEditor16.Size = new System.Drawing.Size(84, 19);
  2425. this.ultraTextEditor16.TabIndex = 358;
  2426. this.ultraTextEditor16.Tag = "";
  2427. //
  2428. // ultraLabel16
  2429. //
  2430. this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
  2431. this.ultraLabel16.Location = new System.Drawing.Point(261, 33);
  2432. this.ultraLabel16.Name = "ultraLabel16";
  2433. this.ultraLabel16.Size = new System.Drawing.Size(118, 18);
  2434. this.ultraLabel16.TabIndex = 405;
  2435. this.ultraLabel16.Text = "委托代理人身份证号";
  2436. //
  2437. // ultraTextEditor8
  2438. //
  2439. this.ultraTextEditor8.AutoSize = true;
  2440. this.ultraTextEditor8.FlatMode = true;
  2441. this.ultraTextEditor8.Location = new System.Drawing.Point(385, 30);
  2442. this.ultraTextEditor8.Multiline = true;
  2443. this.ultraTextEditor8.Name = "ultraTextEditor8";
  2444. this.ultraTextEditor8.Size = new System.Drawing.Size(91, 19);
  2445. this.ultraTextEditor8.TabIndex = 404;
  2446. this.ultraTextEditor8.Tag = "";
  2447. //
  2448. // ultraLabel17
  2449. //
  2450. this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
  2451. this.ultraLabel17.Location = new System.Drawing.Point(4, 99);
  2452. this.ultraLabel17.Name = "ultraLabel17";
  2453. this.ultraLabel17.Size = new System.Drawing.Size(109, 19);
  2454. this.ultraLabel17.TabIndex = 403;
  2455. this.ultraLabel17.Text = "法人代表身份证号";
  2456. //
  2457. // ultraTextEditor18
  2458. //
  2459. this.ultraTextEditor18.AutoSize = true;
  2460. this.ultraTextEditor18.FlatMode = true;
  2461. this.ultraTextEditor18.Location = new System.Drawing.Point(112, 96);
  2462. this.ultraTextEditor18.Multiline = true;
  2463. this.ultraTextEditor18.Name = "ultraTextEditor18";
  2464. this.ultraTextEditor18.Size = new System.Drawing.Size(139, 19);
  2465. this.ultraTextEditor18.TabIndex = 402;
  2466. this.ultraTextEditor18.Tag = "";
  2467. //
  2468. // ultraLabel27
  2469. //
  2470. this.ultraLabel27.BackColor = System.Drawing.Color.Transparent;
  2471. this.ultraLabel27.Location = new System.Drawing.Point(261, 7);
  2472. this.ultraLabel27.Name = "ultraLabel27";
  2473. this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
  2474. this.ultraLabel27.TabIndex = 401;
  2475. this.ultraLabel27.Text = "委托代理人";
  2476. //
  2477. // ultraTextEditor19
  2478. //
  2479. this.ultraTextEditor19.AutoSize = true;
  2480. this.ultraTextEditor19.FlatMode = true;
  2481. this.ultraTextEditor19.Location = new System.Drawing.Point(333, 4);
  2482. this.ultraTextEditor19.Multiline = true;
  2483. this.ultraTextEditor19.Name = "ultraTextEditor19";
  2484. this.ultraTextEditor19.Size = new System.Drawing.Size(143, 19);
  2485. this.ultraTextEditor19.TabIndex = 400;
  2486. this.ultraTextEditor19.Tag = "";
  2487. //
  2488. // ultraTextEditor20
  2489. //
  2490. this.ultraTextEditor20.AutoSize = true;
  2491. this.ultraTextEditor20.FlatMode = true;
  2492. this.ultraTextEditor20.Location = new System.Drawing.Point(927, 28);
  2493. this.ultraTextEditor20.Multiline = true;
  2494. this.ultraTextEditor20.Name = "ultraTextEditor20";
  2495. this.ultraTextEditor20.Size = new System.Drawing.Size(173, 85);
  2496. this.ultraTextEditor20.TabIndex = 399;
  2497. this.ultraTextEditor20.Tag = "";
  2498. //
  2499. // ultraComboEditor3
  2500. //
  2501. this.ultraComboEditor3.AutoSize = true;
  2502. valueListItem62.DataValue = "0";
  2503. valueListItem62.DisplayText = "非以旧换新";
  2504. valueListItem61.DataValue = valueListItem62;
  2505. valueListItem61.DisplayText = "非以旧换新";
  2506. valueListItem60.DataValue = valueListItem61;
  2507. valueListItem60.DisplayText = "非以旧换新";
  2508. valueListItem59.DataValue = valueListItem60;
  2509. valueListItem59.DisplayText = "非以旧换新";
  2510. valueListItem58.DataValue = valueListItem59;
  2511. valueListItem58.DisplayText = "非以旧换新";
  2512. valueListItem57.DataValue = valueListItem58;
  2513. valueListItem57.DisplayText = "非以旧换新";
  2514. valueListItem68.DataValue = "1";
  2515. valueListItem68.DisplayText = "以旧换新";
  2516. valueListItem67.DataValue = valueListItem68;
  2517. valueListItem67.DisplayText = "以旧换新";
  2518. valueListItem66.DataValue = valueListItem67;
  2519. valueListItem66.DisplayText = "以旧换新";
  2520. valueListItem65.DataValue = valueListItem66;
  2521. valueListItem65.DisplayText = "以旧换新";
  2522. valueListItem64.DataValue = valueListItem65;
  2523. valueListItem64.DisplayText = "以旧换新";
  2524. valueListItem63.DataValue = valueListItem64;
  2525. valueListItem63.DisplayText = "以旧换新";
  2526. this.ultraComboEditor3.Items.Add(valueListItem57);
  2527. this.ultraComboEditor3.Items.Add(valueListItem63);
  2528. this.ultraComboEditor3.Location = new System.Drawing.Point(962, 2);
  2529. this.ultraComboEditor3.Name = "ultraComboEditor3";
  2530. this.ultraComboEditor3.Size = new System.Drawing.Size(120, 21);
  2531. this.ultraComboEditor3.TabIndex = 398;
  2532. //
  2533. // ultraLabel37
  2534. //
  2535. this.ultraLabel37.BackColor = System.Drawing.Color.Transparent;
  2536. this.ultraLabel37.Location = new System.Drawing.Point(886, 5);
  2537. this.ultraLabel37.Name = "ultraLabel37";
  2538. this.ultraLabel37.Size = new System.Drawing.Size(89, 20);
  2539. this.ultraLabel37.TabIndex = 397;
  2540. this.ultraLabel37.Text = "是否以旧换新";
  2541. //
  2542. // ultraComboEditor4
  2543. //
  2544. this.ultraComboEditor4.AutoSize = true;
  2545. valueListItem74.DataValue = "0";
  2546. valueListItem74.DisplayText = "非招标物资";
  2547. valueListItem73.DataValue = valueListItem74;
  2548. valueListItem73.DisplayText = "非招标物资";
  2549. valueListItem72.DataValue = valueListItem73;
  2550. valueListItem72.DisplayText = "非招标物资";
  2551. valueListItem71.DataValue = valueListItem72;
  2552. valueListItem71.DisplayText = "非招标物资";
  2553. valueListItem70.DataValue = valueListItem71;
  2554. valueListItem70.DisplayText = "非招标物资";
  2555. valueListItem69.DataValue = valueListItem70;
  2556. valueListItem69.DisplayText = "非招标物资";
  2557. valueListItem80.DataValue = "1";
  2558. valueListItem80.DisplayText = "招标物资";
  2559. valueListItem79.DataValue = valueListItem80;
  2560. valueListItem79.DisplayText = "招标物资";
  2561. valueListItem78.DataValue = valueListItem79;
  2562. valueListItem78.DisplayText = "招标物资";
  2563. valueListItem77.DataValue = valueListItem78;
  2564. valueListItem77.DisplayText = "招标物资";
  2565. valueListItem76.DataValue = valueListItem77;
  2566. valueListItem76.DisplayText = "招标物资";
  2567. valueListItem75.DataValue = valueListItem76;
  2568. valueListItem75.DisplayText = "招标物资";
  2569. this.ultraComboEditor4.Items.Add(valueListItem69);
  2570. this.ultraComboEditor4.Items.Add(valueListItem75);
  2571. this.ultraComboEditor4.Location = new System.Drawing.Point(760, 73);
  2572. this.ultraComboEditor4.Name = "ultraComboEditor4";
  2573. this.ultraComboEditor4.Size = new System.Drawing.Size(120, 21);
  2574. this.ultraComboEditor4.TabIndex = 396;
  2575. //
  2576. // ultraLabel38
  2577. //
  2578. this.ultraLabel38.BackColor = System.Drawing.Color.Transparent;
  2579. this.ultraLabel38.Location = new System.Drawing.Point(684, 76);
  2580. this.ultraLabel38.Name = "ultraLabel38";
  2581. this.ultraLabel38.Size = new System.Drawing.Size(89, 20);
  2582. this.ultraLabel38.TabIndex = 395;
  2583. this.ultraLabel38.Text = "是否招标物资";
  2584. //
  2585. // ultraComboEditor5
  2586. //
  2587. this.ultraComboEditor5.AutoSize = true;
  2588. valueListItem86.DataValue = "0";
  2589. valueListItem86.DisplayText = "非修复物资";
  2590. valueListItem85.DataValue = valueListItem86;
  2591. valueListItem85.DisplayText = "非修复物资";
  2592. valueListItem84.DataValue = valueListItem85;
  2593. valueListItem84.DisplayText = "非修复物资";
  2594. valueListItem83.DataValue = valueListItem84;
  2595. valueListItem83.DisplayText = "非修复物资";
  2596. valueListItem82.DataValue = valueListItem83;
  2597. valueListItem82.DisplayText = "非修复物资";
  2598. valueListItem81.DataValue = valueListItem82;
  2599. valueListItem81.DisplayText = "非修复物资";
  2600. valueListItem92.DataValue = "1";
  2601. valueListItem92.DisplayText = "修复物资";
  2602. valueListItem91.DataValue = valueListItem92;
  2603. valueListItem91.DisplayText = "修复物资";
  2604. valueListItem90.DataValue = valueListItem91;
  2605. valueListItem90.DisplayText = "修复物资";
  2606. valueListItem89.DataValue = valueListItem90;
  2607. valueListItem89.DisplayText = "修复物资";
  2608. valueListItem88.DataValue = valueListItem89;
  2609. valueListItem88.DisplayText = "修复物资";
  2610. valueListItem87.DataValue = valueListItem88;
  2611. valueListItem87.DisplayText = "修复物资";
  2612. this.ultraComboEditor5.Items.Add(valueListItem81);
  2613. this.ultraComboEditor5.Items.Add(valueListItem87);
  2614. this.ultraComboEditor5.Location = new System.Drawing.Point(760, 49);
  2615. this.ultraComboEditor5.Name = "ultraComboEditor5";
  2616. this.ultraComboEditor5.Size = new System.Drawing.Size(120, 21);
  2617. this.ultraComboEditor5.TabIndex = 394;
  2618. //
  2619. // ultraLabel39
  2620. //
  2621. this.ultraLabel39.BackColor = System.Drawing.Color.Transparent;
  2622. this.ultraLabel39.Location = new System.Drawing.Point(684, 52);
  2623. this.ultraLabel39.Name = "ultraLabel39";
  2624. this.ultraLabel39.Size = new System.Drawing.Size(89, 20);
  2625. this.ultraLabel39.TabIndex = 393;
  2626. this.ultraLabel39.Text = "是否修复物资";
  2627. //
  2628. // ultraComboEditor6
  2629. //
  2630. this.ultraComboEditor6.AutoSize = true;
  2631. valueListItem98.DataValue = "0";
  2632. valueListItem98.DisplayText = "不包安装";
  2633. valueListItem97.DataValue = valueListItem98;
  2634. valueListItem97.DisplayText = "不包安装";
  2635. valueListItem96.DataValue = valueListItem97;
  2636. valueListItem96.DisplayText = "不包安装";
  2637. valueListItem95.DataValue = valueListItem96;
  2638. valueListItem95.DisplayText = "不包安装";
  2639. valueListItem94.DataValue = valueListItem95;
  2640. valueListItem94.DisplayText = "不包安装";
  2641. valueListItem93.DataValue = valueListItem94;
  2642. valueListItem93.DisplayText = "不包安装";
  2643. valueListItem104.DataValue = "1";
  2644. valueListItem104.DisplayText = "包安装";
  2645. valueListItem103.DataValue = valueListItem104;
  2646. valueListItem103.DisplayText = "包安装";
  2647. valueListItem102.DataValue = valueListItem103;
  2648. valueListItem102.DisplayText = "包安装";
  2649. valueListItem101.DataValue = valueListItem102;
  2650. valueListItem101.DisplayText = "包安装";
  2651. valueListItem100.DataValue = valueListItem101;
  2652. valueListItem100.DisplayText = "包安装";
  2653. valueListItem99.DataValue = valueListItem100;
  2654. valueListItem99.DisplayText = "包安装";
  2655. this.ultraComboEditor6.Items.Add(valueListItem93);
  2656. this.ultraComboEditor6.Items.Add(valueListItem99);
  2657. this.ultraComboEditor6.Location = new System.Drawing.Point(760, 26);
  2658. this.ultraComboEditor6.Name = "ultraComboEditor6";
  2659. this.ultraComboEditor6.Size = new System.Drawing.Size(120, 21);
  2660. this.ultraComboEditor6.TabIndex = 392;
  2661. //
  2662. // ultraLabel40
  2663. //
  2664. this.ultraLabel40.BackColor = System.Drawing.Color.Transparent;
  2665. this.ultraLabel40.Location = new System.Drawing.Point(684, 29);
  2666. this.ultraLabel40.Name = "ultraLabel40";
  2667. this.ultraLabel40.Size = new System.Drawing.Size(89, 20);
  2668. this.ultraLabel40.TabIndex = 391;
  2669. this.ultraLabel40.Text = "是否包安装";
  2670. //
  2671. // ultraComboEditor7
  2672. //
  2673. this.ultraComboEditor7.AutoSize = true;
  2674. valueListItem110.DataValue = "0";
  2675. valueListItem110.DisplayText = "非备库物资";
  2676. valueListItem109.DataValue = valueListItem110;
  2677. valueListItem109.DisplayText = "非备库物资";
  2678. valueListItem108.DataValue = valueListItem109;
  2679. valueListItem108.DisplayText = "非备库物资";
  2680. valueListItem107.DataValue = valueListItem108;
  2681. valueListItem107.DisplayText = "非备库物资";
  2682. valueListItem106.DataValue = valueListItem107;
  2683. valueListItem106.DisplayText = "非备库物资";
  2684. valueListItem105.DataValue = valueListItem106;
  2685. valueListItem105.DisplayText = "非备库物资";
  2686. valueListItem116.DataValue = "1";
  2687. valueListItem116.DisplayText = "备库物资";
  2688. valueListItem115.DataValue = valueListItem116;
  2689. valueListItem115.DisplayText = "备库物资";
  2690. valueListItem114.DataValue = valueListItem115;
  2691. valueListItem114.DisplayText = "备库物资";
  2692. valueListItem113.DataValue = valueListItem114;
  2693. valueListItem113.DisplayText = "备库物资";
  2694. valueListItem112.DataValue = valueListItem113;
  2695. valueListItem112.DisplayText = "备库物资";
  2696. valueListItem111.DataValue = valueListItem112;
  2697. valueListItem111.DisplayText = "备库物资";
  2698. this.ultraComboEditor7.Items.Add(valueListItem105);
  2699. this.ultraComboEditor7.Items.Add(valueListItem111);
  2700. this.ultraComboEditor7.Location = new System.Drawing.Point(760, 3);
  2701. this.ultraComboEditor7.Name = "ultraComboEditor7";
  2702. this.ultraComboEditor7.Size = new System.Drawing.Size(120, 21);
  2703. this.ultraComboEditor7.TabIndex = 390;
  2704. //
  2705. // ultraLabel41
  2706. //
  2707. this.ultraLabel41.BackColor = System.Drawing.Color.Transparent;
  2708. this.ultraLabel41.Location = new System.Drawing.Point(684, 6);
  2709. this.ultraLabel41.Name = "ultraLabel41";
  2710. this.ultraLabel41.Size = new System.Drawing.Size(89, 20);
  2711. this.ultraLabel41.TabIndex = 389;
  2712. this.ultraLabel41.Text = "是否备库物资";
  2713. //
  2714. // ultraComboEditor8
  2715. //
  2716. this.ultraComboEditor8.AutoSize = true;
  2717. valueListItem122.DataValue = "0";
  2718. valueListItem122.DisplayText = "正在使用的物资";
  2719. valueListItem121.DataValue = valueListItem122;
  2720. valueListItem121.DisplayText = "正在使用的物资";
  2721. valueListItem120.DataValue = valueListItem121;
  2722. valueListItem120.DisplayText = "正在使用的物资";
  2723. valueListItem119.DataValue = valueListItem120;
  2724. valueListItem119.DisplayText = "正在使用的物资";
  2725. valueListItem118.DataValue = valueListItem119;
  2726. valueListItem118.DisplayText = "正在使用的物资";
  2727. valueListItem117.DataValue = valueListItem118;
  2728. valueListItem117.DisplayText = "正在使用的物资";
  2729. valueListItem128.DataValue = "1";
  2730. valueListItem128.DisplayText = "已废除的物资";
  2731. valueListItem127.DataValue = valueListItem128;
  2732. valueListItem127.DisplayText = "已废除的物资";
  2733. valueListItem126.DataValue = valueListItem127;
  2734. valueListItem126.DisplayText = "已废除的物资";
  2735. valueListItem125.DataValue = valueListItem126;
  2736. valueListItem125.DisplayText = "已废除的物资";
  2737. valueListItem124.DataValue = valueListItem125;
  2738. valueListItem124.DisplayText = "已废除的物资";
  2739. valueListItem123.DataValue = valueListItem124;
  2740. valueListItem123.DisplayText = "已废除的物资";
  2741. this.ultraComboEditor8.Items.Add(valueListItem117);
  2742. this.ultraComboEditor8.Items.Add(valueListItem123);
  2743. this.ultraComboEditor8.Location = new System.Drawing.Point(584, 76);
  2744. this.ultraComboEditor8.Name = "ultraComboEditor8";
  2745. this.ultraComboEditor8.Size = new System.Drawing.Size(94, 21);
  2746. this.ultraComboEditor8.TabIndex = 388;
  2747. //
  2748. // ultraLabel42
  2749. //
  2750. this.ultraLabel42.BackColor = System.Drawing.Color.Transparent;
  2751. this.ultraLabel42.Location = new System.Drawing.Point(482, 79);
  2752. this.ultraLabel42.Name = "ultraLabel42";
  2753. this.ultraLabel42.Size = new System.Drawing.Size(117, 18);
  2754. this.ultraLabel42.TabIndex = 387;
  2755. this.ultraLabel42.Text = "是否废除的物资";
  2756. //
  2757. // ultraComboEditor9
  2758. //
  2759. this.ultraComboEditor9.AutoSize = true;
  2760. valueListItem134.DataValue = "0";
  2761. valueListItem134.DisplayText = "不允许负数发";
  2762. valueListItem133.DataValue = valueListItem134;
  2763. valueListItem133.DisplayText = "不允许负数发";
  2764. valueListItem132.DataValue = valueListItem133;
  2765. valueListItem132.DisplayText = "不允许负数发";
  2766. valueListItem131.DataValue = valueListItem132;
  2767. valueListItem131.DisplayText = "不允许负数发";
  2768. valueListItem130.DataValue = valueListItem131;
  2769. valueListItem130.DisplayText = "不允许负数发";
  2770. valueListItem129.DataValue = valueListItem130;
  2771. valueListItem129.DisplayText = "不允许负数发";
  2772. valueListItem140.DataValue = "1";
  2773. valueListItem140.DisplayText = "允许负数发料";
  2774. valueListItem139.DataValue = valueListItem140;
  2775. valueListItem139.DisplayText = "允许负数发料";
  2776. valueListItem138.DataValue = valueListItem139;
  2777. valueListItem138.DisplayText = "允许负数发料";
  2778. valueListItem137.DataValue = valueListItem138;
  2779. valueListItem137.DisplayText = "允许负数发料";
  2780. valueListItem136.DataValue = valueListItem137;
  2781. valueListItem136.DisplayText = "允许负数发料";
  2782. valueListItem135.DataValue = valueListItem136;
  2783. valueListItem135.DisplayText = "允许负数发料";
  2784. this.ultraComboEditor9.Items.Add(valueListItem129);
  2785. this.ultraComboEditor9.Items.Add(valueListItem135);
  2786. this.ultraComboEditor9.Location = new System.Drawing.Point(584, 52);
  2787. this.ultraComboEditor9.Name = "ultraComboEditor9";
  2788. this.ultraComboEditor9.Size = new System.Drawing.Size(94, 21);
  2789. this.ultraComboEditor9.TabIndex = 386;
  2790. //
  2791. // ultraLabel43
  2792. //
  2793. this.ultraLabel43.BackColor = System.Drawing.Color.Transparent;
  2794. this.ultraLabel43.Location = new System.Drawing.Point(482, 55);
  2795. this.ultraLabel43.Name = "ultraLabel43";
  2796. this.ultraLabel43.Size = new System.Drawing.Size(117, 18);
  2797. this.ultraLabel43.TabIndex = 385;
  2798. this.ultraLabel43.Text = "是否允许负数发料";
  2799. //
  2800. // ultraComboEditor10
  2801. //
  2802. this.ultraComboEditor10.AutoSize = true;
  2803. valueListItem146.DataValue = "0";
  2804. valueListItem146.DisplayText = "非零库存物资";
  2805. valueListItem145.DataValue = valueListItem146;
  2806. valueListItem145.DisplayText = "非零库存物资";
  2807. valueListItem144.DataValue = valueListItem145;
  2808. valueListItem144.DisplayText = "非零库存物资";
  2809. valueListItem143.DataValue = valueListItem144;
  2810. valueListItem143.DisplayText = "非零库存物资";
  2811. valueListItem142.DataValue = valueListItem143;
  2812. valueListItem142.DisplayText = "非零库存物资";
  2813. valueListItem141.DataValue = valueListItem142;
  2814. valueListItem141.DisplayText = "非零库存物资";
  2815. valueListItem152.DataValue = "1";
  2816. valueListItem152.DisplayText = "零库存物资";
  2817. valueListItem151.DataValue = valueListItem152;
  2818. valueListItem151.DisplayText = "零库存物资";
  2819. valueListItem150.DataValue = valueListItem151;
  2820. valueListItem150.DisplayText = "零库存物资";
  2821. valueListItem149.DataValue = valueListItem150;
  2822. valueListItem149.DisplayText = "零库存物资";
  2823. valueListItem148.DataValue = valueListItem149;
  2824. valueListItem148.DisplayText = "零库存物资";
  2825. valueListItem147.DataValue = valueListItem148;
  2826. valueListItem147.DisplayText = "零库存物资";
  2827. this.ultraComboEditor10.Items.Add(valueListItem141);
  2828. this.ultraComboEditor10.Items.Add(valueListItem147);
  2829. this.ultraComboEditor10.Location = new System.Drawing.Point(550, 28);
  2830. this.ultraComboEditor10.Name = "ultraComboEditor10";
  2831. this.ultraComboEditor10.Size = new System.Drawing.Size(128, 21);
  2832. this.ultraComboEditor10.TabIndex = 384;
  2833. //
  2834. // ultraLabel44
  2835. //
  2836. this.ultraLabel44.BackColor = System.Drawing.Color.Transparent;
  2837. this.ultraLabel44.Location = new System.Drawing.Point(482, 31);
  2838. this.ultraLabel44.Name = "ultraLabel44";
  2839. this.ultraLabel44.Size = new System.Drawing.Size(66, 20);
  2840. this.ultraLabel44.TabIndex = 383;
  2841. this.ultraLabel44.Text = "是否零库存";
  2842. //
  2843. // ultraLabel45
  2844. //
  2845. this.ultraLabel45.BackColor = System.Drawing.Color.Transparent;
  2846. this.ultraLabel45.Location = new System.Drawing.Point(482, 8);
  2847. this.ultraLabel45.Name = "ultraLabel45";
  2848. this.ultraLabel45.Size = new System.Drawing.Size(56, 16);
  2849. this.ultraLabel45.TabIndex = 381;
  2850. this.ultraLabel45.Text = "制造周期";
  2851. //
  2852. // ultraTextEditor21
  2853. //
  2854. this.ultraTextEditor21.AutoSize = true;
  2855. this.ultraTextEditor21.FlatMode = true;
  2856. this.ultraTextEditor21.Location = new System.Drawing.Point(550, 5);
  2857. this.ultraTextEditor21.Name = "ultraTextEditor21";
  2858. this.ultraTextEditor21.Size = new System.Drawing.Size(128, 19);
  2859. this.ultraTextEditor21.TabIndex = 380;
  2860. this.ultraTextEditor21.Tag = "";
  2861. //
  2862. // ultraLabel46
  2863. //
  2864. this.ultraLabel46.BackColor = System.Drawing.Color.Transparent;
  2865. this.ultraLabel46.Location = new System.Drawing.Point(3, 77);
  2866. this.ultraLabel46.Name = "ultraLabel46";
  2867. this.ultraLabel46.Size = new System.Drawing.Size(56, 16);
  2868. this.ultraLabel46.TabIndex = 367;
  2869. this.ultraLabel46.Text = "法人代表";
  2870. //
  2871. // ultraTextEditor22
  2872. //
  2873. this.ultraTextEditor22.AutoSize = true;
  2874. this.ultraTextEditor22.FlatMode = true;
  2875. this.ultraTextEditor22.Location = new System.Drawing.Point(60, 74);
  2876. this.ultraTextEditor22.Multiline = true;
  2877. this.ultraTextEditor22.Name = "ultraTextEditor22";
  2878. this.ultraTextEditor22.Size = new System.Drawing.Size(191, 19);
  2879. this.ultraTextEditor22.TabIndex = 366;
  2880. this.ultraTextEditor22.Tag = "";
  2881. //
  2882. // ultraLabel47
  2883. //
  2884. this.ultraLabel47.BackColor = System.Drawing.Color.Transparent;
  2885. this.ultraLabel47.Location = new System.Drawing.Point(3, 55);
  2886. this.ultraLabel47.Name = "ultraLabel47";
  2887. this.ultraLabel47.Size = new System.Drawing.Size(56, 16);
  2888. this.ultraLabel47.TabIndex = 365;
  2889. this.ultraLabel47.Text = "产品标准";
  2890. //
  2891. // ultraTextEditor23
  2892. //
  2893. this.ultraTextEditor23.AutoSize = true;
  2894. this.ultraTextEditor23.FlatMode = true;
  2895. this.ultraTextEditor23.Location = new System.Drawing.Point(60, 52);
  2896. this.ultraTextEditor23.Multiline = true;
  2897. this.ultraTextEditor23.Name = "ultraTextEditor23";
  2898. this.ultraTextEditor23.Size = new System.Drawing.Size(191, 19);
  2899. this.ultraTextEditor23.TabIndex = 364;
  2900. this.ultraTextEditor23.Tag = "";
  2901. //
  2902. // ultraLabel48
  2903. //
  2904. this.ultraLabel48.BackColor = System.Drawing.Color.Transparent;
  2905. this.ultraLabel48.Location = new System.Drawing.Point(3, 31);
  2906. this.ultraLabel48.Name = "ultraLabel48";
  2907. this.ultraLabel48.Size = new System.Drawing.Size(56, 16);
  2908. this.ultraLabel48.TabIndex = 363;
  2909. this.ultraLabel48.Text = "供方名称";
  2910. //
  2911. // ultraTextEditor24
  2912. //
  2913. this.ultraTextEditor24.AutoSize = true;
  2914. this.ultraTextEditor24.FlatMode = true;
  2915. this.ultraTextEditor24.Location = new System.Drawing.Point(60, 28);
  2916. this.ultraTextEditor24.Multiline = true;
  2917. this.ultraTextEditor24.Name = "ultraTextEditor24";
  2918. this.ultraTextEditor24.Size = new System.Drawing.Size(191, 19);
  2919. this.ultraTextEditor24.TabIndex = 362;
  2920. this.ultraTextEditor24.Tag = "";
  2921. //
  2922. // ultraLabel49
  2923. //
  2924. this.ultraLabel49.BackColor = System.Drawing.Color.Transparent;
  2925. this.ultraLabel49.Location = new System.Drawing.Point(3, 8);
  2926. this.ultraLabel49.Name = "ultraLabel49";
  2927. this.ultraLabel49.Size = new System.Drawing.Size(56, 16);
  2928. this.ultraLabel49.TabIndex = 361;
  2929. this.ultraLabel49.Text = "供方代码";
  2930. //
  2931. // ultraTextEditor25
  2932. //
  2933. this.ultraTextEditor25.AutoSize = true;
  2934. this.ultraTextEditor25.Enabled = false;
  2935. this.ultraTextEditor25.FlatMode = true;
  2936. this.ultraTextEditor25.Location = new System.Drawing.Point(60, 5);
  2937. this.ultraTextEditor25.Name = "ultraTextEditor25";
  2938. this.ultraTextEditor25.Size = new System.Drawing.Size(84, 19);
  2939. this.ultraTextEditor25.TabIndex = 358;
  2940. this.ultraTextEditor25.Tag = "";
  2941. //
  2942. // ultraLabel51
  2943. //
  2944. this.ultraLabel51.BackColor = System.Drawing.Color.Transparent;
  2945. this.ultraLabel51.Location = new System.Drawing.Point(261, 57);
  2946. this.ultraLabel51.Name = "ultraLabel51";
  2947. this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
  2948. this.ultraLabel51.TabIndex = 407;
  2949. this.ultraLabel51.Text = "注册资金";
  2950. //
  2951. // ultraTextEditor26
  2952. //
  2953. this.ultraTextEditor26.AutoSize = true;
  2954. this.ultraTextEditor26.FlatMode = true;
  2955. this.ultraTextEditor26.Location = new System.Drawing.Point(333, 54);
  2956. this.ultraTextEditor26.Multiline = true;
  2957. this.ultraTextEditor26.Name = "ultraTextEditor26";
  2958. this.ultraTextEditor26.Size = new System.Drawing.Size(143, 19);
  2959. this.ultraTextEditor26.TabIndex = 406;
  2960. this.ultraTextEditor26.Tag = "";
  2961. //
  2962. // ultraLabel52
  2963. //
  2964. this.ultraLabel52.BackColor = System.Drawing.Color.Transparent;
  2965. this.ultraLabel52.Location = new System.Drawing.Point(261, 33);
  2966. this.ultraLabel52.Name = "ultraLabel52";
  2967. this.ultraLabel52.Size = new System.Drawing.Size(118, 18);
  2968. this.ultraLabel52.TabIndex = 405;
  2969. this.ultraLabel52.Text = "委托代理人身份证号";
  2970. //
  2971. // ultraTextEditor27
  2972. //
  2973. this.ultraTextEditor27.AutoSize = true;
  2974. this.ultraTextEditor27.FlatMode = true;
  2975. this.ultraTextEditor27.Location = new System.Drawing.Point(385, 30);
  2976. this.ultraTextEditor27.Multiline = true;
  2977. this.ultraTextEditor27.Name = "ultraTextEditor27";
  2978. this.ultraTextEditor27.Size = new System.Drawing.Size(91, 19);
  2979. this.ultraTextEditor27.TabIndex = 404;
  2980. this.ultraTextEditor27.Tag = "";
  2981. //
  2982. // ultraLabel53
  2983. //
  2984. this.ultraLabel53.BackColor = System.Drawing.Color.Transparent;
  2985. this.ultraLabel53.Location = new System.Drawing.Point(4, 99);
  2986. this.ultraLabel53.Name = "ultraLabel53";
  2987. this.ultraLabel53.Size = new System.Drawing.Size(109, 19);
  2988. this.ultraLabel53.TabIndex = 403;
  2989. this.ultraLabel53.Text = "法人代表身份证号";
  2990. //
  2991. // ultraTextEditor28
  2992. //
  2993. this.ultraTextEditor28.AutoSize = true;
  2994. this.ultraTextEditor28.FlatMode = true;
  2995. this.ultraTextEditor28.Location = new System.Drawing.Point(112, 96);
  2996. this.ultraTextEditor28.Multiline = true;
  2997. this.ultraTextEditor28.Name = "ultraTextEditor28";
  2998. this.ultraTextEditor28.Size = new System.Drawing.Size(139, 19);
  2999. this.ultraTextEditor28.TabIndex = 402;
  3000. this.ultraTextEditor28.Tag = "";
  3001. //
  3002. // ultraLabel54
  3003. //
  3004. this.ultraLabel54.BackColor = System.Drawing.Color.Transparent;
  3005. this.ultraLabel54.Location = new System.Drawing.Point(261, 7);
  3006. this.ultraLabel54.Name = "ultraLabel54";
  3007. this.ultraLabel54.Size = new System.Drawing.Size(66, 16);
  3008. this.ultraLabel54.TabIndex = 401;
  3009. this.ultraLabel54.Text = "委托代理人";
  3010. //
  3011. // ultraTextEditor29
  3012. //
  3013. this.ultraTextEditor29.AutoSize = true;
  3014. this.ultraTextEditor29.FlatMode = true;
  3015. this.ultraTextEditor29.Location = new System.Drawing.Point(333, 4);
  3016. this.ultraTextEditor29.Multiline = true;
  3017. this.ultraTextEditor29.Name = "ultraTextEditor29";
  3018. this.ultraTextEditor29.Size = new System.Drawing.Size(143, 19);
  3019. this.ultraTextEditor29.TabIndex = 400;
  3020. this.ultraTextEditor29.Tag = "";
  3021. //
  3022. // ultraTextEditor30
  3023. //
  3024. this.ultraTextEditor30.AutoSize = true;
  3025. this.ultraTextEditor30.FlatMode = true;
  3026. this.ultraTextEditor30.Location = new System.Drawing.Point(927, 28);
  3027. this.ultraTextEditor30.Multiline = true;
  3028. this.ultraTextEditor30.Name = "ultraTextEditor30";
  3029. this.ultraTextEditor30.Size = new System.Drawing.Size(173, 85);
  3030. this.ultraTextEditor30.TabIndex = 399;
  3031. this.ultraTextEditor30.Tag = "";
  3032. //
  3033. // ultraComboEditor11
  3034. //
  3035. this.ultraComboEditor11.AutoSize = true;
  3036. valueListItem158.DataValue = "0";
  3037. valueListItem158.DisplayText = "非以旧换新";
  3038. valueListItem157.DataValue = valueListItem158;
  3039. valueListItem157.DisplayText = "非以旧换新";
  3040. valueListItem156.DataValue = valueListItem157;
  3041. valueListItem156.DisplayText = "非以旧换新";
  3042. valueListItem155.DataValue = valueListItem156;
  3043. valueListItem155.DisplayText = "非以旧换新";
  3044. valueListItem154.DataValue = valueListItem155;
  3045. valueListItem154.DisplayText = "非以旧换新";
  3046. valueListItem153.DataValue = valueListItem154;
  3047. valueListItem153.DisplayText = "非以旧换新";
  3048. valueListItem164.DataValue = "1";
  3049. valueListItem164.DisplayText = "以旧换新";
  3050. valueListItem163.DataValue = valueListItem164;
  3051. valueListItem163.DisplayText = "以旧换新";
  3052. valueListItem162.DataValue = valueListItem163;
  3053. valueListItem162.DisplayText = "以旧换新";
  3054. valueListItem161.DataValue = valueListItem162;
  3055. valueListItem161.DisplayText = "以旧换新";
  3056. valueListItem160.DataValue = valueListItem161;
  3057. valueListItem160.DisplayText = "以旧换新";
  3058. valueListItem159.DataValue = valueListItem160;
  3059. valueListItem159.DisplayText = "以旧换新";
  3060. this.ultraComboEditor11.Items.Add(valueListItem153);
  3061. this.ultraComboEditor11.Items.Add(valueListItem159);
  3062. this.ultraComboEditor11.Location = new System.Drawing.Point(962, 2);
  3063. this.ultraComboEditor11.Name = "ultraComboEditor11";
  3064. this.ultraComboEditor11.Size = new System.Drawing.Size(120, 21);
  3065. this.ultraComboEditor11.TabIndex = 398;
  3066. //
  3067. // ultraLabel55
  3068. //
  3069. this.ultraLabel55.BackColor = System.Drawing.Color.Transparent;
  3070. this.ultraLabel55.Location = new System.Drawing.Point(886, 5);
  3071. this.ultraLabel55.Name = "ultraLabel55";
  3072. this.ultraLabel55.Size = new System.Drawing.Size(89, 20);
  3073. this.ultraLabel55.TabIndex = 397;
  3074. this.ultraLabel55.Text = "是否以旧换新";
  3075. //
  3076. // ultraComboEditor12
  3077. //
  3078. this.ultraComboEditor12.AutoSize = true;
  3079. valueListItem170.DataValue = "0";
  3080. valueListItem170.DisplayText = "非招标物资";
  3081. valueListItem169.DataValue = valueListItem170;
  3082. valueListItem169.DisplayText = "非招标物资";
  3083. valueListItem168.DataValue = valueListItem169;
  3084. valueListItem168.DisplayText = "非招标物资";
  3085. valueListItem167.DataValue = valueListItem168;
  3086. valueListItem167.DisplayText = "非招标物资";
  3087. valueListItem166.DataValue = valueListItem167;
  3088. valueListItem166.DisplayText = "非招标物资";
  3089. valueListItem165.DataValue = valueListItem166;
  3090. valueListItem165.DisplayText = "非招标物资";
  3091. valueListItem176.DataValue = "1";
  3092. valueListItem176.DisplayText = "招标物资";
  3093. valueListItem175.DataValue = valueListItem176;
  3094. valueListItem175.DisplayText = "招标物资";
  3095. valueListItem174.DataValue = valueListItem175;
  3096. valueListItem174.DisplayText = "招标物资";
  3097. valueListItem173.DataValue = valueListItem174;
  3098. valueListItem173.DisplayText = "招标物资";
  3099. valueListItem172.DataValue = valueListItem173;
  3100. valueListItem172.DisplayText = "招标物资";
  3101. valueListItem171.DataValue = valueListItem172;
  3102. valueListItem171.DisplayText = "招标物资";
  3103. this.ultraComboEditor12.Items.Add(valueListItem165);
  3104. this.ultraComboEditor12.Items.Add(valueListItem171);
  3105. this.ultraComboEditor12.Location = new System.Drawing.Point(760, 73);
  3106. this.ultraComboEditor12.Name = "ultraComboEditor12";
  3107. this.ultraComboEditor12.Size = new System.Drawing.Size(120, 21);
  3108. this.ultraComboEditor12.TabIndex = 396;
  3109. //
  3110. // ultraLabel56
  3111. //
  3112. this.ultraLabel56.BackColor = System.Drawing.Color.Transparent;
  3113. this.ultraLabel56.Location = new System.Drawing.Point(684, 76);
  3114. this.ultraLabel56.Name = "ultraLabel56";
  3115. this.ultraLabel56.Size = new System.Drawing.Size(89, 20);
  3116. this.ultraLabel56.TabIndex = 395;
  3117. this.ultraLabel56.Text = "是否招标物资";
  3118. //
  3119. // ultraComboEditor13
  3120. //
  3121. this.ultraComboEditor13.AutoSize = true;
  3122. valueListItem182.DataValue = "0";
  3123. valueListItem182.DisplayText = "非修复物资";
  3124. valueListItem181.DataValue = valueListItem182;
  3125. valueListItem181.DisplayText = "非修复物资";
  3126. valueListItem180.DataValue = valueListItem181;
  3127. valueListItem180.DisplayText = "非修复物资";
  3128. valueListItem179.DataValue = valueListItem180;
  3129. valueListItem179.DisplayText = "非修复物资";
  3130. valueListItem178.DataValue = valueListItem179;
  3131. valueListItem178.DisplayText = "非修复物资";
  3132. valueListItem177.DataValue = valueListItem178;
  3133. valueListItem177.DisplayText = "非修复物资";
  3134. valueListItem188.DataValue = "1";
  3135. valueListItem188.DisplayText = "修复物资";
  3136. valueListItem187.DataValue = valueListItem188;
  3137. valueListItem187.DisplayText = "修复物资";
  3138. valueListItem186.DataValue = valueListItem187;
  3139. valueListItem186.DisplayText = "修复物资";
  3140. valueListItem185.DataValue = valueListItem186;
  3141. valueListItem185.DisplayText = "修复物资";
  3142. valueListItem184.DataValue = valueListItem185;
  3143. valueListItem184.DisplayText = "修复物资";
  3144. valueListItem183.DataValue = valueListItem184;
  3145. valueListItem183.DisplayText = "修复物资";
  3146. this.ultraComboEditor13.Items.Add(valueListItem177);
  3147. this.ultraComboEditor13.Items.Add(valueListItem183);
  3148. this.ultraComboEditor13.Location = new System.Drawing.Point(760, 49);
  3149. this.ultraComboEditor13.Name = "ultraComboEditor13";
  3150. this.ultraComboEditor13.Size = new System.Drawing.Size(120, 21);
  3151. this.ultraComboEditor13.TabIndex = 394;
  3152. //
  3153. // ultraLabel57
  3154. //
  3155. this.ultraLabel57.BackColor = System.Drawing.Color.Transparent;
  3156. this.ultraLabel57.Location = new System.Drawing.Point(684, 52);
  3157. this.ultraLabel57.Name = "ultraLabel57";
  3158. this.ultraLabel57.Size = new System.Drawing.Size(89, 20);
  3159. this.ultraLabel57.TabIndex = 393;
  3160. this.ultraLabel57.Text = "是否修复物资";
  3161. //
  3162. // ultraComboEditor14
  3163. //
  3164. this.ultraComboEditor14.AutoSize = true;
  3165. valueListItem194.DataValue = "0";
  3166. valueListItem194.DisplayText = "不包安装";
  3167. valueListItem193.DataValue = valueListItem194;
  3168. valueListItem193.DisplayText = "不包安装";
  3169. valueListItem192.DataValue = valueListItem193;
  3170. valueListItem192.DisplayText = "不包安装";
  3171. valueListItem191.DataValue = valueListItem192;
  3172. valueListItem191.DisplayText = "不包安装";
  3173. valueListItem190.DataValue = valueListItem191;
  3174. valueListItem190.DisplayText = "不包安装";
  3175. valueListItem189.DataValue = valueListItem190;
  3176. valueListItem189.DisplayText = "不包安装";
  3177. valueListItem200.DataValue = "1";
  3178. valueListItem200.DisplayText = "包安装";
  3179. valueListItem199.DataValue = valueListItem200;
  3180. valueListItem199.DisplayText = "包安装";
  3181. valueListItem198.DataValue = valueListItem199;
  3182. valueListItem198.DisplayText = "包安装";
  3183. valueListItem197.DataValue = valueListItem198;
  3184. valueListItem197.DisplayText = "包安装";
  3185. valueListItem196.DataValue = valueListItem197;
  3186. valueListItem196.DisplayText = "包安装";
  3187. valueListItem195.DataValue = valueListItem196;
  3188. valueListItem195.DisplayText = "包安装";
  3189. this.ultraComboEditor14.Items.Add(valueListItem189);
  3190. this.ultraComboEditor14.Items.Add(valueListItem195);
  3191. this.ultraComboEditor14.Location = new System.Drawing.Point(760, 26);
  3192. this.ultraComboEditor14.Name = "ultraComboEditor14";
  3193. this.ultraComboEditor14.Size = new System.Drawing.Size(120, 21);
  3194. this.ultraComboEditor14.TabIndex = 392;
  3195. //
  3196. // ultraLabel58
  3197. //
  3198. this.ultraLabel58.BackColor = System.Drawing.Color.Transparent;
  3199. this.ultraLabel58.Location = new System.Drawing.Point(684, 29);
  3200. this.ultraLabel58.Name = "ultraLabel58";
  3201. this.ultraLabel58.Size = new System.Drawing.Size(89, 20);
  3202. this.ultraLabel58.TabIndex = 391;
  3203. this.ultraLabel58.Text = "是否包安装";
  3204. //
  3205. // ultraComboEditor15
  3206. //
  3207. this.ultraComboEditor15.AutoSize = true;
  3208. valueListItem206.DataValue = "0";
  3209. valueListItem206.DisplayText = "非备库物资";
  3210. valueListItem205.DataValue = valueListItem206;
  3211. valueListItem205.DisplayText = "非备库物资";
  3212. valueListItem204.DataValue = valueListItem205;
  3213. valueListItem204.DisplayText = "非备库物资";
  3214. valueListItem203.DataValue = valueListItem204;
  3215. valueListItem203.DisplayText = "非备库物资";
  3216. valueListItem202.DataValue = valueListItem203;
  3217. valueListItem202.DisplayText = "非备库物资";
  3218. valueListItem201.DataValue = valueListItem202;
  3219. valueListItem201.DisplayText = "非备库物资";
  3220. valueListItem212.DataValue = "1";
  3221. valueListItem212.DisplayText = "备库物资";
  3222. valueListItem211.DataValue = valueListItem212;
  3223. valueListItem211.DisplayText = "备库物资";
  3224. valueListItem210.DataValue = valueListItem211;
  3225. valueListItem210.DisplayText = "备库物资";
  3226. valueListItem209.DataValue = valueListItem210;
  3227. valueListItem209.DisplayText = "备库物资";
  3228. valueListItem208.DataValue = valueListItem209;
  3229. valueListItem208.DisplayText = "备库物资";
  3230. valueListItem207.DataValue = valueListItem208;
  3231. valueListItem207.DisplayText = "备库物资";
  3232. this.ultraComboEditor15.Items.Add(valueListItem201);
  3233. this.ultraComboEditor15.Items.Add(valueListItem207);
  3234. this.ultraComboEditor15.Location = new System.Drawing.Point(760, 3);
  3235. this.ultraComboEditor15.Name = "ultraComboEditor15";
  3236. this.ultraComboEditor15.Size = new System.Drawing.Size(120, 21);
  3237. this.ultraComboEditor15.TabIndex = 390;
  3238. //
  3239. // ultraLabel59
  3240. //
  3241. this.ultraLabel59.BackColor = System.Drawing.Color.Transparent;
  3242. this.ultraLabel59.Location = new System.Drawing.Point(684, 6);
  3243. this.ultraLabel59.Name = "ultraLabel59";
  3244. this.ultraLabel59.Size = new System.Drawing.Size(89, 20);
  3245. this.ultraLabel59.TabIndex = 389;
  3246. this.ultraLabel59.Text = "是否备库物资";
  3247. //
  3248. // ultraComboEditor16
  3249. //
  3250. this.ultraComboEditor16.AutoSize = true;
  3251. valueListItem218.DataValue = "0";
  3252. valueListItem218.DisplayText = "正在使用的物资";
  3253. valueListItem217.DataValue = valueListItem218;
  3254. valueListItem217.DisplayText = "正在使用的物资";
  3255. valueListItem216.DataValue = valueListItem217;
  3256. valueListItem216.DisplayText = "正在使用的物资";
  3257. valueListItem215.DataValue = valueListItem216;
  3258. valueListItem215.DisplayText = "正在使用的物资";
  3259. valueListItem214.DataValue = valueListItem215;
  3260. valueListItem214.DisplayText = "正在使用的物资";
  3261. valueListItem213.DataValue = valueListItem214;
  3262. valueListItem213.DisplayText = "正在使用的物资";
  3263. valueListItem224.DataValue = "1";
  3264. valueListItem224.DisplayText = "已废除的物资";
  3265. valueListItem223.DataValue = valueListItem224;
  3266. valueListItem223.DisplayText = "已废除的物资";
  3267. valueListItem222.DataValue = valueListItem223;
  3268. valueListItem222.DisplayText = "已废除的物资";
  3269. valueListItem221.DataValue = valueListItem222;
  3270. valueListItem221.DisplayText = "已废除的物资";
  3271. valueListItem220.DataValue = valueListItem221;
  3272. valueListItem220.DisplayText = "已废除的物资";
  3273. valueListItem219.DataValue = valueListItem220;
  3274. valueListItem219.DisplayText = "已废除的物资";
  3275. this.ultraComboEditor16.Items.Add(valueListItem213);
  3276. this.ultraComboEditor16.Items.Add(valueListItem219);
  3277. this.ultraComboEditor16.Location = new System.Drawing.Point(584, 76);
  3278. this.ultraComboEditor16.Name = "ultraComboEditor16";
  3279. this.ultraComboEditor16.Size = new System.Drawing.Size(94, 21);
  3280. this.ultraComboEditor16.TabIndex = 388;
  3281. //
  3282. // ultraLabel60
  3283. //
  3284. this.ultraLabel60.BackColor = System.Drawing.Color.Transparent;
  3285. this.ultraLabel60.Location = new System.Drawing.Point(482, 79);
  3286. this.ultraLabel60.Name = "ultraLabel60";
  3287. this.ultraLabel60.Size = new System.Drawing.Size(117, 18);
  3288. this.ultraLabel60.TabIndex = 387;
  3289. this.ultraLabel60.Text = "是否废除的物资";
  3290. //
  3291. // ultraComboEditor17
  3292. //
  3293. this.ultraComboEditor17.AutoSize = true;
  3294. valueListItem230.DataValue = "0";
  3295. valueListItem230.DisplayText = "不允许负数发";
  3296. valueListItem229.DataValue = valueListItem230;
  3297. valueListItem229.DisplayText = "不允许负数发";
  3298. valueListItem228.DataValue = valueListItem229;
  3299. valueListItem228.DisplayText = "不允许负数发";
  3300. valueListItem227.DataValue = valueListItem228;
  3301. valueListItem227.DisplayText = "不允许负数发";
  3302. valueListItem226.DataValue = valueListItem227;
  3303. valueListItem226.DisplayText = "不允许负数发";
  3304. valueListItem225.DataValue = valueListItem226;
  3305. valueListItem225.DisplayText = "不允许负数发";
  3306. valueListItem236.DataValue = "1";
  3307. valueListItem236.DisplayText = "允许负数发料";
  3308. valueListItem235.DataValue = valueListItem236;
  3309. valueListItem235.DisplayText = "允许负数发料";
  3310. valueListItem234.DataValue = valueListItem235;
  3311. valueListItem234.DisplayText = "允许负数发料";
  3312. valueListItem233.DataValue = valueListItem234;
  3313. valueListItem233.DisplayText = "允许负数发料";
  3314. valueListItem232.DataValue = valueListItem233;
  3315. valueListItem232.DisplayText = "允许负数发料";
  3316. valueListItem231.DataValue = valueListItem232;
  3317. valueListItem231.DisplayText = "允许负数发料";
  3318. this.ultraComboEditor17.Items.Add(valueListItem225);
  3319. this.ultraComboEditor17.Items.Add(valueListItem231);
  3320. this.ultraComboEditor17.Location = new System.Drawing.Point(584, 52);
  3321. this.ultraComboEditor17.Name = "ultraComboEditor17";
  3322. this.ultraComboEditor17.Size = new System.Drawing.Size(94, 21);
  3323. this.ultraComboEditor17.TabIndex = 386;
  3324. //
  3325. // ultraLabel61
  3326. //
  3327. this.ultraLabel61.BackColor = System.Drawing.Color.Transparent;
  3328. this.ultraLabel61.Location = new System.Drawing.Point(482, 55);
  3329. this.ultraLabel61.Name = "ultraLabel61";
  3330. this.ultraLabel61.Size = new System.Drawing.Size(117, 18);
  3331. this.ultraLabel61.TabIndex = 385;
  3332. this.ultraLabel61.Text = "是否允许负数发料";
  3333. //
  3334. // ultraComboEditor18
  3335. //
  3336. this.ultraComboEditor18.AutoSize = true;
  3337. valueListItem242.DataValue = "0";
  3338. valueListItem242.DisplayText = "非零库存物资";
  3339. valueListItem241.DataValue = valueListItem242;
  3340. valueListItem241.DisplayText = "非零库存物资";
  3341. valueListItem240.DataValue = valueListItem241;
  3342. valueListItem240.DisplayText = "非零库存物资";
  3343. valueListItem239.DataValue = valueListItem240;
  3344. valueListItem239.DisplayText = "非零库存物资";
  3345. valueListItem238.DataValue = valueListItem239;
  3346. valueListItem238.DisplayText = "非零库存物资";
  3347. valueListItem237.DataValue = valueListItem238;
  3348. valueListItem237.DisplayText = "非零库存物资";
  3349. valueListItem248.DataValue = "1";
  3350. valueListItem248.DisplayText = "零库存物资";
  3351. valueListItem247.DataValue = valueListItem248;
  3352. valueListItem247.DisplayText = "零库存物资";
  3353. valueListItem246.DataValue = valueListItem247;
  3354. valueListItem246.DisplayText = "零库存物资";
  3355. valueListItem245.DataValue = valueListItem246;
  3356. valueListItem245.DisplayText = "零库存物资";
  3357. valueListItem244.DataValue = valueListItem245;
  3358. valueListItem244.DisplayText = "零库存物资";
  3359. valueListItem243.DataValue = valueListItem244;
  3360. valueListItem243.DisplayText = "零库存物资";
  3361. this.ultraComboEditor18.Items.Add(valueListItem237);
  3362. this.ultraComboEditor18.Items.Add(valueListItem243);
  3363. this.ultraComboEditor18.Location = new System.Drawing.Point(550, 28);
  3364. this.ultraComboEditor18.Name = "ultraComboEditor18";
  3365. this.ultraComboEditor18.Size = new System.Drawing.Size(128, 21);
  3366. this.ultraComboEditor18.TabIndex = 384;
  3367. //
  3368. // ultraLabel62
  3369. //
  3370. this.ultraLabel62.BackColor = System.Drawing.Color.Transparent;
  3371. this.ultraLabel62.Location = new System.Drawing.Point(482, 31);
  3372. this.ultraLabel62.Name = "ultraLabel62";
  3373. this.ultraLabel62.Size = new System.Drawing.Size(66, 20);
  3374. this.ultraLabel62.TabIndex = 383;
  3375. this.ultraLabel62.Text = "是否零库存";
  3376. //
  3377. // ultraLabel63
  3378. //
  3379. this.ultraLabel63.BackColor = System.Drawing.Color.Transparent;
  3380. this.ultraLabel63.Location = new System.Drawing.Point(482, 8);
  3381. this.ultraLabel63.Name = "ultraLabel63";
  3382. this.ultraLabel63.Size = new System.Drawing.Size(56, 16);
  3383. this.ultraLabel63.TabIndex = 381;
  3384. this.ultraLabel63.Text = "制造周期";
  3385. //
  3386. // ultraTextEditor31
  3387. //
  3388. this.ultraTextEditor31.AutoSize = true;
  3389. this.ultraTextEditor31.FlatMode = true;
  3390. this.ultraTextEditor31.Location = new System.Drawing.Point(550, 5);
  3391. this.ultraTextEditor31.Name = "ultraTextEditor31";
  3392. this.ultraTextEditor31.Size = new System.Drawing.Size(128, 19);
  3393. this.ultraTextEditor31.TabIndex = 380;
  3394. this.ultraTextEditor31.Tag = "";
  3395. //
  3396. // ultraLabel64
  3397. //
  3398. this.ultraLabel64.BackColor = System.Drawing.Color.Transparent;
  3399. this.ultraLabel64.Location = new System.Drawing.Point(3, 77);
  3400. this.ultraLabel64.Name = "ultraLabel64";
  3401. this.ultraLabel64.Size = new System.Drawing.Size(56, 16);
  3402. this.ultraLabel64.TabIndex = 367;
  3403. this.ultraLabel64.Text = "法人代表";
  3404. //
  3405. // ultraTextEditor32
  3406. //
  3407. this.ultraTextEditor32.AutoSize = true;
  3408. this.ultraTextEditor32.FlatMode = true;
  3409. this.ultraTextEditor32.Location = new System.Drawing.Point(60, 74);
  3410. this.ultraTextEditor32.Multiline = true;
  3411. this.ultraTextEditor32.Name = "ultraTextEditor32";
  3412. this.ultraTextEditor32.Size = new System.Drawing.Size(191, 19);
  3413. this.ultraTextEditor32.TabIndex = 366;
  3414. this.ultraTextEditor32.Tag = "";
  3415. //
  3416. // ultraLabel65
  3417. //
  3418. this.ultraLabel65.BackColor = System.Drawing.Color.Transparent;
  3419. this.ultraLabel65.Location = new System.Drawing.Point(3, 55);
  3420. this.ultraLabel65.Name = "ultraLabel65";
  3421. this.ultraLabel65.Size = new System.Drawing.Size(56, 16);
  3422. this.ultraLabel65.TabIndex = 365;
  3423. this.ultraLabel65.Text = "产品标准";
  3424. //
  3425. // ultraTextEditor33
  3426. //
  3427. this.ultraTextEditor33.AutoSize = true;
  3428. this.ultraTextEditor33.FlatMode = true;
  3429. this.ultraTextEditor33.Location = new System.Drawing.Point(60, 52);
  3430. this.ultraTextEditor33.Multiline = true;
  3431. this.ultraTextEditor33.Name = "ultraTextEditor33";
  3432. this.ultraTextEditor33.Size = new System.Drawing.Size(191, 19);
  3433. this.ultraTextEditor33.TabIndex = 364;
  3434. this.ultraTextEditor33.Tag = "";
  3435. //
  3436. // ultraLabel66
  3437. //
  3438. this.ultraLabel66.BackColor = System.Drawing.Color.Transparent;
  3439. this.ultraLabel66.Location = new System.Drawing.Point(3, 31);
  3440. this.ultraLabel66.Name = "ultraLabel66";
  3441. this.ultraLabel66.Size = new System.Drawing.Size(56, 16);
  3442. this.ultraLabel66.TabIndex = 363;
  3443. this.ultraLabel66.Text = "供方名称";
  3444. //
  3445. // ultraTextEditor34
  3446. //
  3447. this.ultraTextEditor34.AutoSize = true;
  3448. this.ultraTextEditor34.FlatMode = true;
  3449. this.ultraTextEditor34.Location = new System.Drawing.Point(60, 28);
  3450. this.ultraTextEditor34.Multiline = true;
  3451. this.ultraTextEditor34.Name = "ultraTextEditor34";
  3452. this.ultraTextEditor34.Size = new System.Drawing.Size(191, 19);
  3453. this.ultraTextEditor34.TabIndex = 362;
  3454. this.ultraTextEditor34.Tag = "";
  3455. //
  3456. // ultraLabel67
  3457. //
  3458. this.ultraLabel67.BackColor = System.Drawing.Color.Transparent;
  3459. this.ultraLabel67.Location = new System.Drawing.Point(3, 8);
  3460. this.ultraLabel67.Name = "ultraLabel67";
  3461. this.ultraLabel67.Size = new System.Drawing.Size(56, 16);
  3462. this.ultraLabel67.TabIndex = 361;
  3463. this.ultraLabel67.Text = "供方代码";
  3464. //
  3465. // ultraTextEditor35
  3466. //
  3467. this.ultraTextEditor35.AutoSize = true;
  3468. this.ultraTextEditor35.Enabled = false;
  3469. this.ultraTextEditor35.FlatMode = true;
  3470. this.ultraTextEditor35.Location = new System.Drawing.Point(60, 5);
  3471. this.ultraTextEditor35.Name = "ultraTextEditor35";
  3472. this.ultraTextEditor35.Size = new System.Drawing.Size(84, 19);
  3473. this.ultraTextEditor35.TabIndex = 358;
  3474. this.ultraTextEditor35.Tag = "";
  3475. //
  3476. // ultraLabel30
  3477. //
  3478. this.ultraLabel30.BackColor = System.Drawing.Color.Transparent;
  3479. this.ultraLabel30.Location = new System.Drawing.Point(912, 10);
  3480. this.ultraLabel30.Name = "ultraLabel30";
  3481. this.ultraLabel30.Size = new System.Drawing.Size(56, 16);
  3482. this.ultraLabel30.TabIndex = 453;
  3483. this.ultraLabel30.Text = "供方名称";
  3484. //
  3485. // ultraTextEditor17
  3486. //
  3487. this.ultraTextEditor17.AutoSize = true;
  3488. this.ultraTextEditor17.FlatMode = true;
  3489. this.ultraTextEditor17.Location = new System.Drawing.Point(969, 7);
  3490. this.ultraTextEditor17.Multiline = true;
  3491. this.ultraTextEditor17.Name = "ultraTextEditor17";
  3492. this.ultraTextEditor17.Size = new System.Drawing.Size(129, 19);
  3493. this.ultraTextEditor17.TabIndex = 452;
  3494. this.ultraTextEditor17.Tag = "";
  3495. //
  3496. // ultraComboEditor19
  3497. //
  3498. this.ultraComboEditor19.AutoSize = true;
  3499. this.ultraComboEditor19.Location = new System.Drawing.Point(836, 9);
  3500. this.ultraComboEditor19.Name = "ultraComboEditor19";
  3501. this.ultraComboEditor19.Size = new System.Drawing.Size(70, 21);
  3502. this.ultraComboEditor19.TabIndex = 451;
  3503. //
  3504. // ultraLabel31
  3505. //
  3506. this.ultraLabel31.BackColor = System.Drawing.Color.Transparent;
  3507. this.ultraLabel31.Location = new System.Drawing.Point(589, 34);
  3508. this.ultraLabel31.Name = "ultraLabel31";
  3509. this.ultraLabel31.Size = new System.Drawing.Size(56, 16);
  3510. this.ultraLabel31.TabIndex = 450;
  3511. this.ultraLabel31.Text = "计量单位";
  3512. //
  3513. // ultraTextEditor36
  3514. //
  3515. this.ultraTextEditor36.AutoSize = true;
  3516. this.ultraTextEditor36.FlatMode = true;
  3517. this.ultraTextEditor36.Location = new System.Drawing.Point(646, 31);
  3518. this.ultraTextEditor36.Multiline = true;
  3519. this.ultraTextEditor36.Name = "ultraTextEditor36";
  3520. this.ultraTextEditor36.Size = new System.Drawing.Size(129, 19);
  3521. this.ultraTextEditor36.TabIndex = 449;
  3522. this.ultraTextEditor36.Tag = "";
  3523. //
  3524. // ultraLabel32
  3525. //
  3526. this.ultraLabel32.BackColor = System.Drawing.Color.Transparent;
  3527. this.ultraLabel32.Location = new System.Drawing.Point(387, 36);
  3528. this.ultraLabel32.Name = "ultraLabel32";
  3529. this.ultraLabel32.Size = new System.Drawing.Size(56, 16);
  3530. this.ultraLabel32.TabIndex = 448;
  3531. this.ultraLabel32.Text = "规格型号";
  3532. //
  3533. // ultraTextEditor37
  3534. //
  3535. this.ultraTextEditor37.AutoSize = true;
  3536. this.ultraTextEditor37.FlatMode = true;
  3537. this.ultraTextEditor37.Location = new System.Drawing.Point(444, 33);
  3538. this.ultraTextEditor37.Multiline = true;
  3539. this.ultraTextEditor37.Name = "ultraTextEditor37";
  3540. this.ultraTextEditor37.Size = new System.Drawing.Size(139, 19);
  3541. this.ultraTextEditor37.TabIndex = 447;
  3542. this.ultraTextEditor37.Tag = "";
  3543. //
  3544. // ultraLabel33
  3545. //
  3546. this.ultraLabel33.BackColor = System.Drawing.Color.Transparent;
  3547. this.ultraLabel33.Location = new System.Drawing.Point(204, 36);
  3548. this.ultraLabel33.Name = "ultraLabel33";
  3549. this.ultraLabel33.Size = new System.Drawing.Size(56, 16);
  3550. this.ultraLabel33.TabIndex = 446;
  3551. this.ultraLabel33.Text = "物资名称";
  3552. //
  3553. // ultraTextEditor38
  3554. //
  3555. this.ultraTextEditor38.AutoSize = true;
  3556. this.ultraTextEditor38.FlatMode = true;
  3557. this.ultraTextEditor38.Location = new System.Drawing.Point(263, 33);
  3558. this.ultraTextEditor38.Multiline = true;
  3559. this.ultraTextEditor38.Name = "ultraTextEditor38";
  3560. this.ultraTextEditor38.Size = new System.Drawing.Size(118, 19);
  3561. this.ultraTextEditor38.TabIndex = 445;
  3562. this.ultraTextEditor38.Tag = "";
  3563. //
  3564. // ultraLabel34
  3565. //
  3566. this.ultraLabel34.BackColor = System.Drawing.Color.Transparent;
  3567. this.ultraLabel34.Location = new System.Drawing.Point(589, 8);
  3568. this.ultraLabel34.Name = "ultraLabel34";
  3569. this.ultraLabel34.Size = new System.Drawing.Size(56, 16);
  3570. this.ultraLabel34.TabIndex = 444;
  3571. this.ultraLabel34.Text = "仓库名称";
  3572. //
  3573. // ultraTextEditor39
  3574. //
  3575. this.ultraTextEditor39.AutoSize = true;
  3576. this.ultraTextEditor39.FlatMode = true;
  3577. this.ultraTextEditor39.Location = new System.Drawing.Point(646, 5);
  3578. this.ultraTextEditor39.Multiline = true;
  3579. this.ultraTextEditor39.Name = "ultraTextEditor39";
  3580. this.ultraTextEditor39.Size = new System.Drawing.Size(129, 19);
  3581. this.ultraTextEditor39.TabIndex = 443;
  3582. this.ultraTextEditor39.Tag = "";
  3583. //
  3584. // ultraDateTimeEditor1
  3585. //
  3586. this.ultraDateTimeEditor1.DateTime = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  3587. this.ultraDateTimeEditor1.Enabled = false;
  3588. this.ultraDateTimeEditor1.FlatMode = true;
  3589. this.ultraDateTimeEditor1.Location = new System.Drawing.Point(265, 5);
  3590. this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
  3591. this.ultraDateTimeEditor1.Size = new System.Drawing.Size(116, 19);
  3592. this.ultraDateTimeEditor1.TabIndex = 442;
  3593. this.ultraDateTimeEditor1.Value = new System.DateTime(2016, 12, 2, 0, 0, 0, 0);
  3594. //
  3595. // ultraLabel35
  3596. //
  3597. this.ultraLabel35.BackColor = System.Drawing.Color.Transparent;
  3598. this.ultraLabel35.Location = new System.Drawing.Point(204, 5);
  3599. this.ultraLabel35.Name = "ultraLabel35";
  3600. this.ultraLabel35.Size = new System.Drawing.Size(56, 16);
  3601. this.ultraLabel35.TabIndex = 441;
  3602. this.ultraLabel35.Text = "验收日期";
  3603. //
  3604. // ultraTextEditor40
  3605. //
  3606. this.ultraTextEditor40.AutoSize = true;
  3607. this.ultraTextEditor40.FlatMode = true;
  3608. this.ultraTextEditor40.Location = new System.Drawing.Point(669, 81);
  3609. this.ultraTextEditor40.Multiline = true;
  3610. this.ultraTextEditor40.Name = "ultraTextEditor40";
  3611. this.ultraTextEditor40.Size = new System.Drawing.Size(357, 49);
  3612. this.ultraTextEditor40.TabIndex = 440;
  3613. this.ultraTextEditor40.Tag = "";
  3614. //
  3615. // ultraComboEditor20
  3616. //
  3617. this.ultraComboEditor20.AutoSize = true;
  3618. valueListItem254.DataValue = "0";
  3619. valueListItem254.DisplayText = "不启用";
  3620. valueListItem253.DataValue = valueListItem254;
  3621. valueListItem253.DisplayText = "不启用";
  3622. valueListItem252.DataValue = valueListItem253;
  3623. valueListItem252.DisplayText = "不启用";
  3624. valueListItem251.DataValue = valueListItem252;
  3625. valueListItem251.DisplayText = "不启用";
  3626. valueListItem250.DataValue = valueListItem251;
  3627. valueListItem250.DisplayText = "不启用";
  3628. valueListItem249.DataValue = valueListItem250;
  3629. valueListItem249.DisplayText = "不启用";
  3630. valueListItem260.DataValue = "1";
  3631. valueListItem260.DisplayText = "启用";
  3632. valueListItem259.DataValue = valueListItem260;
  3633. valueListItem259.DisplayText = "启用";
  3634. valueListItem258.DataValue = valueListItem259;
  3635. valueListItem258.DisplayText = "启用";
  3636. valueListItem257.DataValue = valueListItem258;
  3637. valueListItem257.DisplayText = "启用";
  3638. valueListItem256.DataValue = valueListItem257;
  3639. valueListItem256.DisplayText = "启用";
  3640. valueListItem255.DataValue = valueListItem256;
  3641. valueListItem255.DisplayText = "启用";
  3642. this.ultraComboEditor20.Items.Add(valueListItem249);
  3643. this.ultraComboEditor20.Items.Add(valueListItem255);
  3644. this.ultraComboEditor20.Location = new System.Drawing.Point(60, 33);
  3645. this.ultraComboEditor20.Name = "ultraComboEditor20";
  3646. this.ultraComboEditor20.Size = new System.Drawing.Size(129, 21);
  3647. this.ultraComboEditor20.TabIndex = 439;
  3648. //
  3649. // ultraLabel36
  3650. //
  3651. this.ultraLabel36.BackColor = System.Drawing.Color.Transparent;
  3652. this.ultraLabel36.Location = new System.Drawing.Point(3, 36);
  3653. this.ultraLabel36.Name = "ultraLabel36";
  3654. this.ultraLabel36.Size = new System.Drawing.Size(89, 20);
  3655. this.ultraLabel36.TabIndex = 438;
  3656. this.ultraLabel36.Text = "物资代码";
  3657. //
  3658. // ultraLabel50
  3659. //
  3660. this.ultraLabel50.BackColor = System.Drawing.Color.Transparent;
  3661. this.ultraLabel50.Location = new System.Drawing.Point(625, 84);
  3662. this.ultraLabel50.Name = "ultraLabel50";
  3663. this.ultraLabel50.Size = new System.Drawing.Size(89, 20);
  3664. this.ultraLabel50.TabIndex = 436;
  3665. this.ultraLabel50.Text = "备注";
  3666. //
  3667. // ultraComboEditor21
  3668. //
  3669. this.ultraComboEditor21.AutoSize = true;
  3670. this.ultraComboEditor21.Location = new System.Drawing.Point(444, 5);
  3671. this.ultraComboEditor21.Name = "ultraComboEditor21";
  3672. this.ultraComboEditor21.Size = new System.Drawing.Size(139, 21);
  3673. this.ultraComboEditor21.TabIndex = 429;
  3674. //
  3675. // ultraLabel68
  3676. //
  3677. this.ultraLabel68.BackColor = System.Drawing.Color.Transparent;
  3678. this.ultraLabel68.Location = new System.Drawing.Point(387, 8);
  3679. this.ultraLabel68.Name = "ultraLabel68";
  3680. this.ultraLabel68.Size = new System.Drawing.Size(89, 20);
  3681. this.ultraLabel68.TabIndex = 428;
  3682. this.ultraLabel68.Text = "仓库类别";
  3683. //
  3684. // ultraLabel69
  3685. //
  3686. this.ultraLabel69.BackColor = System.Drawing.Color.Transparent;
  3687. this.ultraLabel69.Location = new System.Drawing.Point(781, 10);
  3688. this.ultraLabel69.Name = "ultraLabel69";
  3689. this.ultraLabel69.Size = new System.Drawing.Size(56, 16);
  3690. this.ultraLabel69.TabIndex = 363;
  3691. this.ultraLabel69.Text = "供方代码";
  3692. //
  3693. // ultraLabel70
  3694. //
  3695. this.ultraLabel70.BackColor = System.Drawing.Color.Transparent;
  3696. this.ultraLabel70.Location = new System.Drawing.Point(3, 8);
  3697. this.ultraLabel70.Name = "ultraLabel70";
  3698. this.ultraLabel70.Size = new System.Drawing.Size(56, 16);
  3699. this.ultraLabel70.TabIndex = 361;
  3700. this.ultraLabel70.Text = "验收单号";
  3701. //
  3702. // ultraTextEditor41
  3703. //
  3704. this.ultraTextEditor41.AutoSize = true;
  3705. this.ultraTextEditor41.Enabled = false;
  3706. this.ultraTextEditor41.FlatMode = true;
  3707. this.ultraTextEditor41.Location = new System.Drawing.Point(60, 5);
  3708. this.ultraTextEditor41.Name = "ultraTextEditor41";
  3709. this.ultraTextEditor41.Size = new System.Drawing.Size(129, 19);
  3710. this.ultraTextEditor41.TabIndex = 358;
  3711. this.ultraTextEditor41.Tag = "";
  3712. //
  3713. // saveFileDialog1
  3714. //
  3715. this.saveFileDialog1.Filter = "xls文件 (*.xls)|*.xls";
  3716. this.saveFileDialog1.InitialDirectory = "C:\\";
  3717. //
  3718. // Cmb_wzdm
  3719. //
  3720. this.Cmb_wzdm.ButtonsRight.Add(editorButton4);
  3721. this.Cmb_wzdm.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  3722. appearance37.BackColor = System.Drawing.SystemColors.Window;
  3723. appearance37.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3724. this.Cmb_wzdm.DisplayLayout.Appearance = appearance37;
  3725. ultraGridColumn16.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3726. ultraGridColumn16.Header.Caption = " 物资代码";
  3727. ultraGridColumn16.Header.VisiblePosition = 0;
  3728. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 0;
  3729. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  3730. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  3731. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  3732. ultraGridColumn17.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3733. ultraGridColumn17.Header.Caption = "物资名称";
  3734. ultraGridColumn17.Header.VisiblePosition = 1;
  3735. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 2;
  3736. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  3737. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  3738. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  3739. ultraGridColumn18.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3740. ultraGridColumn18.Header.Caption = "规格型号";
  3741. ultraGridColumn18.Header.VisiblePosition = 2;
  3742. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 4;
  3743. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  3744. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  3745. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  3746. ultraGridColumn19.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3747. ultraGridColumn19.Header.Caption = "材质";
  3748. ultraGridColumn19.Header.VisiblePosition = 3;
  3749. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 6;
  3750. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  3751. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  3752. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  3753. ultraGridColumn20.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3754. ultraGridColumn20.Header.Caption = "计量单位";
  3755. ultraGridColumn20.Header.VisiblePosition = 4;
  3756. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 8;
  3757. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  3758. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  3759. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  3760. ultraGridBand4.Columns.AddRange(new object[] {
  3761. ultraGridColumn16,
  3762. ultraGridColumn17,
  3763. ultraGridColumn18,
  3764. ultraGridColumn19,
  3765. ultraGridColumn20});
  3766. ultraGridBand4.UseRowLayout = true;
  3767. this.Cmb_wzdm.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  3768. this.Cmb_wzdm.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3769. this.Cmb_wzdm.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3770. appearance38.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3771. appearance38.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3772. appearance38.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3773. appearance38.BorderColor = System.Drawing.SystemColors.Window;
  3774. this.Cmb_wzdm.DisplayLayout.GroupByBox.Appearance = appearance38;
  3775. appearance39.ForeColor = System.Drawing.SystemColors.GrayText;
  3776. this.Cmb_wzdm.DisplayLayout.GroupByBox.BandLabelAppearance = appearance39;
  3777. this.Cmb_wzdm.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3778. appearance40.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3779. appearance40.BackColor2 = System.Drawing.SystemColors.Control;
  3780. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3781. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  3782. this.Cmb_wzdm.DisplayLayout.GroupByBox.PromptAppearance = appearance40;
  3783. this.Cmb_wzdm.DisplayLayout.MaxColScrollRegions = 1;
  3784. this.Cmb_wzdm.DisplayLayout.MaxRowScrollRegions = 1;
  3785. appearance41.BackColor = System.Drawing.SystemColors.Window;
  3786. appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
  3787. this.Cmb_wzdm.DisplayLayout.Override.ActiveCellAppearance = appearance41;
  3788. appearance42.BackColor = System.Drawing.SystemColors.Highlight;
  3789. appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
  3790. this.Cmb_wzdm.DisplayLayout.Override.ActiveRowAppearance = appearance42;
  3791. this.Cmb_wzdm.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3792. this.Cmb_wzdm.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3793. appearance43.BackColor = System.Drawing.SystemColors.Window;
  3794. this.Cmb_wzdm.DisplayLayout.Override.CardAreaAppearance = appearance43;
  3795. appearance44.BorderColor = System.Drawing.Color.Silver;
  3796. appearance44.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3797. this.Cmb_wzdm.DisplayLayout.Override.CellAppearance = appearance44;
  3798. this.Cmb_wzdm.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3799. this.Cmb_wzdm.DisplayLayout.Override.CellPadding = 0;
  3800. appearance45.BackColor = System.Drawing.SystemColors.Control;
  3801. appearance45.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3802. appearance45.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3803. appearance45.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3804. appearance45.BorderColor = System.Drawing.SystemColors.Window;
  3805. this.Cmb_wzdm.DisplayLayout.Override.GroupByRowAppearance = appearance45;
  3806. appearance46.TextHAlign = Infragistics.Win.HAlign.Left;
  3807. this.Cmb_wzdm.DisplayLayout.Override.HeaderAppearance = appearance46;
  3808. this.Cmb_wzdm.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3809. this.Cmb_wzdm.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3810. appearance47.BackColor = System.Drawing.SystemColors.Window;
  3811. appearance47.BorderColor = System.Drawing.Color.Silver;
  3812. this.Cmb_wzdm.DisplayLayout.Override.RowAppearance = appearance47;
  3813. this.Cmb_wzdm.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3814. appearance48.BackColor = System.Drawing.SystemColors.ControlLight;
  3815. this.Cmb_wzdm.DisplayLayout.Override.TemplateAddRowAppearance = appearance48;
  3816. this.Cmb_wzdm.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3817. this.Cmb_wzdm.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3818. this.Cmb_wzdm.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3819. this.Cmb_wzdm.DisplayMember = "";
  3820. this.Cmb_wzdm.Location = new System.Drawing.Point(61, 33);
  3821. this.Cmb_wzdm.Name = "Cmb_wzdm";
  3822. this.Cmb_wzdm.Size = new System.Drawing.Size(130, 21);
  3823. this.Cmb_wzdm.TabIndex = 628;
  3824. this.Cmb_wzdm.ValueMember = "";
  3825. this.Cmb_wzdm.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmb_wzdm_EditorButtonClick);
  3826. //
  3827. // Cmb_CKDM
  3828. //
  3829. this.Cmb_CKDM.ButtonsRight.Add(editorButton3);
  3830. this.Cmb_CKDM.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  3831. appearance25.BackColor = System.Drawing.SystemColors.Window;
  3832. appearance25.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3833. this.Cmb_CKDM.DisplayLayout.Appearance = appearance25;
  3834. ultraGridColumn11.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3835. ultraGridColumn11.Header.Caption = " 物资代码";
  3836. ultraGridColumn11.Header.VisiblePosition = 0;
  3837. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 0;
  3838. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  3839. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  3840. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  3841. ultraGridColumn12.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3842. ultraGridColumn12.Header.Caption = "物资名称";
  3843. ultraGridColumn12.Header.VisiblePosition = 1;
  3844. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 2;
  3845. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  3846. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  3847. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  3848. ultraGridColumn13.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3849. ultraGridColumn13.Header.Caption = "规格型号";
  3850. ultraGridColumn13.Header.VisiblePosition = 2;
  3851. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 4;
  3852. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  3853. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  3854. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  3855. ultraGridColumn14.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3856. ultraGridColumn14.Header.Caption = "材质";
  3857. ultraGridColumn14.Header.VisiblePosition = 3;
  3858. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 6;
  3859. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  3860. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  3861. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  3862. ultraGridColumn15.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3863. ultraGridColumn15.Header.Caption = "计量单位";
  3864. ultraGridColumn15.Header.VisiblePosition = 4;
  3865. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 8;
  3866. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  3867. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  3868. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  3869. ultraGridBand3.Columns.AddRange(new object[] {
  3870. ultraGridColumn11,
  3871. ultraGridColumn12,
  3872. ultraGridColumn13,
  3873. ultraGridColumn14,
  3874. ultraGridColumn15});
  3875. ultraGridBand3.UseRowLayout = true;
  3876. this.Cmb_CKDM.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  3877. this.Cmb_CKDM.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3878. this.Cmb_CKDM.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3879. appearance26.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3880. appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3881. appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3882. appearance26.BorderColor = System.Drawing.SystemColors.Window;
  3883. this.Cmb_CKDM.DisplayLayout.GroupByBox.Appearance = appearance26;
  3884. appearance27.ForeColor = System.Drawing.SystemColors.GrayText;
  3885. this.Cmb_CKDM.DisplayLayout.GroupByBox.BandLabelAppearance = appearance27;
  3886. this.Cmb_CKDM.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3887. appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3888. appearance28.BackColor2 = System.Drawing.SystemColors.Control;
  3889. appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3890. appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
  3891. this.Cmb_CKDM.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
  3892. this.Cmb_CKDM.DisplayLayout.MaxColScrollRegions = 1;
  3893. this.Cmb_CKDM.DisplayLayout.MaxRowScrollRegions = 1;
  3894. appearance29.BackColor = System.Drawing.SystemColors.Window;
  3895. appearance29.ForeColor = System.Drawing.SystemColors.ControlText;
  3896. this.Cmb_CKDM.DisplayLayout.Override.ActiveCellAppearance = appearance29;
  3897. appearance30.BackColor = System.Drawing.SystemColors.Highlight;
  3898. appearance30.ForeColor = System.Drawing.SystemColors.HighlightText;
  3899. this.Cmb_CKDM.DisplayLayout.Override.ActiveRowAppearance = appearance30;
  3900. this.Cmb_CKDM.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  3901. this.Cmb_CKDM.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  3902. appearance31.BackColor = System.Drawing.SystemColors.Window;
  3903. this.Cmb_CKDM.DisplayLayout.Override.CardAreaAppearance = appearance31;
  3904. appearance32.BorderColor = System.Drawing.Color.Silver;
  3905. appearance32.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  3906. this.Cmb_CKDM.DisplayLayout.Override.CellAppearance = appearance32;
  3907. this.Cmb_CKDM.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  3908. this.Cmb_CKDM.DisplayLayout.Override.CellPadding = 0;
  3909. appearance33.BackColor = System.Drawing.SystemColors.Control;
  3910. appearance33.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3911. appearance33.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  3912. appearance33.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3913. appearance33.BorderColor = System.Drawing.SystemColors.Window;
  3914. this.Cmb_CKDM.DisplayLayout.Override.GroupByRowAppearance = appearance33;
  3915. appearance34.TextHAlign = Infragistics.Win.HAlign.Left;
  3916. this.Cmb_CKDM.DisplayLayout.Override.HeaderAppearance = appearance34;
  3917. this.Cmb_CKDM.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  3918. this.Cmb_CKDM.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  3919. appearance35.BackColor = System.Drawing.SystemColors.Window;
  3920. appearance35.BorderColor = System.Drawing.Color.Silver;
  3921. this.Cmb_CKDM.DisplayLayout.Override.RowAppearance = appearance35;
  3922. this.Cmb_CKDM.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  3923. appearance36.BackColor = System.Drawing.SystemColors.ControlLight;
  3924. this.Cmb_CKDM.DisplayLayout.Override.TemplateAddRowAppearance = appearance36;
  3925. this.Cmb_CKDM.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  3926. this.Cmb_CKDM.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  3927. this.Cmb_CKDM.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  3928. this.Cmb_CKDM.DisplayMember = "";
  3929. this.Cmb_CKDM.Location = new System.Drawing.Point(444, 5);
  3930. this.Cmb_CKDM.Name = "Cmb_CKDM";
  3931. this.Cmb_CKDM.Size = new System.Drawing.Size(139, 21);
  3932. this.Cmb_CKDM.TabIndex = 629;
  3933. this.Cmb_CKDM.ValueMember = "";
  3934. this.Cmb_CKDM.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmb_CKDM_EditorButtonClick);
  3935. //
  3936. // ultraCombo1
  3937. //
  3938. this.ultraCombo1.ButtonsRight.Add(editorButton2);
  3939. this.ultraCombo1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  3940. appearance13.BackColor = System.Drawing.SystemColors.Window;
  3941. appearance13.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  3942. this.ultraCombo1.DisplayLayout.Appearance = appearance13;
  3943. ultraGridColumn6.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3944. ultraGridColumn6.Header.Caption = " 物资代码";
  3945. ultraGridColumn6.Header.VisiblePosition = 0;
  3946. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 0;
  3947. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  3948. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  3949. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  3950. ultraGridColumn7.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3951. ultraGridColumn7.Header.Caption = "物资名称";
  3952. ultraGridColumn7.Header.VisiblePosition = 1;
  3953. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 2;
  3954. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  3955. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  3956. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  3957. ultraGridColumn8.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3958. ultraGridColumn8.Header.Caption = "规格型号";
  3959. ultraGridColumn8.Header.VisiblePosition = 2;
  3960. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 4;
  3961. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  3962. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  3963. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  3964. ultraGridColumn9.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3965. ultraGridColumn9.Header.Caption = "材质";
  3966. ultraGridColumn9.Header.VisiblePosition = 3;
  3967. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 6;
  3968. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  3969. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  3970. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  3971. ultraGridColumn10.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3972. ultraGridColumn10.Header.Caption = "计量单位";
  3973. ultraGridColumn10.Header.VisiblePosition = 4;
  3974. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 8;
  3975. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  3976. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  3977. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  3978. ultraGridBand2.Columns.AddRange(new object[] {
  3979. ultraGridColumn6,
  3980. ultraGridColumn7,
  3981. ultraGridColumn8,
  3982. ultraGridColumn9,
  3983. ultraGridColumn10});
  3984. ultraGridBand2.UseRowLayout = true;
  3985. this.ultraCombo1.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  3986. this.ultraCombo1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3987. this.ultraCombo1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3988. appearance14.BackColor = System.Drawing.SystemColors.ActiveBorder;
  3989. appearance14.BackColor2 = System.Drawing.SystemColors.ControlDark;
  3990. appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  3991. appearance14.BorderColor = System.Drawing.SystemColors.Window;
  3992. this.ultraCombo1.DisplayLayout.GroupByBox.Appearance = appearance14;
  3993. appearance15.ForeColor = System.Drawing.SystemColors.GrayText;
  3994. this.ultraCombo1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance15;
  3995. this.ultraCombo1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  3996. appearance16.BackColor = System.Drawing.SystemColors.ControlLightLight;
  3997. appearance16.BackColor2 = System.Drawing.SystemColors.Control;
  3998. appearance16.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  3999. appearance16.ForeColor = System.Drawing.SystemColors.GrayText;
  4000. this.ultraCombo1.DisplayLayout.GroupByBox.PromptAppearance = appearance16;
  4001. this.ultraCombo1.DisplayLayout.MaxColScrollRegions = 1;
  4002. this.ultraCombo1.DisplayLayout.MaxRowScrollRegions = 1;
  4003. appearance17.BackColor = System.Drawing.SystemColors.Window;
  4004. appearance17.ForeColor = System.Drawing.SystemColors.ControlText;
  4005. this.ultraCombo1.DisplayLayout.Override.ActiveCellAppearance = appearance17;
  4006. appearance18.BackColor = System.Drawing.SystemColors.Highlight;
  4007. appearance18.ForeColor = System.Drawing.SystemColors.HighlightText;
  4008. this.ultraCombo1.DisplayLayout.Override.ActiveRowAppearance = appearance18;
  4009. this.ultraCombo1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  4010. this.ultraCombo1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  4011. appearance19.BackColor = System.Drawing.SystemColors.Window;
  4012. this.ultraCombo1.DisplayLayout.Override.CardAreaAppearance = appearance19;
  4013. appearance20.BorderColor = System.Drawing.Color.Silver;
  4014. appearance20.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  4015. this.ultraCombo1.DisplayLayout.Override.CellAppearance = appearance20;
  4016. this.ultraCombo1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  4017. this.ultraCombo1.DisplayLayout.Override.CellPadding = 0;
  4018. appearance21.BackColor = System.Drawing.SystemColors.Control;
  4019. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4020. appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  4021. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4022. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  4023. this.ultraCombo1.DisplayLayout.Override.GroupByRowAppearance = appearance21;
  4024. appearance22.TextHAlign = Infragistics.Win.HAlign.Left;
  4025. this.ultraCombo1.DisplayLayout.Override.HeaderAppearance = appearance22;
  4026. this.ultraCombo1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  4027. this.ultraCombo1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  4028. appearance23.BackColor = System.Drawing.SystemColors.Window;
  4029. appearance23.BorderColor = System.Drawing.Color.Silver;
  4030. this.ultraCombo1.DisplayLayout.Override.RowAppearance = appearance23;
  4031. this.ultraCombo1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  4032. appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
  4033. this.ultraCombo1.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
  4034. this.ultraCombo1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  4035. this.ultraCombo1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  4036. this.ultraCombo1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  4037. this.ultraCombo1.DisplayMember = "";
  4038. this.ultraCombo1.Location = new System.Drawing.Point(59, 106);
  4039. this.ultraCombo1.Name = "ultraCombo1";
  4040. this.ultraCombo1.Size = new System.Drawing.Size(130, 21);
  4041. this.ultraCombo1.TabIndex = 630;
  4042. this.ultraCombo1.ValueMember = "";
  4043. this.ultraCombo1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.ultraCombo1_EditorButtonClick);
  4044. //
  4045. // Cmd_GFCode
  4046. //
  4047. this.Cmd_GFCode.ButtonsRight.Add(editorButton1);
  4048. this.Cmd_GFCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  4049. appearance1.BackColor = System.Drawing.SystemColors.Window;
  4050. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  4051. this.Cmd_GFCode.DisplayLayout.Appearance = appearance1;
  4052. ultraGridColumn1.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  4053. ultraGridColumn1.Header.Caption = " 物资代码";
  4054. ultraGridColumn1.Header.VisiblePosition = 0;
  4055. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  4056. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  4057. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  4058. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  4059. ultraGridColumn2.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  4060. ultraGridColumn2.Header.Caption = "物资名称";
  4061. ultraGridColumn2.Header.VisiblePosition = 1;
  4062. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  4063. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  4064. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  4065. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  4066. ultraGridColumn3.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  4067. ultraGridColumn3.Header.Caption = "规格型号";
  4068. ultraGridColumn3.Header.VisiblePosition = 2;
  4069. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
  4070. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  4071. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  4072. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  4073. ultraGridColumn4.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  4074. ultraGridColumn4.Header.Caption = "材质";
  4075. ultraGridColumn4.Header.VisiblePosition = 3;
  4076. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
  4077. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  4078. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  4079. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  4080. ultraGridColumn5.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  4081. ultraGridColumn5.Header.Caption = "计量单位";
  4082. ultraGridColumn5.Header.VisiblePosition = 4;
  4083. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
  4084. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  4085. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  4086. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  4087. ultraGridBand1.Columns.AddRange(new object[] {
  4088. ultraGridColumn1,
  4089. ultraGridColumn2,
  4090. ultraGridColumn3,
  4091. ultraGridColumn4,
  4092. ultraGridColumn5});
  4093. ultraGridBand1.UseRowLayout = true;
  4094. this.Cmd_GFCode.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  4095. this.Cmd_GFCode.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4096. this.Cmd_GFCode.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  4097. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  4098. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4099. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  4100. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  4101. this.Cmd_GFCode.DisplayLayout.GroupByBox.Appearance = appearance2;
  4102. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  4103. this.Cmd_GFCode.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
  4104. this.Cmd_GFCode.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  4105. appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
  4106. appearance4.BackColor2 = System.Drawing.SystemColors.Control;
  4107. appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4108. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  4109. this.Cmd_GFCode.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
  4110. this.Cmd_GFCode.DisplayLayout.MaxColScrollRegions = 1;
  4111. this.Cmd_GFCode.DisplayLayout.MaxRowScrollRegions = 1;
  4112. appearance5.BackColor = System.Drawing.SystemColors.Window;
  4113. appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
  4114. this.Cmd_GFCode.DisplayLayout.Override.ActiveCellAppearance = appearance5;
  4115. appearance6.BackColor = System.Drawing.SystemColors.Highlight;
  4116. appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
  4117. this.Cmd_GFCode.DisplayLayout.Override.ActiveRowAppearance = appearance6;
  4118. this.Cmd_GFCode.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  4119. this.Cmd_GFCode.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  4120. appearance7.BackColor = System.Drawing.SystemColors.Window;
  4121. this.Cmd_GFCode.DisplayLayout.Override.CardAreaAppearance = appearance7;
  4122. appearance8.BorderColor = System.Drawing.Color.Silver;
  4123. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  4124. this.Cmd_GFCode.DisplayLayout.Override.CellAppearance = appearance8;
  4125. this.Cmd_GFCode.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  4126. this.Cmd_GFCode.DisplayLayout.Override.CellPadding = 0;
  4127. appearance9.BackColor = System.Drawing.SystemColors.Control;
  4128. appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
  4129. appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  4130. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  4131. appearance9.BorderColor = System.Drawing.SystemColors.Window;
  4132. this.Cmd_GFCode.DisplayLayout.Override.GroupByRowAppearance = appearance9;
  4133. appearance10.TextHAlign = Infragistics.Win.HAlign.Left;
  4134. this.Cmd_GFCode.DisplayLayout.Override.HeaderAppearance = appearance10;
  4135. this.Cmd_GFCode.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  4136. this.Cmd_GFCode.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  4137. appearance11.BackColor = System.Drawing.SystemColors.Window;
  4138. appearance11.BorderColor = System.Drawing.Color.Silver;
  4139. this.Cmd_GFCode.DisplayLayout.Override.RowAppearance = appearance11;
  4140. this.Cmd_GFCode.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  4141. appearance12.BackColor = System.Drawing.SystemColors.ControlLight;
  4142. this.Cmd_GFCode.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
  4143. this.Cmd_GFCode.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  4144. this.Cmd_GFCode.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  4145. this.Cmd_GFCode.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  4146. this.Cmd_GFCode.DisplayMember = "";
  4147. this.Cmd_GFCode.Location = new System.Drawing.Point(59, 82);
  4148. this.Cmd_GFCode.Name = "Cmd_GFCode";
  4149. this.Cmd_GFCode.Size = new System.Drawing.Size(130, 21);
  4150. this.Cmd_GFCode.TabIndex = 631;
  4151. this.Cmd_GFCode.ValueMember = "";
  4152. this.Cmd_GFCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Cmd_GFCode_EditorButtonClick);
  4153. //
  4154. // AccpetSheetNew
  4155. //
  4156. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  4157. this.ClientSize = new System.Drawing.Size(1169, 518);
  4158. this.Controls.Add(this.panel2);
  4159. this.Controls.Add(this.ultraExpandableGroupBox1);
  4160. this.Controls.Add(this.ultraGroupBox1);
  4161. this.Controls.Add(this.panel1);
  4162. this.Name = "AccpetSheetNew";
  4163. this.Text = "领料单管理";
  4164. this.Load += new System.EventHandler(this.AccpetSheet_Load);
  4165. ((System.ComponentModel.ISupportInitialize)(this.cmb_StorageLB)).EndInit();
  4166. this.panel1.ResumeLayout(false);
  4167. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  4168. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  4169. this.ultraGroupBox1.ResumeLayout(false);
  4170. ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).EndInit();
  4171. ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).EndInit();
  4172. ((System.ComponentModel.ISupportInitialize)(this.txt_ckm)).EndInit();
  4173. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
  4174. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
  4175. ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).EndInit();
  4176. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  4177. this.ultraExpandableGroupBox1.ResumeLayout(false);
  4178. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  4179. ((System.ComponentModel.ISupportInitialize)(this.txt_CKMC)).EndInit();
  4180. ((System.ComponentModel.ISupportInitialize)(this.Cmb_Checker)).EndInit();
  4181. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).EndInit();
  4182. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).EndInit();
  4183. ((System.ComponentModel.ISupportInitialize)(this.txt_YR)).EndInit();
  4184. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanR)).EndInit();
  4185. ((System.ComponentModel.ISupportInitialize)(this.txt_ylbz)).EndInit();
  4186. ((System.ComponentModel.ISupportInitialize)(this.date_td)).EndInit();
  4187. ((System.ComponentModel.ISupportInitialize)(this.txt_DZ)).EndInit();
  4188. ((System.ComponentModel.ISupportInitialize)(this.txt_CZ)).EndInit();
  4189. ((System.ComponentModel.ISupportInitialize)(this.txt_Moneny)).EndInit();
  4190. ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).EndInit();
  4191. ((System.ComponentModel.ISupportInitialize)(this.txt_YSS)).EndInit();
  4192. ((System.ComponentModel.ISupportInitialize)(this.txt_qlsl)).EndInit();
  4193. ((System.ComponentModel.ISupportInitialize)(this.txt_GYMC)).EndInit();
  4194. ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).EndInit();
  4195. ((System.ComponentModel.ISupportInitialize)(this.txt_GGXH)).EndInit();
  4196. ((System.ComponentModel.ISupportInitialize)(this.txt_WZMC)).EndInit();
  4197. ((System.ComponentModel.ISupportInitialize)(this.date_YS)).EndInit();
  4198. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
  4199. ((System.ComponentModel.ISupportInitialize)(this.txt_BH)).EndInit();
  4200. this.panel2.ResumeLayout(false);
  4201. ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).EndInit();
  4202. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  4203. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  4204. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  4205. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  4206. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  4207. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  4208. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  4209. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  4210. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  4211. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  4212. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  4213. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  4214. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  4215. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  4216. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  4217. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  4218. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  4219. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
  4220. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
  4221. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
  4222. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
  4223. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
  4224. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
  4225. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
  4226. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
  4227. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
  4228. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
  4229. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
  4230. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
  4231. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
  4232. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  4233. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
  4234. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
  4235. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
  4236. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
  4237. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
  4238. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
  4239. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
  4240. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
  4241. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
  4242. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).EndInit();
  4243. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).EndInit();
  4244. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).EndInit();
  4245. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).EndInit();
  4246. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).EndInit();
  4247. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).EndInit();
  4248. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).EndInit();
  4249. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).EndInit();
  4250. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).EndInit();
  4251. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).EndInit();
  4252. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).EndInit();
  4253. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).EndInit();
  4254. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
  4255. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).EndInit();
  4256. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).EndInit();
  4257. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).EndInit();
  4258. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).EndInit();
  4259. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).EndInit();
  4260. ((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
  4261. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).EndInit();
  4262. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).EndInit();
  4263. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor21)).EndInit();
  4264. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).EndInit();
  4265. ((System.ComponentModel.ISupportInitialize)(this.Cmb_wzdm)).EndInit();
  4266. ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKDM)).EndInit();
  4267. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
  4268. ((System.ComponentModel.ISupportInitialize)(this.Cmd_GFCode)).EndInit();
  4269. this.ResumeLayout(false);
  4270. }
  4271. #endregion
  4272. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wzdm;
  4273. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_WZDM;
  4274. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Time;
  4275. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
  4276. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
  4277. private Infragistics.Win.Misc.UltraLabel Lab_To;
  4278. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor date_YS;
  4279. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  4280. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  4281. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  4282. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WZMC;
  4283. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  4284. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GGXH;
  4285. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  4286. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_JLDW;
  4287. private Infragistics.Win.Misc.UltraLabel ultraLabel74;
  4288. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Price;
  4289. private Infragistics.Win.Misc.UltraLabel ultraLabel73;
  4290. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YSS;
  4291. private Infragistics.Win.Misc.UltraLabel ultraLabel72;
  4292. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_qlsl;
  4293. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  4294. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GYMC;
  4295. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  4296. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
  4297. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor19;
  4298. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  4299. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor36;
  4300. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  4301. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor37;
  4302. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  4303. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor38;
  4304. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  4305. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor39;
  4306. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
  4307. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  4308. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor40;
  4309. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor20;
  4310. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  4311. private Infragistics.Win.Misc.UltraLabel ultraLabel50;
  4312. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor21;
  4313. private Infragistics.Win.Misc.UltraLabel ultraLabel68;
  4314. private Infragistics.Win.Misc.UltraLabel ultraLabel69;
  4315. private Infragistics.Win.Misc.UltraLabel ultraLabel70;
  4316. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor41;
  4317. private Infragistics.Win.Misc.UltraLabel ultraLabel76;
  4318. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Moneny;
  4319. private Infragistics.Win.Misc.UltraLabel ultraLabel77;
  4320. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CZ;
  4321. private Infragistics.Win.Misc.UltraLabel ultraLabel78;
  4322. private Infragistics.Win.Misc.UltraLabel ultraLabel79;
  4323. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DZ;
  4324. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ckm;
  4325. private Infragistics.Win.Misc.UltraLabel ultraLabel81;
  4326. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ylbz;
  4327. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor date_td;
  4328. private Infragistics.Win.Misc.UltraLabel ultraLabel80;
  4329. private Infragistics.Win.Misc.UltraLabel ultraLabel83;
  4330. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YR;
  4331. private Infragistics.Win.Misc.UltraLabel ultraLabel82;
  4332. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanR;
  4333. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wz;
  4334. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_wzmc;
  4335. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Spet;
  4336. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Spet;
  4337. private Infragistics.Win.Misc.UltraLabel ultraLabel84;
  4338. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor42;
  4339. private Infragistics.Win.Misc.UltraLabel ultraLabel85;
  4340. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  4341. private Infragistics.Win.Misc.UltraLabel ultraLabel86;
  4342. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor43;
  4343. private Infragistics.Win.Misc.UltraLabel ultraLabel87;
  4344. private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_Checker;
  4345. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_CKMC;
  4346. private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_wzdm;
  4347. private Infragistics.Win.UltraWinGrid.UltraCombo Cmb_CKDM;
  4348. private Infragistics.Win.UltraWinGrid.UltraCombo ultraCombo1;
  4349. private Infragistics.Win.UltraWinGrid.UltraCombo Cmd_GFCode;
  4350. }
  4351. }