FrmMidStorsNew.cs 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558
  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using Core.Mes.ClientFrameWork;
  7. using Core.Mes.IBaseInterface;
  8. using System.Data;
  9. using System.Runtime.InteropServices;
  10. using Core.XgMes.Client.JGKC.TurnoffSendManager;
  11. using Infragistics.Win.UltraWinEditors;
  12. namespace Core.XgMes.Client.JGKC.MaterialManager
  13. {
  14. /// <summary>
  15. /// FrmStors的摘要说明。
  16. /// </summary>
  17. public class FrmMidStorsNew : Mes.ClientFrameWork.FrmBase
  18. {
  19. private System.Windows.Forms.Panel panel1;
  20. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  21. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  22. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  23. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  24. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  25. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  26. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  27. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  28. private System.Windows.Forms.Panel panel2;
  29. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  30. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  31. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CSZ;
  32. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  33. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  34. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  35. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  36. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  37. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  38. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  39. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  40. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  41. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  42. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  43. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  44. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  45. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  46. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  47. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  48. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  49. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  50. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  51. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  52. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  53. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  54. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  55. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  56. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  57. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  58. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  59. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  60. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  61. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  62. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  63. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  64. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  65. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  66. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  67. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKLB;
  68. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  69. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
  70. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  71. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
  72. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  73. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
  74. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
  75. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
  76. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  77. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
  78. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  79. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
  80. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  81. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
  82. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  83. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
  84. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  85. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
  86. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  87. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
  88. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  89. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
  90. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  91. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  92. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
  93. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  94. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  95. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  96. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
  97. private Infragistics.Win.Misc.UltraLabel ultraLabel48;
  98. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
  99. private Infragistics.Win.Misc.UltraLabel ultraLabel49;
  100. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
  101. private Infragistics.Win.Misc.UltraLabel ultraLabel51;
  102. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
  103. private Infragistics.Win.Misc.UltraLabel ultraLabel52;
  104. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
  105. private Infragistics.Win.Misc.UltraLabel ultraLabel53;
  106. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
  107. private Infragistics.Win.Misc.UltraLabel ultraLabel54;
  108. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
  109. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
  110. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
  111. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  112. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor12;
  113. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  114. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor13;
  115. private Infragistics.Win.Misc.UltraLabel ultraLabel57;
  116. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor14;
  117. private Infragistics.Win.Misc.UltraLabel ultraLabel58;
  118. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor15;
  119. private Infragistics.Win.Misc.UltraLabel ultraLabel59;
  120. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor16;
  121. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  122. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor17;
  123. private Infragistics.Win.Misc.UltraLabel ultraLabel61;
  124. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor18;
  125. private Infragistics.Win.Misc.UltraLabel ultraLabel62;
  126. private Infragistics.Win.Misc.UltraLabel ultraLabel63;
  127. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor31;
  128. private Infragistics.Win.Misc.UltraLabel ultraLabel64;
  129. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor32;
  130. private Infragistics.Win.Misc.UltraLabel ultraLabel65;
  131. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor33;
  132. private Infragistics.Win.Misc.UltraLabel ultraLabel66;
  133. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor34;
  134. private Infragistics.Win.Misc.UltraLabel ultraLabel67;
  135. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor35;
  136. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_LKC;
  137. private Infragistics.Win.Misc.UltraLabel ultraLabel71;
  138. private Infragistics.Win.Misc.UltraLabel ultraLabel75;
  139. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
  140. private Infragistics.Win.UltraWinGrid.UltraGrid gd_Stock;
  141. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Time;
  142. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
  143. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
  144. private Infragistics.Win.Misc.UltraLabel Lab_To;
  145. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  146. private Infragistics.Win.Misc.UltraLabel ultraLabel50;
  147. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  148. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Price;
  149. private Infragistics.Win.Misc.UltraLabel ultraLabel36;
  150. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_JLDW;
  151. private Infragistics.Win.Misc.UltraLabel ultraLabel29;
  152. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Spec;
  153. public Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor17;
  154. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  155. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor36;
  156. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  157. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor19;
  158. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  159. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  160. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor37;
  161. private Infragistics.Win.Misc.UltraLabel ultraLabel28;
  162. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor38;
  163. private Infragistics.Win.Misc.UltraLabel ultraLabel30;
  164. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor39;
  165. public Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor40;
  166. private Infragistics.Win.Misc.UltraLabel ultraLabel31;
  167. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor41;
  168. private Infragistics.Win.Misc.UltraLabel ultraLabel32;
  169. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor20;
  170. private Infragistics.Win.Misc.UltraLabel ultraLabel33;
  171. private Infragistics.Win.Misc.UltraLabel ultraLabel34;
  172. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor42;
  173. private Infragistics.Win.Misc.UltraLabel ultraLabel35;
  174. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor43;
  175. private Infragistics.Win.Misc.UltraLabel ultraLabel68;
  176. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_GF;
  177. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_WZ;
  178. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_LB;
  179. private Infragistics.Win.UltraWinEditors.UltraComboEditor Cmb_CKLB;
  180. private UltraTextEditor txt_wzdm;
  181. private UltraCheckEditor Chk_wzdm;
  182. private UltraTextEditor txt_Spet;
  183. private UltraCheckEditor chk_Spet;
  184. private UltraTextEditor txt_wz;
  185. private UltraCheckEditor chk_wz;
  186. private Infragistics.Win.UltraWinGrid.UltraCombo ultraCombo1;
  187. private Infragistics.Win.Misc.UltraLabel ultraLabel80;
  188. private UltraTextEditor ultraTextEditor44;
  189. private Infragistics.Win.Misc.UltraLabel ultraLabel81;
  190. private Infragistics.Win.Misc.UltraLabel ultraLabel69;
  191. private UltraTextEditor ultraTextEditor45;
  192. private System.ComponentModel.IContainer components;
  193. public FrmMidStorsNew()
  194. {
  195. //
  196. // Windows 窗体设计器支持所必需的
  197. //
  198. InitializeComponent();
  199. //
  200. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  201. //
  202. }
  203. /// <summary>
  204. /// 清理所有正在使用的资源。
  205. /// </summary>
  206. protected override void Dispose( bool disposing )
  207. {
  208. if( disposing )
  209. {
  210. if(components != null)
  211. {
  212. components.Dispose();
  213. }
  214. }
  215. base.Dispose( disposing );
  216. }
  217. #region Windows 窗体设计器生成的代码
  218. /// <summary>
  219. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  220. /// 此方法的内容。
  221. /// </summary>
  222. private void InitializeComponent()
  223. {
  224. this.components = new System.ComponentModel.Container();
  225. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  226. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  227. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  228. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  229. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  230. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  231. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  232. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  233. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  234. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  235. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  236. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  237. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  238. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  239. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  240. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  241. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  242. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  243. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  244. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  245. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  246. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  247. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  248. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL");
  249. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  250. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  251. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_CODE");
  252. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  253. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  254. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  255. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("IS_ZEROSTOCK");
  256. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIALCODE");
  257. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPEC");
  258. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNITS");
  259. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLAN_PRICE");
  260. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PROVIDER");
  261. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCK_INITIAL");
  262. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RECODER");
  263. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCK_TIME");
  264. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  265. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCK_CODE");
  266. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_NAME");
  267. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB", 0);
  268. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL_LB_NAME", 1);
  269. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CURRENT_PRICE", 2);
  270. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCK_NAME", 3);
  271. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  272. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  273. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  274. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  275. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  276. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  277. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  278. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  279. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  280. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  281. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  282. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  283. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  284. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  285. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  286. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  287. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  288. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  289. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  290. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  291. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  292. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  293. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  294. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  295. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  296. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  297. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  298. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  299. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  300. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  301. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  302. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  303. Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
  304. Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
  305. Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
  306. Infragistics.Win.ValueListItem valueListItem42 = new Infragistics.Win.ValueListItem();
  307. Infragistics.Win.ValueListItem valueListItem43 = new Infragistics.Win.ValueListItem();
  308. Infragistics.Win.ValueListItem valueListItem44 = new Infragistics.Win.ValueListItem();
  309. Infragistics.Win.ValueListItem valueListItem45 = new Infragistics.Win.ValueListItem();
  310. Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
  311. Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
  312. Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
  313. Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
  314. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  315. Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
  316. Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
  317. Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
  318. Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
  319. Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
  320. Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
  321. Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
  322. Infragistics.Win.ValueListItem valueListItem58 = new Infragistics.Win.ValueListItem();
  323. Infragistics.Win.ValueListItem valueListItem59 = new Infragistics.Win.ValueListItem();
  324. Infragistics.Win.ValueListItem valueListItem60 = new Infragistics.Win.ValueListItem();
  325. Infragistics.Win.ValueListItem valueListItem61 = new Infragistics.Win.ValueListItem();
  326. Infragistics.Win.ValueListItem valueListItem62 = new Infragistics.Win.ValueListItem();
  327. Infragistics.Win.ValueListItem valueListItem63 = new Infragistics.Win.ValueListItem();
  328. Infragistics.Win.ValueListItem valueListItem64 = new Infragistics.Win.ValueListItem();
  329. Infragistics.Win.ValueListItem valueListItem65 = new Infragistics.Win.ValueListItem();
  330. Infragistics.Win.ValueListItem valueListItem66 = new Infragistics.Win.ValueListItem();
  331. Infragistics.Win.ValueListItem valueListItem67 = new Infragistics.Win.ValueListItem();
  332. Infragistics.Win.ValueListItem valueListItem68 = new Infragistics.Win.ValueListItem();
  333. Infragistics.Win.ValueListItem valueListItem69 = new Infragistics.Win.ValueListItem();
  334. Infragistics.Win.ValueListItem valueListItem70 = new Infragistics.Win.ValueListItem();
  335. Infragistics.Win.ValueListItem valueListItem71 = new Infragistics.Win.ValueListItem();
  336. Infragistics.Win.ValueListItem valueListItem72 = new Infragistics.Win.ValueListItem();
  337. Infragistics.Win.ValueListItem valueListItem73 = new Infragistics.Win.ValueListItem();
  338. Infragistics.Win.ValueListItem valueListItem74 = new Infragistics.Win.ValueListItem();
  339. Infragistics.Win.ValueListItem valueListItem75 = new Infragistics.Win.ValueListItem();
  340. Infragistics.Win.ValueListItem valueListItem76 = new Infragistics.Win.ValueListItem();
  341. Infragistics.Win.ValueListItem valueListItem77 = new Infragistics.Win.ValueListItem();
  342. Infragistics.Win.ValueListItem valueListItem78 = new Infragistics.Win.ValueListItem();
  343. Infragistics.Win.ValueListItem valueListItem79 = new Infragistics.Win.ValueListItem();
  344. Infragistics.Win.ValueListItem valueListItem80 = new Infragistics.Win.ValueListItem();
  345. Infragistics.Win.ValueListItem valueListItem81 = new Infragistics.Win.ValueListItem();
  346. Infragistics.Win.ValueListItem valueListItem82 = new Infragistics.Win.ValueListItem();
  347. Infragistics.Win.ValueListItem valueListItem83 = new Infragistics.Win.ValueListItem();
  348. Infragistics.Win.ValueListItem valueListItem84 = new Infragistics.Win.ValueListItem();
  349. Infragistics.Win.ValueListItem valueListItem85 = new Infragistics.Win.ValueListItem();
  350. Infragistics.Win.ValueListItem valueListItem86 = new Infragistics.Win.ValueListItem();
  351. Infragistics.Win.ValueListItem valueListItem87 = new Infragistics.Win.ValueListItem();
  352. Infragistics.Win.ValueListItem valueListItem88 = new Infragistics.Win.ValueListItem();
  353. Infragistics.Win.ValueListItem valueListItem89 = new Infragistics.Win.ValueListItem();
  354. Infragistics.Win.ValueListItem valueListItem90 = new Infragistics.Win.ValueListItem();
  355. Infragistics.Win.ValueListItem valueListItem91 = new Infragistics.Win.ValueListItem();
  356. Infragistics.Win.ValueListItem valueListItem92 = new Infragistics.Win.ValueListItem();
  357. Infragistics.Win.ValueListItem valueListItem93 = new Infragistics.Win.ValueListItem();
  358. Infragistics.Win.ValueListItem valueListItem94 = new Infragistics.Win.ValueListItem();
  359. Infragistics.Win.ValueListItem valueListItem95 = new Infragistics.Win.ValueListItem();
  360. Infragistics.Win.ValueListItem valueListItem96 = new Infragistics.Win.ValueListItem();
  361. Infragistics.Win.ValueListItem valueListItem97 = new Infragistics.Win.ValueListItem();
  362. Infragistics.Win.ValueListItem valueListItem98 = new Infragistics.Win.ValueListItem();
  363. Infragistics.Win.ValueListItem valueListItem99 = new Infragistics.Win.ValueListItem();
  364. Infragistics.Win.ValueListItem valueListItem100 = new Infragistics.Win.ValueListItem();
  365. Infragistics.Win.ValueListItem valueListItem101 = new Infragistics.Win.ValueListItem();
  366. Infragistics.Win.ValueListItem valueListItem102 = new Infragistics.Win.ValueListItem();
  367. Infragistics.Win.ValueListItem valueListItem103 = new Infragistics.Win.ValueListItem();
  368. Infragistics.Win.ValueListItem valueListItem104 = new Infragistics.Win.ValueListItem();
  369. Infragistics.Win.ValueListItem valueListItem105 = new Infragistics.Win.ValueListItem();
  370. Infragistics.Win.ValueListItem valueListItem106 = new Infragistics.Win.ValueListItem();
  371. Infragistics.Win.ValueListItem valueListItem107 = new Infragistics.Win.ValueListItem();
  372. Infragistics.Win.ValueListItem valueListItem108 = new Infragistics.Win.ValueListItem();
  373. Infragistics.Win.ValueListItem valueListItem109 = new Infragistics.Win.ValueListItem();
  374. Infragistics.Win.ValueListItem valueListItem110 = new Infragistics.Win.ValueListItem();
  375. Infragistics.Win.ValueListItem valueListItem111 = new Infragistics.Win.ValueListItem();
  376. Infragistics.Win.ValueListItem valueListItem112 = new Infragistics.Win.ValueListItem();
  377. Infragistics.Win.ValueListItem valueListItem113 = new Infragistics.Win.ValueListItem();
  378. Infragistics.Win.ValueListItem valueListItem114 = new Infragistics.Win.ValueListItem();
  379. Infragistics.Win.ValueListItem valueListItem115 = new Infragistics.Win.ValueListItem();
  380. Infragistics.Win.ValueListItem valueListItem116 = new Infragistics.Win.ValueListItem();
  381. Infragistics.Win.ValueListItem valueListItem117 = new Infragistics.Win.ValueListItem();
  382. Infragistics.Win.ValueListItem valueListItem118 = new Infragistics.Win.ValueListItem();
  383. Infragistics.Win.ValueListItem valueListItem119 = new Infragistics.Win.ValueListItem();
  384. Infragistics.Win.ValueListItem valueListItem120 = new Infragistics.Win.ValueListItem();
  385. Infragistics.Win.ValueListItem valueListItem121 = new Infragistics.Win.ValueListItem();
  386. Infragistics.Win.ValueListItem valueListItem122 = new Infragistics.Win.ValueListItem();
  387. Infragistics.Win.ValueListItem valueListItem123 = new Infragistics.Win.ValueListItem();
  388. Infragistics.Win.ValueListItem valueListItem124 = new Infragistics.Win.ValueListItem();
  389. Infragistics.Win.ValueListItem valueListItem125 = new Infragistics.Win.ValueListItem();
  390. Infragistics.Win.ValueListItem valueListItem126 = new Infragistics.Win.ValueListItem();
  391. Infragistics.Win.ValueListItem valueListItem127 = new Infragistics.Win.ValueListItem();
  392. Infragistics.Win.ValueListItem valueListItem128 = new Infragistics.Win.ValueListItem();
  393. Infragistics.Win.ValueListItem valueListItem129 = new Infragistics.Win.ValueListItem();
  394. Infragistics.Win.ValueListItem valueListItem130 = new Infragistics.Win.ValueListItem();
  395. Infragistics.Win.ValueListItem valueListItem131 = new Infragistics.Win.ValueListItem();
  396. Infragistics.Win.ValueListItem valueListItem132 = new Infragistics.Win.ValueListItem();
  397. Infragistics.Win.ValueListItem valueListItem133 = new Infragistics.Win.ValueListItem();
  398. Infragistics.Win.ValueListItem valueListItem134 = new Infragistics.Win.ValueListItem();
  399. Infragistics.Win.ValueListItem valueListItem135 = new Infragistics.Win.ValueListItem();
  400. Infragistics.Win.ValueListItem valueListItem136 = new Infragistics.Win.ValueListItem();
  401. Infragistics.Win.ValueListItem valueListItem137 = new Infragistics.Win.ValueListItem();
  402. Infragistics.Win.ValueListItem valueListItem138 = new Infragistics.Win.ValueListItem();
  403. this.cmb_GF = new Infragistics.Win.UltraWinGrid.UltraCombo();
  404. this.cmb_LKC = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  405. this.panel1 = new System.Windows.Forms.Panel();
  406. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  407. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  408. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  409. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  410. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  411. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  412. this.txt_Spet = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  413. this.chk_Spet = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  414. this.txt_wz = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  415. this.chk_wz = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  416. this.txt_wzdm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  417. this.Chk_wzdm = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  418. this.Cmb_CKLB = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  419. this.chk_Time = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  420. this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  421. this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  422. this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
  423. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  424. this.Chk_CKLB = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  425. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  426. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  427. this.ultraLabel69 = new Infragistics.Win.Misc.UltraLabel();
  428. this.ultraTextEditor45 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  429. this.ultraCombo1 = new Infragistics.Win.UltraWinGrid.UltraCombo();
  430. this.ultraLabel80 = new Infragistics.Win.Misc.UltraLabel();
  431. this.ultraTextEditor44 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  432. this.ultraLabel81 = new Infragistics.Win.Misc.UltraLabel();
  433. this.cmb_LB = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  434. this.cmb_WZ = new Infragistics.Win.UltraWinGrid.UltraCombo();
  435. this.ultraLabel68 = new Infragistics.Win.Misc.UltraLabel();
  436. this.ultraLabel50 = new Infragistics.Win.Misc.UltraLabel();
  437. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  438. this.txt_Price = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  439. this.ultraLabel36 = new Infragistics.Win.Misc.UltraLabel();
  440. this.txt_JLDW = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  441. this.ultraLabel29 = new Infragistics.Win.Misc.UltraLabel();
  442. this.txt_Spec = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  443. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  444. this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  445. this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
  446. this.ultraLabel71 = new Infragistics.Win.Misc.UltraLabel();
  447. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  448. this.txt_CSZ = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  449. this.panel2 = new System.Windows.Forms.Panel();
  450. this.gd_Stock = new Infragistics.Win.UltraWinGrid.UltraGrid();
  451. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  452. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  453. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  454. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  455. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  456. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  457. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  458. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  459. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  460. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  461. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  462. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  463. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  464. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  465. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  466. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  467. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  468. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  469. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  470. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  471. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  472. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  473. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  474. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  475. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  476. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  477. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  478. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  479. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  480. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  481. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  482. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  483. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  484. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  485. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  486. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  487. this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  488. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  489. this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  490. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  491. this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  492. this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  493. this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  494. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  495. this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  496. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  497. this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  498. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  499. this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  500. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  501. this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  502. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  503. this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  504. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  505. this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  506. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  507. this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  508. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  509. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  510. this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  511. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  512. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  513. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  514. this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  515. this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
  516. this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  517. this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
  518. this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  519. this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
  520. this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  521. this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
  522. this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  523. this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
  524. this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  525. this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
  526. this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  527. this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  528. this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  529. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  530. this.ultraComboEditor12 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  531. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  532. this.ultraComboEditor13 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  533. this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
  534. this.ultraComboEditor14 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  535. this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
  536. this.ultraComboEditor15 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  537. this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
  538. this.ultraComboEditor16 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  539. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  540. this.ultraComboEditor17 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  541. this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
  542. this.ultraComboEditor18 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  543. this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
  544. this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
  545. this.ultraTextEditor31 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  546. this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
  547. this.ultraTextEditor32 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  548. this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
  549. this.ultraTextEditor33 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  550. this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
  551. this.ultraTextEditor34 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  552. this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
  553. this.ultraTextEditor35 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  554. this.ultraTextEditor17 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  555. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  556. this.ultraTextEditor36 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  557. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  558. this.ultraComboEditor19 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  559. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  560. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  561. this.ultraTextEditor37 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  562. this.ultraLabel28 = new Infragistics.Win.Misc.UltraLabel();
  563. this.ultraTextEditor38 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  564. this.ultraLabel30 = new Infragistics.Win.Misc.UltraLabel();
  565. this.ultraTextEditor39 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  566. this.ultraTextEditor40 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  567. this.ultraLabel31 = new Infragistics.Win.Misc.UltraLabel();
  568. this.ultraTextEditor41 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  569. this.ultraLabel32 = new Infragistics.Win.Misc.UltraLabel();
  570. this.ultraComboEditor20 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  571. this.ultraLabel33 = new Infragistics.Win.Misc.UltraLabel();
  572. this.ultraLabel34 = new Infragistics.Win.Misc.UltraLabel();
  573. this.ultraTextEditor42 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  574. this.ultraLabel35 = new Infragistics.Win.Misc.UltraLabel();
  575. this.ultraTextEditor43 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  576. ((System.ComponentModel.ISupportInitialize)(this.cmb_GF)).BeginInit();
  577. ((System.ComponentModel.ISupportInitialize)(this.cmb_LKC)).BeginInit();
  578. this.panel1.SuspendLayout();
  579. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  580. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  581. this.ultraGroupBox1.SuspendLayout();
  582. ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).BeginInit();
  583. ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).BeginInit();
  584. ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).BeginInit();
  585. ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKLB)).BeginInit();
  586. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
  587. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
  588. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  589. this.ultraExpandableGroupBox1.SuspendLayout();
  590. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  591. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor45)).BeginInit();
  592. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
  593. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor44)).BeginInit();
  594. ((System.ComponentModel.ISupportInitialize)(this.cmb_LB)).BeginInit();
  595. ((System.ComponentModel.ISupportInitialize)(this.cmb_WZ)).BeginInit();
  596. ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).BeginInit();
  597. ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).BeginInit();
  598. ((System.ComponentModel.ISupportInitialize)(this.txt_Spec)).BeginInit();
  599. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
  600. ((System.ComponentModel.ISupportInitialize)(this.txt_CSZ)).BeginInit();
  601. this.panel2.SuspendLayout();
  602. ((System.ComponentModel.ISupportInitialize)(this.gd_Stock)).BeginInit();
  603. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  604. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  605. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  606. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  607. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  608. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  609. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  610. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  611. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  612. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  613. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  614. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  615. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  616. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  617. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  618. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  619. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  620. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
  621. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
  622. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
  623. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
  624. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
  625. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
  626. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
  627. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
  628. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
  629. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
  630. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
  631. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
  632. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
  633. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  634. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
  635. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
  636. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
  637. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
  638. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
  639. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
  640. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
  641. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
  642. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
  643. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).BeginInit();
  644. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).BeginInit();
  645. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).BeginInit();
  646. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).BeginInit();
  647. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).BeginInit();
  648. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).BeginInit();
  649. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).BeginInit();
  650. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).BeginInit();
  651. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).BeginInit();
  652. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).BeginInit();
  653. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).BeginInit();
  654. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).BeginInit();
  655. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).BeginInit();
  656. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).BeginInit();
  657. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).BeginInit();
  658. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).BeginInit();
  659. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).BeginInit();
  660. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).BeginInit();
  661. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).BeginInit();
  662. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).BeginInit();
  663. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).BeginInit();
  664. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).BeginInit();
  665. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).BeginInit();
  666. this.SuspendLayout();
  667. //
  668. // cmb_GF
  669. //
  670. this.cmb_GF.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  671. this.cmb_GF.DisplayMember = "";
  672. this.cmb_GF.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  673. this.cmb_GF.FlatMode = true;
  674. this.cmb_GF.Location = new System.Drawing.Point(836, 28);
  675. this.cmb_GF.Name = "cmb_GF";
  676. this.cmb_GF.Size = new System.Drawing.Size(83, 19);
  677. this.cmb_GF.TabIndex = 616;
  678. this.cmb_GF.Tag = "";
  679. this.cmb_GF.ValueMember = "";
  680. //
  681. // cmb_LKC
  682. //
  683. this.cmb_LKC.AutoSize = true;
  684. valueListItem3.DataValue = "0";
  685. valueListItem3.DisplayText = "非零库存";
  686. valueListItem2.DataValue = valueListItem3;
  687. valueListItem2.DisplayText = "非零库存";
  688. valueListItem1.DataValue = valueListItem2;
  689. valueListItem1.DisplayText = "非零库存";
  690. valueListItem6.DataValue = "1";
  691. valueListItem6.DisplayText = "零库存";
  692. valueListItem5.DataValue = valueListItem6;
  693. valueListItem5.DisplayText = "零库存";
  694. valueListItem4.DataValue = valueListItem5;
  695. valueListItem4.DisplayText = "零库存";
  696. this.cmb_LKC.Items.Add(valueListItem1);
  697. this.cmb_LKC.Items.Add(valueListItem4);
  698. this.cmb_LKC.Location = new System.Drawing.Point(76, 3);
  699. this.cmb_LKC.Name = "cmb_LKC";
  700. this.cmb_LKC.Size = new System.Drawing.Size(159, 21);
  701. this.cmb_LKC.TabIndex = 429;
  702. this.cmb_LKC.Enter += new System.EventHandler(this.txt_Spec_Enter);
  703. this.cmb_LKC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  704. //
  705. // panel1
  706. //
  707. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  708. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  709. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  710. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  711. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  712. this.panel1.Location = new System.Drawing.Point(0, 0);
  713. this.panel1.Name = "panel1";
  714. this.panel1.Size = new System.Drawing.Size(1498, 32);
  715. this.panel1.TabIndex = 0;
  716. //
  717. // _panel1_Toolbars_Dock_Area_Left
  718. //
  719. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  720. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  721. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  722. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  723. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  724. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  725. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
  726. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  727. //
  728. // ultraToolbarsManager1
  729. //
  730. this.ultraToolbarsManager1.DesignerFlags = 1;
  731. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  732. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  733. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  734. ultraToolbar1.DockedColumn = 0;
  735. ultraToolbar1.DockedRow = 0;
  736. ultraToolbar1.Text = "工具栏";
  737. buttonTool1.InstanceProps.IsFirstInGroup = true;
  738. buttonTool3.InstanceProps.IsFirstInGroup = true;
  739. buttonTool5.InstanceProps.IsFirstInGroup = true;
  740. buttonTool6.InstanceProps.IsFirstInGroup = true;
  741. ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  742. buttonTool1,
  743. buttonTool2,
  744. buttonTool3,
  745. buttonTool4,
  746. buttonTool5,
  747. buttonTool6});
  748. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  749. ultraToolbar1});
  750. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  751. buttonTool7.SharedProps.Caption = "新增";
  752. buttonTool7.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  753. buttonTool7.SharedProps.Visible = false;
  754. buttonTool8.SharedProps.Caption = "查询";
  755. buttonTool8.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  756. buttonTool9.SharedProps.Caption = "关闭";
  757. buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  758. buttonTool10.SharedProps.Caption = "导出";
  759. buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  760. buttonTool11.SharedProps.Caption = "修改";
  761. buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  762. buttonTool11.SharedProps.Visible = false;
  763. buttonTool12.SharedProps.Caption = "删除";
  764. buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  765. buttonTool12.SharedProps.Visible = false;
  766. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  767. buttonTool7,
  768. buttonTool8,
  769. buttonTool9,
  770. buttonTool10,
  771. buttonTool11,
  772. buttonTool12});
  773. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  774. //
  775. // _panel1_Toolbars_Dock_Area_Right
  776. //
  777. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  778. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  779. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  780. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  781. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1498, 24);
  782. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  783. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
  784. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  785. //
  786. // _panel1_Toolbars_Dock_Area_Top
  787. //
  788. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  789. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  790. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  791. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  792. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  793. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  794. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1498, 24);
  795. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  796. //
  797. // _panel1_Toolbars_Dock_Area_Bottom
  798. //
  799. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  800. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  801. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  802. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  803. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
  804. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  805. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1498, 0);
  806. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  807. //
  808. // ultraGroupBox1
  809. //
  810. this.ultraGroupBox1.Controls.Add(this.txt_Spet);
  811. this.ultraGroupBox1.Controls.Add(this.chk_Spet);
  812. this.ultraGroupBox1.Controls.Add(this.txt_wz);
  813. this.ultraGroupBox1.Controls.Add(this.chk_wz);
  814. this.ultraGroupBox1.Controls.Add(this.txt_wzdm);
  815. this.ultraGroupBox1.Controls.Add(this.Chk_wzdm);
  816. this.ultraGroupBox1.Controls.Add(this.Cmb_CKLB);
  817. this.ultraGroupBox1.Controls.Add(this.chk_Time);
  818. this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
  819. this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
  820. this.ultraGroupBox1.Controls.Add(this.Lab_To);
  821. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  822. this.ultraGroupBox1.Controls.Add(this.Chk_CKLB);
  823. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  824. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
  825. this.ultraGroupBox1.Name = "ultraGroupBox1";
  826. this.ultraGroupBox1.Size = new System.Drawing.Size(1498, 35);
  827. this.ultraGroupBox1.SupportThemes = false;
  828. this.ultraGroupBox1.TabIndex = 1;
  829. //
  830. // txt_Spet
  831. //
  832. this.txt_Spet.AutoSize = true;
  833. this.txt_Spet.Enabled = false;
  834. this.txt_Spet.FlatMode = true;
  835. this.txt_Spet.Location = new System.Drawing.Point(1091, 10);
  836. this.txt_Spet.Name = "txt_Spet";
  837. this.txt_Spet.Size = new System.Drawing.Size(96, 19);
  838. this.txt_Spet.TabIndex = 626;
  839. this.txt_Spet.Tag = "";
  840. //
  841. // chk_Spet
  842. //
  843. this.chk_Spet.FlatMode = true;
  844. this.chk_Spet.Location = new System.Drawing.Point(1019, 12);
  845. this.chk_Spet.Name = "chk_Spet";
  846. this.chk_Spet.Size = new System.Drawing.Size(76, 16);
  847. this.chk_Spet.TabIndex = 625;
  848. this.chk_Spet.Text = "规格型号";
  849. this.chk_Spet.CheckedChanged += new System.EventHandler(this.chk_Spet_CheckedChanged);
  850. //
  851. // txt_wz
  852. //
  853. this.txt_wz.AutoSize = true;
  854. this.txt_wz.Enabled = false;
  855. this.txt_wz.FlatMode = true;
  856. this.txt_wz.Location = new System.Drawing.Point(917, 10);
  857. this.txt_wz.Name = "txt_wz";
  858. this.txt_wz.Size = new System.Drawing.Size(96, 19);
  859. this.txt_wz.TabIndex = 624;
  860. this.txt_wz.Tag = "";
  861. //
  862. // chk_wz
  863. //
  864. this.chk_wz.FlatMode = true;
  865. this.chk_wz.Location = new System.Drawing.Point(845, 12);
  866. this.chk_wz.Name = "chk_wz";
  867. this.chk_wz.Size = new System.Drawing.Size(76, 16);
  868. this.chk_wz.TabIndex = 623;
  869. this.chk_wz.Text = "物资名称";
  870. this.chk_wz.CheckedChanged += new System.EventHandler(this.chk_wz_CheckedChanged);
  871. //
  872. // txt_wzdm
  873. //
  874. this.txt_wzdm.AutoSize = true;
  875. this.txt_wzdm.Enabled = false;
  876. this.txt_wzdm.FlatMode = true;
  877. this.txt_wzdm.Location = new System.Drawing.Point(743, 9);
  878. this.txt_wzdm.Name = "txt_wzdm";
  879. this.txt_wzdm.Size = new System.Drawing.Size(96, 19);
  880. this.txt_wzdm.TabIndex = 622;
  881. this.txt_wzdm.Tag = "";
  882. //
  883. // Chk_wzdm
  884. //
  885. this.Chk_wzdm.FlatMode = true;
  886. this.Chk_wzdm.Location = new System.Drawing.Point(671, 11);
  887. this.Chk_wzdm.Name = "Chk_wzdm";
  888. this.Chk_wzdm.Size = new System.Drawing.Size(76, 16);
  889. this.Chk_wzdm.TabIndex = 621;
  890. this.Chk_wzdm.Text = "物资代码";
  891. this.Chk_wzdm.CheckedChanged += new System.EventHandler(this.Chk_wzdm_CheckedChanged);
  892. //
  893. // Cmb_CKLB
  894. //
  895. this.Cmb_CKLB.AutoComplete = true;
  896. this.Cmb_CKLB.AutoSize = true;
  897. this.Cmb_CKLB.Location = new System.Drawing.Point(424, 8);
  898. this.Cmb_CKLB.Name = "Cmb_CKLB";
  899. this.Cmb_CKLB.Size = new System.Drawing.Size(241, 21);
  900. this.Cmb_CKLB.TabIndex = 620;
  901. //
  902. // chk_Time
  903. //
  904. this.chk_Time.Location = new System.Drawing.Point(12, 7);
  905. this.chk_Time.Name = "chk_Time";
  906. this.chk_Time.Size = new System.Drawing.Size(49, 20);
  907. this.chk_Time.TabIndex = 397;
  908. this.chk_Time.Text = "时间";
  909. this.chk_Time.CheckedChanged += new System.EventHandler(this.chk_Time_CheckedChanged);
  910. //
  911. // dte_EndTime
  912. //
  913. this.dte_EndTime.DateTime = new System.DateTime(2023, 8, 1, 0, 0, 0, 0);
  914. this.dte_EndTime.Enabled = false;
  915. this.dte_EndTime.FlatMode = true;
  916. this.dte_EndTime.Location = new System.Drawing.Point(210, 6);
  917. this.dte_EndTime.Name = "dte_EndTime";
  918. this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
  919. this.dte_EndTime.TabIndex = 396;
  920. this.dte_EndTime.Value = new System.DateTime(2023, 8, 1, 0, 0, 0, 0);
  921. //
  922. // dte_BeginTime
  923. //
  924. this.dte_BeginTime.DateTime = new System.DateTime(2023, 8, 1, 0, 0, 0, 0);
  925. this.dte_BeginTime.Enabled = false;
  926. this.dte_BeginTime.FlatMode = true;
  927. this.dte_BeginTime.Location = new System.Drawing.Point(62, 7);
  928. this.dte_BeginTime.Name = "dte_BeginTime";
  929. this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
  930. this.dte_BeginTime.TabIndex = 395;
  931. this.dte_BeginTime.Value = new System.DateTime(2023, 8, 1, 0, 0, 0, 0);
  932. //
  933. // Lab_To
  934. //
  935. this.Lab_To.FlatMode = true;
  936. this.Lab_To.Location = new System.Drawing.Point(184, 8);
  937. this.Lab_To.Name = "Lab_To";
  938. this.Lab_To.Size = new System.Drawing.Size(17, 16);
  939. this.Lab_To.TabIndex = 394;
  940. this.Lab_To.Text = "到";
  941. //
  942. // chk_AllowFilter
  943. //
  944. this.chk_AllowFilter.Location = new System.Drawing.Point(1264, 10);
  945. this.chk_AllowFilter.Name = "chk_AllowFilter";
  946. this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
  947. this.chk_AllowFilter.TabIndex = 131;
  948. this.chk_AllowFilter.TabStop = false;
  949. this.chk_AllowFilter.Text = "允许过滤";
  950. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  951. //
  952. // Chk_CKLB
  953. //
  954. this.Chk_CKLB.FlatMode = true;
  955. this.Chk_CKLB.Location = new System.Drawing.Point(353, 8);
  956. this.Chk_CKLB.Name = "Chk_CKLB";
  957. this.Chk_CKLB.Size = new System.Drawing.Size(75, 17);
  958. this.Chk_CKLB.TabIndex = 112;
  959. this.Chk_CKLB.Text = "仓库类别";
  960. this.Chk_CKLB.CheckedChanged += new System.EventHandler(this.Chk_CKLB_CheckedChanged);
  961. //
  962. // ultraExpandableGroupBox1
  963. //
  964. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  965. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  966. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(200, 185);
  967. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 486);
  968. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  969. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1498, 78);
  970. this.ultraExpandableGroupBox1.SupportThemes = false;
  971. this.ultraExpandableGroupBox1.TabIndex = 4;
  972. this.ultraExpandableGroupBox1.Text = "仓库详情";
  973. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  974. //
  975. // ultraExpandableGroupBoxPanel1
  976. //
  977. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel69);
  978. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor45);
  979. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraCombo1);
  980. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel80);
  981. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraTextEditor44);
  982. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel81);
  983. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_LB);
  984. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_WZ);
  985. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_GF);
  986. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel68);
  987. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel50);
  988. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  989. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Price);
  990. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel36);
  991. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_JLDW);
  992. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel29);
  993. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Spec);
  994. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  995. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Remark);
  996. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel75);
  997. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_LKC);
  998. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel71);
  999. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
  1000. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_CSZ);
  1001. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1002. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
  1003. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1004. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1494, 56);
  1005. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1006. //
  1007. // ultraLabel69
  1008. //
  1009. this.ultraLabel69.BackColor = System.Drawing.Color.Transparent;
  1010. this.ultraLabel69.Location = new System.Drawing.Point(241, 5);
  1011. this.ultraLabel69.Name = "ultraLabel69";
  1012. this.ultraLabel69.Size = new System.Drawing.Size(56, 16);
  1013. this.ultraLabel69.TabIndex = 625;
  1014. this.ultraLabel69.Text = "物资名称";
  1015. //
  1016. // ultraTextEditor45
  1017. //
  1018. this.ultraTextEditor45.AutoSize = true;
  1019. this.ultraTextEditor45.Enabled = false;
  1020. this.ultraTextEditor45.FlatMode = true;
  1021. this.ultraTextEditor45.Location = new System.Drawing.Point(298, 2);
  1022. this.ultraTextEditor45.Name = "ultraTextEditor45";
  1023. this.ultraTextEditor45.Size = new System.Drawing.Size(112, 19);
  1024. this.ultraTextEditor45.TabIndex = 624;
  1025. this.ultraTextEditor45.Tag = "";
  1026. //
  1027. // ultraCombo1
  1028. //
  1029. this.ultraCombo1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1030. ultraGridColumn1.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1031. ultraGridColumn1.Header.Caption = " 物资代码";
  1032. ultraGridColumn1.Header.VisiblePosition = 0;
  1033. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  1034. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1035. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  1036. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  1037. ultraGridColumn2.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1038. ultraGridColumn2.Header.Caption = "物资名称";
  1039. ultraGridColumn2.Header.VisiblePosition = 1;
  1040. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  1041. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1042. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  1043. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  1044. ultraGridColumn3.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1045. ultraGridColumn3.Header.Caption = "规格型号";
  1046. ultraGridColumn3.Header.VisiblePosition = 2;
  1047. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
  1048. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1049. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  1050. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  1051. ultraGridColumn4.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1052. ultraGridColumn4.Header.Caption = "材质";
  1053. ultraGridColumn4.Header.VisiblePosition = 3;
  1054. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 6;
  1055. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  1056. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  1057. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  1058. ultraGridColumn5.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  1059. ultraGridColumn5.Header.Caption = "计量单位";
  1060. ultraGridColumn5.Header.VisiblePosition = 4;
  1061. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 8;
  1062. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1063. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  1064. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  1065. ultraGridBand1.Columns.AddRange(new object[] {
  1066. ultraGridColumn1,
  1067. ultraGridColumn2,
  1068. ultraGridColumn3,
  1069. ultraGridColumn4,
  1070. ultraGridColumn5});
  1071. ultraGridBand1.UseRowLayout = true;
  1072. this.ultraCombo1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  1073. this.ultraCombo1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1074. this.ultraCombo1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1075. this.ultraCombo1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1076. this.ultraCombo1.DisplayLayout.MaxColScrollRegions = 1;
  1077. this.ultraCombo1.DisplayLayout.MaxRowScrollRegions = 1;
  1078. this.ultraCombo1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1079. this.ultraCombo1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1080. this.ultraCombo1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1081. this.ultraCombo1.DisplayLayout.Override.CellPadding = 0;
  1082. this.ultraCombo1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1083. this.ultraCombo1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1084. this.ultraCombo1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1085. this.ultraCombo1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1086. this.ultraCombo1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1087. this.ultraCombo1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1088. this.ultraCombo1.DisplayMember = "";
  1089. this.ultraCombo1.Location = new System.Drawing.Point(666, 0);
  1090. this.ultraCombo1.Name = "ultraCombo1";
  1091. this.ultraCombo1.Size = new System.Drawing.Size(124, 21);
  1092. this.ultraCombo1.TabIndex = 623;
  1093. this.ultraCombo1.ValueMember = "";
  1094. this.ultraCombo1.ValueChanged += new System.EventHandler(this.ultraCombo1_ValueChanged);
  1095. //
  1096. // ultraLabel80
  1097. //
  1098. this.ultraLabel80.BackColor = System.Drawing.Color.Transparent;
  1099. this.ultraLabel80.Location = new System.Drawing.Point(607, 34);
  1100. this.ultraLabel80.Name = "ultraLabel80";
  1101. this.ultraLabel80.Size = new System.Drawing.Size(56, 16);
  1102. this.ultraLabel80.TabIndex = 622;
  1103. this.ultraLabel80.Text = "类别名称";
  1104. //
  1105. // ultraTextEditor44
  1106. //
  1107. this.ultraTextEditor44.AutoSize = true;
  1108. this.ultraTextEditor44.FlatMode = true;
  1109. this.ultraTextEditor44.Location = new System.Drawing.Point(666, 31);
  1110. this.ultraTextEditor44.Multiline = true;
  1111. this.ultraTextEditor44.Name = "ultraTextEditor44";
  1112. this.ultraTextEditor44.Size = new System.Drawing.Size(118, 19);
  1113. this.ultraTextEditor44.TabIndex = 621;
  1114. this.ultraTextEditor44.Tag = "";
  1115. //
  1116. // ultraLabel81
  1117. //
  1118. this.ultraLabel81.BackColor = System.Drawing.Color.Transparent;
  1119. this.ultraLabel81.Location = new System.Drawing.Point(607, 2);
  1120. this.ultraLabel81.Name = "ultraLabel81";
  1121. this.ultraLabel81.Size = new System.Drawing.Size(56, 20);
  1122. this.ultraLabel81.TabIndex = 620;
  1123. this.ultraLabel81.Text = "类代别码";
  1124. //
  1125. // cmb_LB
  1126. //
  1127. this.cmb_LB.AutoComplete = true;
  1128. this.cmb_LB.AutoSize = true;
  1129. this.cmb_LB.Location = new System.Drawing.Point(998, 28);
  1130. this.cmb_LB.Name = "cmb_LB";
  1131. this.cmb_LB.Size = new System.Drawing.Size(84, 21);
  1132. this.cmb_LB.TabIndex = 619;
  1133. //
  1134. // cmb_WZ
  1135. //
  1136. this.cmb_WZ.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1137. ultraGridColumn6.Header.Caption = "物料代码";
  1138. ultraGridColumn6.Header.VisiblePosition = 0;
  1139. ultraGridColumn7.Header.Caption = "物料名称";
  1140. ultraGridColumn7.Header.VisiblePosition = 1;
  1141. ultraGridColumn8.Header.Caption = "规格";
  1142. ultraGridColumn8.Header.VisiblePosition = 2;
  1143. ultraGridBand2.Columns.AddRange(new object[] {
  1144. ultraGridColumn6,
  1145. ultraGridColumn7,
  1146. ultraGridColumn8});
  1147. ultraGridBand2.UseRowLayout = true;
  1148. this.cmb_WZ.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1149. this.cmb_WZ.DisplayMember = "";
  1150. this.cmb_WZ.Location = new System.Drawing.Point(76, 28);
  1151. this.cmb_WZ.Name = "cmb_WZ";
  1152. this.cmb_WZ.Size = new System.Drawing.Size(159, 21);
  1153. this.cmb_WZ.TabIndex = 618;
  1154. this.cmb_WZ.ValueMember = "";
  1155. this.cmb_WZ.ValueChanged += new System.EventHandler(this.cmb_WZ_ValueChanged);
  1156. //
  1157. // ultraLabel68
  1158. //
  1159. this.ultraLabel68.BackColor = System.Drawing.Color.Transparent;
  1160. this.ultraLabel68.Location = new System.Drawing.Point(941, 30);
  1161. this.ultraLabel68.Name = "ultraLabel68";
  1162. this.ultraLabel68.Size = new System.Drawing.Size(56, 23);
  1163. this.ultraLabel68.TabIndex = 452;
  1164. this.ultraLabel68.Text = "仓库类别";
  1165. //
  1166. // ultraLabel50
  1167. //
  1168. this.ultraLabel50.BackColor = System.Drawing.Color.Transparent;
  1169. this.ultraLabel50.Location = new System.Drawing.Point(795, 33);
  1170. this.ultraLabel50.Name = "ultraLabel50";
  1171. this.ultraLabel50.Size = new System.Drawing.Size(33, 20);
  1172. this.ultraLabel50.TabIndex = 449;
  1173. this.ultraLabel50.Text = "供方";
  1174. //
  1175. // ultraLabel4
  1176. //
  1177. this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
  1178. this.ultraLabel4.Location = new System.Drawing.Point(795, 6);
  1179. this.ultraLabel4.Name = "ultraLabel4";
  1180. this.ultraLabel4.Size = new System.Drawing.Size(35, 17);
  1181. this.ultraLabel4.TabIndex = 448;
  1182. this.ultraLabel4.Text = "单价";
  1183. //
  1184. // txt_Price
  1185. //
  1186. this.txt_Price.AutoSize = true;
  1187. this.txt_Price.FlatMode = true;
  1188. this.txt_Price.Location = new System.Drawing.Point(836, 2);
  1189. this.txt_Price.Name = "txt_Price";
  1190. this.txt_Price.Size = new System.Drawing.Size(83, 19);
  1191. this.txt_Price.TabIndex = 447;
  1192. this.txt_Price.Tag = "";
  1193. this.txt_Price.Enter += new System.EventHandler(this.txt_Spec_Enter);
  1194. this.txt_Price.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  1195. //
  1196. // ultraLabel36
  1197. //
  1198. this.ultraLabel36.BackColor = System.Drawing.Color.Transparent;
  1199. this.ultraLabel36.Location = new System.Drawing.Point(241, 31);
  1200. this.ultraLabel36.Name = "ultraLabel36";
  1201. this.ultraLabel36.Size = new System.Drawing.Size(56, 16);
  1202. this.ultraLabel36.TabIndex = 446;
  1203. this.ultraLabel36.Text = "计量单位";
  1204. //
  1205. // txt_JLDW
  1206. //
  1207. this.txt_JLDW.AutoSize = true;
  1208. this.txt_JLDW.Enabled = false;
  1209. this.txt_JLDW.FlatMode = true;
  1210. this.txt_JLDW.Location = new System.Drawing.Point(298, 28);
  1211. this.txt_JLDW.Name = "txt_JLDW";
  1212. this.txt_JLDW.Size = new System.Drawing.Size(112, 19);
  1213. this.txt_JLDW.TabIndex = 445;
  1214. this.txt_JLDW.Tag = "";
  1215. this.txt_JLDW.Enter += new System.EventHandler(this.txt_Spec_Enter);
  1216. this.txt_JLDW.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  1217. //
  1218. // ultraLabel29
  1219. //
  1220. this.ultraLabel29.BackColor = System.Drawing.Color.Transparent;
  1221. this.ultraLabel29.Location = new System.Drawing.Point(416, 6);
  1222. this.ultraLabel29.Name = "ultraLabel29";
  1223. this.ultraLabel29.Size = new System.Drawing.Size(56, 16);
  1224. this.ultraLabel29.TabIndex = 444;
  1225. this.ultraLabel29.Text = "规格型号";
  1226. //
  1227. // txt_Spec
  1228. //
  1229. this.txt_Spec.AutoSize = true;
  1230. this.txt_Spec.Enabled = false;
  1231. this.txt_Spec.FlatMode = true;
  1232. this.txt_Spec.Location = new System.Drawing.Point(473, 3);
  1233. this.txt_Spec.Name = "txt_Spec";
  1234. this.txt_Spec.Size = new System.Drawing.Size(107, 19);
  1235. this.txt_Spec.TabIndex = 443;
  1236. this.txt_Spec.Tag = "";
  1237. this.txt_Spec.Enter += new System.EventHandler(this.txt_Spec_Enter);
  1238. this.txt_Spec.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  1239. //
  1240. // ultraLabel2
  1241. //
  1242. this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
  1243. this.ultraLabel2.Location = new System.Drawing.Point(3, 33);
  1244. this.ultraLabel2.Name = "ultraLabel2";
  1245. this.ultraLabel2.Size = new System.Drawing.Size(89, 20);
  1246. this.ultraLabel2.TabIndex = 441;
  1247. this.ultraLabel2.Text = "物资代码";
  1248. //
  1249. // txt_Remark
  1250. //
  1251. this.txt_Remark.AutoSize = true;
  1252. this.txt_Remark.FlatMode = true;
  1253. this.txt_Remark.Location = new System.Drawing.Point(1128, 3);
  1254. this.txt_Remark.Multiline = true;
  1255. this.txt_Remark.Name = "txt_Remark";
  1256. this.txt_Remark.Size = new System.Drawing.Size(297, 49);
  1257. this.txt_Remark.TabIndex = 440;
  1258. this.txt_Remark.Tag = "";
  1259. this.txt_Remark.Enter += new System.EventHandler(this.txt_Spec_Enter);
  1260. this.txt_Remark.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  1261. //
  1262. // ultraLabel75
  1263. //
  1264. this.ultraLabel75.BackColor = System.Drawing.Color.Transparent;
  1265. this.ultraLabel75.Location = new System.Drawing.Point(1089, 3);
  1266. this.ultraLabel75.Name = "ultraLabel75";
  1267. this.ultraLabel75.Size = new System.Drawing.Size(29, 20);
  1268. this.ultraLabel75.TabIndex = 436;
  1269. this.ultraLabel75.Text = "备注";
  1270. //
  1271. // ultraLabel71
  1272. //
  1273. this.ultraLabel71.BackColor = System.Drawing.Color.Transparent;
  1274. this.ultraLabel71.Location = new System.Drawing.Point(3, 6);
  1275. this.ultraLabel71.Name = "ultraLabel71";
  1276. this.ultraLabel71.Size = new System.Drawing.Size(89, 20);
  1277. this.ultraLabel71.TabIndex = 428;
  1278. this.ultraLabel71.Text = "是否零库存";
  1279. //
  1280. // ultraLabel1
  1281. //
  1282. this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
  1283. this.ultraLabel1.Location = new System.Drawing.Point(941, 6);
  1284. this.ultraLabel1.Name = "ultraLabel1";
  1285. this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
  1286. this.ultraLabel1.TabIndex = 363;
  1287. this.ultraLabel1.Text = "仓库初始值";
  1288. //
  1289. // txt_CSZ
  1290. //
  1291. this.txt_CSZ.AutoSize = true;
  1292. this.txt_CSZ.FlatMode = true;
  1293. this.txt_CSZ.Location = new System.Drawing.Point(998, 3);
  1294. this.txt_CSZ.Multiline = true;
  1295. this.txt_CSZ.Name = "txt_CSZ";
  1296. this.txt_CSZ.Size = new System.Drawing.Size(84, 19);
  1297. this.txt_CSZ.TabIndex = 362;
  1298. this.txt_CSZ.Tag = "";
  1299. this.txt_CSZ.Enter += new System.EventHandler(this.txt_Spec_Enter);
  1300. this.txt_CSZ.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Spec_KeyDown);
  1301. //
  1302. // panel2
  1303. //
  1304. this.panel2.Controls.Add(this.gd_Stock);
  1305. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1306. this.panel2.Location = new System.Drawing.Point(0, 67);
  1307. this.panel2.Name = "panel2";
  1308. this.panel2.Size = new System.Drawing.Size(1498, 419);
  1309. this.panel2.TabIndex = 5;
  1310. //
  1311. // gd_Stock
  1312. //
  1313. ultraGridColumn9.Header.Caption = "是否零库存";
  1314. ultraGridColumn9.Header.VisiblePosition = 0;
  1315. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 0;
  1316. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1317. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  1318. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  1319. ultraGridColumn10.Header.Caption = "物资代码";
  1320. ultraGridColumn10.Header.VisiblePosition = 1;
  1321. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 1;
  1322. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1323. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  1324. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  1325. ultraGridColumn11.Header.Caption = "规格型号";
  1326. ultraGridColumn11.Header.VisiblePosition = 2;
  1327. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 6;
  1328. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1329. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  1330. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  1331. ultraGridColumn12.Header.Caption = "计量单位";
  1332. ultraGridColumn12.Header.VisiblePosition = 3;
  1333. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 8;
  1334. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1335. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  1336. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  1337. ultraGridColumn13.Header.Caption = "计划价";
  1338. ultraGridColumn13.Header.VisiblePosition = 4;
  1339. ultraGridColumn13.Hidden = true;
  1340. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 7;
  1341. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1342. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  1343. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  1344. ultraGridColumn14.EditorControl = this.cmb_GF;
  1345. ultraGridColumn14.Header.Caption = "供方";
  1346. ultraGridColumn14.Header.VisiblePosition = 5;
  1347. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 15;
  1348. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1349. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  1350. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  1351. ultraGridColumn15.Header.Caption = "仓库初始值";
  1352. ultraGridColumn15.Header.VisiblePosition = 7;
  1353. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 16;
  1354. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1355. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  1356. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  1357. ultraGridColumn16.Header.Caption = "操作人员";
  1358. ultraGridColumn16.Header.VisiblePosition = 8;
  1359. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 17;
  1360. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1361. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  1362. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1363. ultraGridColumn17.Header.Caption = "操作时间";
  1364. ultraGridColumn17.Header.VisiblePosition = 9;
  1365. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 19;
  1366. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1367. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  1368. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1369. ultraGridColumn18.Header.Caption = "备注";
  1370. ultraGridColumn18.Header.VisiblePosition = 6;
  1371. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 18;
  1372. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1373. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  1374. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1375. ultraGridColumn19.Header.Caption = "仓库类别";
  1376. ultraGridColumn19.Header.VisiblePosition = 10;
  1377. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 12;
  1378. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1379. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  1380. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1381. ultraGridColumn20.Header.Caption = "物资名称";
  1382. ultraGridColumn20.Header.VisiblePosition = 11;
  1383. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 2;
  1384. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1385. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  1386. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1387. ultraGridColumn21.Header.Caption = "类别代码";
  1388. ultraGridColumn21.Header.VisiblePosition = 12;
  1389. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 3;
  1390. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1391. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 2;
  1392. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 2;
  1393. ultraGridColumn22.Header.Caption = "类别名称";
  1394. ultraGridColumn22.Header.VisiblePosition = 13;
  1395. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 5;
  1396. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1397. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 2;
  1398. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 2;
  1399. ultraGridColumn23.Header.Caption = "当前价格";
  1400. ultraGridColumn23.Header.VisiblePosition = 14;
  1401. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 10;
  1402. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1403. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 2;
  1404. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
  1405. ultraGridColumn24.Header.Caption = "仓库名称";
  1406. ultraGridColumn24.Header.VisiblePosition = 15;
  1407. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 13;
  1408. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1409. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 2;
  1410. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
  1411. ultraGridBand3.Columns.AddRange(new object[] {
  1412. ultraGridColumn9,
  1413. ultraGridColumn10,
  1414. ultraGridColumn11,
  1415. ultraGridColumn12,
  1416. ultraGridColumn13,
  1417. ultraGridColumn14,
  1418. ultraGridColumn15,
  1419. ultraGridColumn16,
  1420. ultraGridColumn17,
  1421. ultraGridColumn18,
  1422. ultraGridColumn19,
  1423. ultraGridColumn20,
  1424. ultraGridColumn21,
  1425. ultraGridColumn22,
  1426. ultraGridColumn23,
  1427. ultraGridColumn24});
  1428. ultraGridBand3.UseRowLayout = true;
  1429. this.gd_Stock.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1430. this.gd_Stock.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1431. this.gd_Stock.DisplayLayout.GroupByBox.Hidden = true;
  1432. this.gd_Stock.DisplayLayout.GroupByBox.Prompt = " 将要分组的列拖至该区域!";
  1433. this.gd_Stock.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  1434. this.gd_Stock.DisplayLayout.Override.CellPadding = 0;
  1435. this.gd_Stock.DisplayLayout.Override.GroupByRowDescriptionMask = "[caption]:[value] ([count]条记录)";
  1436. this.gd_Stock.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  1437. this.gd_Stock.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortSingle;
  1438. this.gd_Stock.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1439. this.gd_Stock.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  1440. this.gd_Stock.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1441. this.gd_Stock.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1442. this.gd_Stock.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  1443. this.gd_Stock.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1444. this.gd_Stock.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1445. this.gd_Stock.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1446. this.gd_Stock.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1447. this.gd_Stock.Dock = System.Windows.Forms.DockStyle.Fill;
  1448. this.gd_Stock.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1449. this.gd_Stock.Location = new System.Drawing.Point(0, 0);
  1450. this.gd_Stock.Name = "gd_Stock";
  1451. this.gd_Stock.Size = new System.Drawing.Size(1498, 419);
  1452. this.gd_Stock.TabIndex = 1;
  1453. this.gd_Stock.Text = "原料垛位信息";
  1454. this.gd_Stock.AfterRowActivate += new System.EventHandler(this.gd_Stock_AfterRowActivate);
  1455. this.gd_Stock.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.gd_Stock_InitializeRow);
  1456. //
  1457. // ultraLabel3
  1458. //
  1459. this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
  1460. this.ultraLabel3.Location = new System.Drawing.Point(3, 55);
  1461. this.ultraLabel3.Name = "ultraLabel3";
  1462. this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
  1463. this.ultraLabel3.TabIndex = 365;
  1464. this.ultraLabel3.Text = "规格型号";
  1465. //
  1466. // ultraTextEditor1
  1467. //
  1468. this.ultraTextEditor1.AutoSize = true;
  1469. this.ultraTextEditor1.Enabled = false;
  1470. this.ultraTextEditor1.FlatMode = true;
  1471. this.ultraTextEditor1.Location = new System.Drawing.Point(60, 52);
  1472. this.ultraTextEditor1.Multiline = true;
  1473. this.ultraTextEditor1.Name = "ultraTextEditor1";
  1474. this.ultraTextEditor1.Size = new System.Drawing.Size(191, 19);
  1475. this.ultraTextEditor1.TabIndex = 364;
  1476. this.ultraTextEditor1.Tag = "";
  1477. //
  1478. // ultraLabel5
  1479. //
  1480. this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
  1481. this.ultraLabel5.Location = new System.Drawing.Point(3, 31);
  1482. this.ultraLabel5.Name = "ultraLabel5";
  1483. this.ultraLabel5.Size = new System.Drawing.Size(56, 16);
  1484. this.ultraLabel5.TabIndex = 363;
  1485. this.ultraLabel5.Text = "物资名称";
  1486. //
  1487. // ultraTextEditor2
  1488. //
  1489. this.ultraTextEditor2.AutoSize = true;
  1490. this.ultraTextEditor2.Enabled = false;
  1491. this.ultraTextEditor2.FlatMode = true;
  1492. this.ultraTextEditor2.Location = new System.Drawing.Point(60, 28);
  1493. this.ultraTextEditor2.Multiline = true;
  1494. this.ultraTextEditor2.Name = "ultraTextEditor2";
  1495. this.ultraTextEditor2.Size = new System.Drawing.Size(191, 19);
  1496. this.ultraTextEditor2.TabIndex = 362;
  1497. this.ultraTextEditor2.Tag = "";
  1498. //
  1499. // ultraLabel6
  1500. //
  1501. this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
  1502. this.ultraLabel6.Location = new System.Drawing.Point(3, 8);
  1503. this.ultraLabel6.Name = "ultraLabel6";
  1504. this.ultraLabel6.Size = new System.Drawing.Size(56, 16);
  1505. this.ultraLabel6.TabIndex = 361;
  1506. this.ultraLabel6.Text = "物资代码";
  1507. //
  1508. // ultraTextEditor3
  1509. //
  1510. this.ultraTextEditor3.AutoSize = true;
  1511. this.ultraTextEditor3.Enabled = false;
  1512. this.ultraTextEditor3.FlatMode = true;
  1513. this.ultraTextEditor3.Location = new System.Drawing.Point(60, 5);
  1514. this.ultraTextEditor3.Name = "ultraTextEditor3";
  1515. this.ultraTextEditor3.Size = new System.Drawing.Size(84, 19);
  1516. this.ultraTextEditor3.TabIndex = 358;
  1517. this.ultraTextEditor3.Tag = "";
  1518. //
  1519. // ultraComboEditor1
  1520. //
  1521. this.ultraComboEditor1.AutoSize = true;
  1522. valueListItem9.DataValue = "0";
  1523. valueListItem8.DataValue = valueListItem9;
  1524. valueListItem8.DisplayText = "";
  1525. valueListItem7.DataValue = valueListItem8;
  1526. valueListItem7.DisplayText = "";
  1527. valueListItem12.DataValue = "A";
  1528. valueListItem12.DisplayText = "A";
  1529. valueListItem11.DataValue = valueListItem12;
  1530. valueListItem11.DisplayText = "A";
  1531. valueListItem10.DataValue = valueListItem11;
  1532. valueListItem10.DisplayText = "A";
  1533. valueListItem15.DataValue = "B";
  1534. valueListItem15.DisplayText = "B";
  1535. valueListItem14.DataValue = valueListItem15;
  1536. valueListItem14.DisplayText = "B";
  1537. valueListItem13.DataValue = valueListItem14;
  1538. valueListItem13.DisplayText = "B";
  1539. valueListItem18.DataValue = "C";
  1540. valueListItem18.DisplayText = "C";
  1541. valueListItem17.DataValue = valueListItem18;
  1542. valueListItem17.DisplayText = "C";
  1543. valueListItem16.DataValue = valueListItem17;
  1544. valueListItem16.DisplayText = "C";
  1545. this.ultraComboEditor1.Items.Add(valueListItem7);
  1546. this.ultraComboEditor1.Items.Add(valueListItem10);
  1547. this.ultraComboEditor1.Items.Add(valueListItem13);
  1548. this.ultraComboEditor1.Items.Add(valueListItem16);
  1549. this.ultraComboEditor1.Location = new System.Drawing.Point(340, 5);
  1550. this.ultraComboEditor1.Name = "ultraComboEditor1";
  1551. this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
  1552. this.ultraComboEditor1.TabIndex = 369;
  1553. //
  1554. // ultraLabel9
  1555. //
  1556. this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
  1557. this.ultraLabel9.Location = new System.Drawing.Point(289, 8);
  1558. this.ultraLabel9.Name = "ultraLabel9";
  1559. this.ultraLabel9.Size = new System.Drawing.Size(56, 16);
  1560. this.ultraLabel9.TabIndex = 368;
  1561. this.ultraLabel9.Text = "物资类别";
  1562. //
  1563. // ultraLabel10
  1564. //
  1565. this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
  1566. this.ultraLabel10.Location = new System.Drawing.Point(3, 77);
  1567. this.ultraLabel10.Name = "ultraLabel10";
  1568. this.ultraLabel10.Size = new System.Drawing.Size(56, 16);
  1569. this.ultraLabel10.TabIndex = 367;
  1570. this.ultraLabel10.Text = "材质";
  1571. //
  1572. // ultraTextEditor4
  1573. //
  1574. this.ultraTextEditor4.AutoSize = true;
  1575. this.ultraTextEditor4.Enabled = false;
  1576. this.ultraTextEditor4.FlatMode = true;
  1577. this.ultraTextEditor4.Location = new System.Drawing.Point(60, 74);
  1578. this.ultraTextEditor4.Multiline = true;
  1579. this.ultraTextEditor4.Name = "ultraTextEditor4";
  1580. this.ultraTextEditor4.Size = new System.Drawing.Size(191, 19);
  1581. this.ultraTextEditor4.TabIndex = 366;
  1582. this.ultraTextEditor4.Tag = "";
  1583. //
  1584. // ultraLabel11
  1585. //
  1586. this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
  1587. this.ultraLabel11.Location = new System.Drawing.Point(3, 55);
  1588. this.ultraLabel11.Name = "ultraLabel11";
  1589. this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
  1590. this.ultraLabel11.TabIndex = 365;
  1591. this.ultraLabel11.Text = "规格型号";
  1592. //
  1593. // ultraTextEditor5
  1594. //
  1595. this.ultraTextEditor5.AutoSize = true;
  1596. this.ultraTextEditor5.Enabled = false;
  1597. this.ultraTextEditor5.FlatMode = true;
  1598. this.ultraTextEditor5.Location = new System.Drawing.Point(60, 52);
  1599. this.ultraTextEditor5.Multiline = true;
  1600. this.ultraTextEditor5.Name = "ultraTextEditor5";
  1601. this.ultraTextEditor5.Size = new System.Drawing.Size(191, 19);
  1602. this.ultraTextEditor5.TabIndex = 364;
  1603. this.ultraTextEditor5.Tag = "";
  1604. //
  1605. // ultraLabel12
  1606. //
  1607. this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
  1608. this.ultraLabel12.Location = new System.Drawing.Point(3, 31);
  1609. this.ultraLabel12.Name = "ultraLabel12";
  1610. this.ultraLabel12.Size = new System.Drawing.Size(56, 16);
  1611. this.ultraLabel12.TabIndex = 363;
  1612. this.ultraLabel12.Text = "物资名称";
  1613. //
  1614. // ultraTextEditor6
  1615. //
  1616. this.ultraTextEditor6.AutoSize = true;
  1617. this.ultraTextEditor6.Enabled = false;
  1618. this.ultraTextEditor6.FlatMode = true;
  1619. this.ultraTextEditor6.Location = new System.Drawing.Point(60, 28);
  1620. this.ultraTextEditor6.Multiline = true;
  1621. this.ultraTextEditor6.Name = "ultraTextEditor6";
  1622. this.ultraTextEditor6.Size = new System.Drawing.Size(191, 19);
  1623. this.ultraTextEditor6.TabIndex = 362;
  1624. this.ultraTextEditor6.Tag = "";
  1625. //
  1626. // ultraLabel13
  1627. //
  1628. this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
  1629. this.ultraLabel13.Location = new System.Drawing.Point(3, 8);
  1630. this.ultraLabel13.Name = "ultraLabel13";
  1631. this.ultraLabel13.Size = new System.Drawing.Size(56, 16);
  1632. this.ultraLabel13.TabIndex = 361;
  1633. this.ultraLabel13.Text = "物资代码";
  1634. //
  1635. // ultraTextEditor7
  1636. //
  1637. this.ultraTextEditor7.AutoSize = true;
  1638. this.ultraTextEditor7.Enabled = false;
  1639. this.ultraTextEditor7.FlatMode = true;
  1640. this.ultraTextEditor7.Location = new System.Drawing.Point(60, 5);
  1641. this.ultraTextEditor7.Name = "ultraTextEditor7";
  1642. this.ultraTextEditor7.Size = new System.Drawing.Size(84, 19);
  1643. this.ultraTextEditor7.TabIndex = 358;
  1644. this.ultraTextEditor7.Tag = "";
  1645. //
  1646. // ultraLabel18
  1647. //
  1648. this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
  1649. this.ultraLabel18.Location = new System.Drawing.Point(3, 99);
  1650. this.ultraLabel18.Name = "ultraLabel18";
  1651. this.ultraLabel18.Size = new System.Drawing.Size(56, 16);
  1652. this.ultraLabel18.TabIndex = 377;
  1653. this.ultraLabel18.Text = "最高限价";
  1654. //
  1655. // ultraTextEditor9
  1656. //
  1657. this.ultraTextEditor9.AutoSize = true;
  1658. this.ultraTextEditor9.Enabled = false;
  1659. this.ultraTextEditor9.FlatMode = true;
  1660. this.ultraTextEditor9.Location = new System.Drawing.Point(60, 96);
  1661. this.ultraTextEditor9.Name = "ultraTextEditor9";
  1662. this.ultraTextEditor9.Size = new System.Drawing.Size(84, 19);
  1663. this.ultraTextEditor9.TabIndex = 376;
  1664. this.ultraTextEditor9.Tag = "";
  1665. //
  1666. // ultraLabel19
  1667. //
  1668. this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
  1669. this.ultraLabel19.Location = new System.Drawing.Point(289, 77);
  1670. this.ultraLabel19.Name = "ultraLabel19";
  1671. this.ultraLabel19.Size = new System.Drawing.Size(56, 16);
  1672. this.ultraLabel19.TabIndex = 375;
  1673. this.ultraLabel19.Text = "最高限价";
  1674. //
  1675. // ultraTextEditor10
  1676. //
  1677. this.ultraTextEditor10.AutoSize = true;
  1678. this.ultraTextEditor10.Enabled = false;
  1679. this.ultraTextEditor10.FlatMode = true;
  1680. this.ultraTextEditor10.Location = new System.Drawing.Point(346, 74);
  1681. this.ultraTextEditor10.Name = "ultraTextEditor10";
  1682. this.ultraTextEditor10.Size = new System.Drawing.Size(84, 19);
  1683. this.ultraTextEditor10.TabIndex = 374;
  1684. this.ultraTextEditor10.Tag = "";
  1685. //
  1686. // ultraLabel20
  1687. //
  1688. this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
  1689. this.ultraLabel20.Location = new System.Drawing.Point(289, 55);
  1690. this.ultraLabel20.Name = "ultraLabel20";
  1691. this.ultraLabel20.Size = new System.Drawing.Size(56, 16);
  1692. this.ultraLabel20.TabIndex = 373;
  1693. this.ultraLabel20.Text = "预估价";
  1694. //
  1695. // ultraTextEditor11
  1696. //
  1697. this.ultraTextEditor11.AutoSize = true;
  1698. this.ultraTextEditor11.Enabled = false;
  1699. this.ultraTextEditor11.FlatMode = true;
  1700. this.ultraTextEditor11.Location = new System.Drawing.Point(346, 52);
  1701. this.ultraTextEditor11.Name = "ultraTextEditor11";
  1702. this.ultraTextEditor11.Size = new System.Drawing.Size(84, 19);
  1703. this.ultraTextEditor11.TabIndex = 372;
  1704. this.ultraTextEditor11.Tag = "";
  1705. //
  1706. // ultraLabel21
  1707. //
  1708. this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
  1709. this.ultraLabel21.Location = new System.Drawing.Point(289, 33);
  1710. this.ultraLabel21.Name = "ultraLabel21";
  1711. this.ultraLabel21.Size = new System.Drawing.Size(56, 16);
  1712. this.ultraLabel21.TabIndex = 371;
  1713. this.ultraLabel21.Text = "计划价";
  1714. //
  1715. // ultraTextEditor12
  1716. //
  1717. this.ultraTextEditor12.AutoSize = true;
  1718. this.ultraTextEditor12.Enabled = false;
  1719. this.ultraTextEditor12.FlatMode = true;
  1720. this.ultraTextEditor12.Location = new System.Drawing.Point(346, 30);
  1721. this.ultraTextEditor12.Name = "ultraTextEditor12";
  1722. this.ultraTextEditor12.Size = new System.Drawing.Size(84, 19);
  1723. this.ultraTextEditor12.TabIndex = 370;
  1724. this.ultraTextEditor12.Tag = "";
  1725. //
  1726. // ultraComboEditor2
  1727. //
  1728. this.ultraComboEditor2.AutoSize = true;
  1729. valueListItem21.DataValue = "0";
  1730. valueListItem20.DataValue = valueListItem21;
  1731. valueListItem20.DisplayText = "";
  1732. valueListItem19.DataValue = valueListItem20;
  1733. valueListItem19.DisplayText = "";
  1734. valueListItem24.DataValue = "A";
  1735. valueListItem24.DisplayText = "A";
  1736. valueListItem23.DataValue = valueListItem24;
  1737. valueListItem23.DisplayText = "A";
  1738. valueListItem22.DataValue = valueListItem23;
  1739. valueListItem22.DisplayText = "A";
  1740. valueListItem27.DataValue = "B";
  1741. valueListItem27.DisplayText = "B";
  1742. valueListItem26.DataValue = valueListItem27;
  1743. valueListItem26.DisplayText = "B";
  1744. valueListItem25.DataValue = valueListItem26;
  1745. valueListItem25.DisplayText = "B";
  1746. valueListItem30.DataValue = "C";
  1747. valueListItem30.DisplayText = "C";
  1748. valueListItem29.DataValue = valueListItem30;
  1749. valueListItem29.DisplayText = "C";
  1750. valueListItem28.DataValue = valueListItem29;
  1751. valueListItem28.DisplayText = "C";
  1752. this.ultraComboEditor2.Items.Add(valueListItem19);
  1753. this.ultraComboEditor2.Items.Add(valueListItem22);
  1754. this.ultraComboEditor2.Items.Add(valueListItem25);
  1755. this.ultraComboEditor2.Items.Add(valueListItem28);
  1756. this.ultraComboEditor2.Location = new System.Drawing.Point(346, 5);
  1757. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1758. this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
  1759. this.ultraComboEditor2.TabIndex = 369;
  1760. //
  1761. // ultraLabel22
  1762. //
  1763. this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
  1764. this.ultraLabel22.Location = new System.Drawing.Point(289, 8);
  1765. this.ultraLabel22.Name = "ultraLabel22";
  1766. this.ultraLabel22.Size = new System.Drawing.Size(56, 16);
  1767. this.ultraLabel22.TabIndex = 368;
  1768. this.ultraLabel22.Text = "物资类别";
  1769. //
  1770. // ultraLabel23
  1771. //
  1772. this.ultraLabel23.BackColor = System.Drawing.Color.Transparent;
  1773. this.ultraLabel23.Location = new System.Drawing.Point(3, 77);
  1774. this.ultraLabel23.Name = "ultraLabel23";
  1775. this.ultraLabel23.Size = new System.Drawing.Size(56, 16);
  1776. this.ultraLabel23.TabIndex = 367;
  1777. this.ultraLabel23.Text = "材质";
  1778. //
  1779. // ultraTextEditor13
  1780. //
  1781. this.ultraTextEditor13.AutoSize = true;
  1782. this.ultraTextEditor13.Enabled = false;
  1783. this.ultraTextEditor13.FlatMode = true;
  1784. this.ultraTextEditor13.Location = new System.Drawing.Point(60, 74);
  1785. this.ultraTextEditor13.Multiline = true;
  1786. this.ultraTextEditor13.Name = "ultraTextEditor13";
  1787. this.ultraTextEditor13.Size = new System.Drawing.Size(191, 19);
  1788. this.ultraTextEditor13.TabIndex = 366;
  1789. this.ultraTextEditor13.Tag = "";
  1790. //
  1791. // ultraLabel24
  1792. //
  1793. this.ultraLabel24.BackColor = System.Drawing.Color.Transparent;
  1794. this.ultraLabel24.Location = new System.Drawing.Point(3, 55);
  1795. this.ultraLabel24.Name = "ultraLabel24";
  1796. this.ultraLabel24.Size = new System.Drawing.Size(56, 16);
  1797. this.ultraLabel24.TabIndex = 365;
  1798. this.ultraLabel24.Text = "规格型号";
  1799. //
  1800. // ultraTextEditor14
  1801. //
  1802. this.ultraTextEditor14.AutoSize = true;
  1803. this.ultraTextEditor14.Enabled = false;
  1804. this.ultraTextEditor14.FlatMode = true;
  1805. this.ultraTextEditor14.Location = new System.Drawing.Point(60, 52);
  1806. this.ultraTextEditor14.Multiline = true;
  1807. this.ultraTextEditor14.Name = "ultraTextEditor14";
  1808. this.ultraTextEditor14.Size = new System.Drawing.Size(191, 19);
  1809. this.ultraTextEditor14.TabIndex = 364;
  1810. this.ultraTextEditor14.Tag = "";
  1811. //
  1812. // ultraLabel25
  1813. //
  1814. this.ultraLabel25.BackColor = System.Drawing.Color.Transparent;
  1815. this.ultraLabel25.Location = new System.Drawing.Point(3, 31);
  1816. this.ultraLabel25.Name = "ultraLabel25";
  1817. this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
  1818. this.ultraLabel25.TabIndex = 363;
  1819. this.ultraLabel25.Text = "物资名称";
  1820. //
  1821. // ultraTextEditor15
  1822. //
  1823. this.ultraTextEditor15.AutoSize = true;
  1824. this.ultraTextEditor15.Enabled = false;
  1825. this.ultraTextEditor15.FlatMode = true;
  1826. this.ultraTextEditor15.Location = new System.Drawing.Point(60, 28);
  1827. this.ultraTextEditor15.Multiline = true;
  1828. this.ultraTextEditor15.Name = "ultraTextEditor15";
  1829. this.ultraTextEditor15.Size = new System.Drawing.Size(191, 19);
  1830. this.ultraTextEditor15.TabIndex = 362;
  1831. this.ultraTextEditor15.Tag = "";
  1832. //
  1833. // ultraLabel26
  1834. //
  1835. this.ultraLabel26.BackColor = System.Drawing.Color.Transparent;
  1836. this.ultraLabel26.Location = new System.Drawing.Point(3, 8);
  1837. this.ultraLabel26.Name = "ultraLabel26";
  1838. this.ultraLabel26.Size = new System.Drawing.Size(56, 16);
  1839. this.ultraLabel26.TabIndex = 361;
  1840. this.ultraLabel26.Text = "物资代码";
  1841. //
  1842. // ultraTextEditor16
  1843. //
  1844. this.ultraTextEditor16.AutoSize = true;
  1845. this.ultraTextEditor16.Enabled = false;
  1846. this.ultraTextEditor16.FlatMode = true;
  1847. this.ultraTextEditor16.Location = new System.Drawing.Point(60, 5);
  1848. this.ultraTextEditor16.Name = "ultraTextEditor16";
  1849. this.ultraTextEditor16.Size = new System.Drawing.Size(84, 19);
  1850. this.ultraTextEditor16.TabIndex = 358;
  1851. this.ultraTextEditor16.Tag = "";
  1852. //
  1853. // ultraLabel16
  1854. //
  1855. this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
  1856. this.ultraLabel16.Location = new System.Drawing.Point(261, 33);
  1857. this.ultraLabel16.Name = "ultraLabel16";
  1858. this.ultraLabel16.Size = new System.Drawing.Size(118, 18);
  1859. this.ultraLabel16.TabIndex = 405;
  1860. this.ultraLabel16.Text = "委托代理人身份证号";
  1861. //
  1862. // ultraTextEditor8
  1863. //
  1864. this.ultraTextEditor8.AutoSize = true;
  1865. this.ultraTextEditor8.FlatMode = true;
  1866. this.ultraTextEditor8.Location = new System.Drawing.Point(385, 30);
  1867. this.ultraTextEditor8.Multiline = true;
  1868. this.ultraTextEditor8.Name = "ultraTextEditor8";
  1869. this.ultraTextEditor8.Size = new System.Drawing.Size(91, 19);
  1870. this.ultraTextEditor8.TabIndex = 404;
  1871. this.ultraTextEditor8.Tag = "";
  1872. //
  1873. // ultraLabel17
  1874. //
  1875. this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
  1876. this.ultraLabel17.Location = new System.Drawing.Point(4, 99);
  1877. this.ultraLabel17.Name = "ultraLabel17";
  1878. this.ultraLabel17.Size = new System.Drawing.Size(109, 19);
  1879. this.ultraLabel17.TabIndex = 403;
  1880. this.ultraLabel17.Text = "法人代表身份证号";
  1881. //
  1882. // ultraTextEditor18
  1883. //
  1884. this.ultraTextEditor18.AutoSize = true;
  1885. this.ultraTextEditor18.FlatMode = true;
  1886. this.ultraTextEditor18.Location = new System.Drawing.Point(112, 96);
  1887. this.ultraTextEditor18.Multiline = true;
  1888. this.ultraTextEditor18.Name = "ultraTextEditor18";
  1889. this.ultraTextEditor18.Size = new System.Drawing.Size(139, 19);
  1890. this.ultraTextEditor18.TabIndex = 402;
  1891. this.ultraTextEditor18.Tag = "";
  1892. //
  1893. // ultraLabel27
  1894. //
  1895. this.ultraLabel27.BackColor = System.Drawing.Color.Transparent;
  1896. this.ultraLabel27.Location = new System.Drawing.Point(261, 7);
  1897. this.ultraLabel27.Name = "ultraLabel27";
  1898. this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
  1899. this.ultraLabel27.TabIndex = 401;
  1900. this.ultraLabel27.Text = "委托代理人";
  1901. //
  1902. // ultraTextEditor19
  1903. //
  1904. this.ultraTextEditor19.AutoSize = true;
  1905. this.ultraTextEditor19.FlatMode = true;
  1906. this.ultraTextEditor19.Location = new System.Drawing.Point(333, 4);
  1907. this.ultraTextEditor19.Multiline = true;
  1908. this.ultraTextEditor19.Name = "ultraTextEditor19";
  1909. this.ultraTextEditor19.Size = new System.Drawing.Size(143, 19);
  1910. this.ultraTextEditor19.TabIndex = 400;
  1911. this.ultraTextEditor19.Tag = "";
  1912. //
  1913. // ultraTextEditor20
  1914. //
  1915. this.ultraTextEditor20.AutoSize = true;
  1916. this.ultraTextEditor20.FlatMode = true;
  1917. this.ultraTextEditor20.Location = new System.Drawing.Point(927, 28);
  1918. this.ultraTextEditor20.Multiline = true;
  1919. this.ultraTextEditor20.Name = "ultraTextEditor20";
  1920. this.ultraTextEditor20.Size = new System.Drawing.Size(173, 85);
  1921. this.ultraTextEditor20.TabIndex = 399;
  1922. this.ultraTextEditor20.Tag = "";
  1923. //
  1924. // ultraComboEditor3
  1925. //
  1926. this.ultraComboEditor3.AutoSize = true;
  1927. valueListItem33.DataValue = "0";
  1928. valueListItem33.DisplayText = "非以旧换新";
  1929. valueListItem32.DataValue = valueListItem33;
  1930. valueListItem32.DisplayText = "非以旧换新";
  1931. valueListItem31.DataValue = valueListItem32;
  1932. valueListItem31.DisplayText = "非以旧换新";
  1933. valueListItem36.DataValue = "1";
  1934. valueListItem36.DisplayText = "以旧换新";
  1935. valueListItem35.DataValue = valueListItem36;
  1936. valueListItem35.DisplayText = "以旧换新";
  1937. valueListItem34.DataValue = valueListItem35;
  1938. valueListItem34.DisplayText = "以旧换新";
  1939. this.ultraComboEditor3.Items.Add(valueListItem31);
  1940. this.ultraComboEditor3.Items.Add(valueListItem34);
  1941. this.ultraComboEditor3.Location = new System.Drawing.Point(962, 2);
  1942. this.ultraComboEditor3.Name = "ultraComboEditor3";
  1943. this.ultraComboEditor3.Size = new System.Drawing.Size(120, 21);
  1944. this.ultraComboEditor3.TabIndex = 398;
  1945. //
  1946. // ultraLabel37
  1947. //
  1948. this.ultraLabel37.BackColor = System.Drawing.Color.Transparent;
  1949. this.ultraLabel37.Location = new System.Drawing.Point(886, 5);
  1950. this.ultraLabel37.Name = "ultraLabel37";
  1951. this.ultraLabel37.Size = new System.Drawing.Size(89, 20);
  1952. this.ultraLabel37.TabIndex = 397;
  1953. this.ultraLabel37.Text = "是否以旧换新";
  1954. //
  1955. // ultraComboEditor4
  1956. //
  1957. this.ultraComboEditor4.AutoSize = true;
  1958. valueListItem39.DataValue = "0";
  1959. valueListItem39.DisplayText = "非招标物资";
  1960. valueListItem38.DataValue = valueListItem39;
  1961. valueListItem38.DisplayText = "非招标物资";
  1962. valueListItem37.DataValue = valueListItem38;
  1963. valueListItem37.DisplayText = "非招标物资";
  1964. valueListItem42.DataValue = "1";
  1965. valueListItem42.DisplayText = "招标物资";
  1966. valueListItem41.DataValue = valueListItem42;
  1967. valueListItem41.DisplayText = "招标物资";
  1968. valueListItem40.DataValue = valueListItem41;
  1969. valueListItem40.DisplayText = "招标物资";
  1970. this.ultraComboEditor4.Items.Add(valueListItem37);
  1971. this.ultraComboEditor4.Items.Add(valueListItem40);
  1972. this.ultraComboEditor4.Location = new System.Drawing.Point(760, 73);
  1973. this.ultraComboEditor4.Name = "ultraComboEditor4";
  1974. this.ultraComboEditor4.Size = new System.Drawing.Size(120, 21);
  1975. this.ultraComboEditor4.TabIndex = 396;
  1976. //
  1977. // ultraLabel38
  1978. //
  1979. this.ultraLabel38.BackColor = System.Drawing.Color.Transparent;
  1980. this.ultraLabel38.Location = new System.Drawing.Point(684, 76);
  1981. this.ultraLabel38.Name = "ultraLabel38";
  1982. this.ultraLabel38.Size = new System.Drawing.Size(89, 20);
  1983. this.ultraLabel38.TabIndex = 395;
  1984. this.ultraLabel38.Text = "是否招标物资";
  1985. //
  1986. // ultraComboEditor5
  1987. //
  1988. this.ultraComboEditor5.AutoSize = true;
  1989. valueListItem45.DataValue = "0";
  1990. valueListItem45.DisplayText = "非修复物资";
  1991. valueListItem44.DataValue = valueListItem45;
  1992. valueListItem44.DisplayText = "非修复物资";
  1993. valueListItem43.DataValue = valueListItem44;
  1994. valueListItem43.DisplayText = "非修复物资";
  1995. valueListItem48.DataValue = "1";
  1996. valueListItem48.DisplayText = "修复物资";
  1997. valueListItem47.DataValue = valueListItem48;
  1998. valueListItem47.DisplayText = "修复物资";
  1999. valueListItem46.DataValue = valueListItem47;
  2000. valueListItem46.DisplayText = "修复物资";
  2001. this.ultraComboEditor5.Items.Add(valueListItem43);
  2002. this.ultraComboEditor5.Items.Add(valueListItem46);
  2003. this.ultraComboEditor5.Location = new System.Drawing.Point(760, 49);
  2004. this.ultraComboEditor5.Name = "ultraComboEditor5";
  2005. this.ultraComboEditor5.Size = new System.Drawing.Size(120, 21);
  2006. this.ultraComboEditor5.TabIndex = 394;
  2007. //
  2008. // ultraLabel39
  2009. //
  2010. this.ultraLabel39.BackColor = System.Drawing.Color.Transparent;
  2011. this.ultraLabel39.Location = new System.Drawing.Point(684, 52);
  2012. this.ultraLabel39.Name = "ultraLabel39";
  2013. this.ultraLabel39.Size = new System.Drawing.Size(89, 20);
  2014. this.ultraLabel39.TabIndex = 393;
  2015. this.ultraLabel39.Text = "是否修复物资";
  2016. //
  2017. // ultraComboEditor6
  2018. //
  2019. this.ultraComboEditor6.AutoSize = true;
  2020. valueListItem51.DataValue = "0";
  2021. valueListItem51.DisplayText = "不包安装";
  2022. valueListItem50.DataValue = valueListItem51;
  2023. valueListItem50.DisplayText = "不包安装";
  2024. valueListItem49.DataValue = valueListItem50;
  2025. valueListItem49.DisplayText = "不包安装";
  2026. valueListItem54.DataValue = "1";
  2027. valueListItem54.DisplayText = "包安装";
  2028. valueListItem53.DataValue = valueListItem54;
  2029. valueListItem53.DisplayText = "包安装";
  2030. valueListItem52.DataValue = valueListItem53;
  2031. valueListItem52.DisplayText = "包安装";
  2032. this.ultraComboEditor6.Items.Add(valueListItem49);
  2033. this.ultraComboEditor6.Items.Add(valueListItem52);
  2034. this.ultraComboEditor6.Location = new System.Drawing.Point(760, 26);
  2035. this.ultraComboEditor6.Name = "ultraComboEditor6";
  2036. this.ultraComboEditor6.Size = new System.Drawing.Size(120, 21);
  2037. this.ultraComboEditor6.TabIndex = 392;
  2038. //
  2039. // ultraLabel40
  2040. //
  2041. this.ultraLabel40.BackColor = System.Drawing.Color.Transparent;
  2042. this.ultraLabel40.Location = new System.Drawing.Point(684, 29);
  2043. this.ultraLabel40.Name = "ultraLabel40";
  2044. this.ultraLabel40.Size = new System.Drawing.Size(89, 20);
  2045. this.ultraLabel40.TabIndex = 391;
  2046. this.ultraLabel40.Text = "是否包安装";
  2047. //
  2048. // ultraComboEditor7
  2049. //
  2050. this.ultraComboEditor7.AutoSize = true;
  2051. valueListItem57.DataValue = "0";
  2052. valueListItem57.DisplayText = "非备库物资";
  2053. valueListItem56.DataValue = valueListItem57;
  2054. valueListItem56.DisplayText = "非备库物资";
  2055. valueListItem55.DataValue = valueListItem56;
  2056. valueListItem55.DisplayText = "非备库物资";
  2057. valueListItem60.DataValue = "1";
  2058. valueListItem60.DisplayText = "备库物资";
  2059. valueListItem59.DataValue = valueListItem60;
  2060. valueListItem59.DisplayText = "备库物资";
  2061. valueListItem58.DataValue = valueListItem59;
  2062. valueListItem58.DisplayText = "备库物资";
  2063. this.ultraComboEditor7.Items.Add(valueListItem55);
  2064. this.ultraComboEditor7.Items.Add(valueListItem58);
  2065. this.ultraComboEditor7.Location = new System.Drawing.Point(760, 3);
  2066. this.ultraComboEditor7.Name = "ultraComboEditor7";
  2067. this.ultraComboEditor7.Size = new System.Drawing.Size(120, 21);
  2068. this.ultraComboEditor7.TabIndex = 390;
  2069. //
  2070. // ultraLabel41
  2071. //
  2072. this.ultraLabel41.BackColor = System.Drawing.Color.Transparent;
  2073. this.ultraLabel41.Location = new System.Drawing.Point(684, 6);
  2074. this.ultraLabel41.Name = "ultraLabel41";
  2075. this.ultraLabel41.Size = new System.Drawing.Size(89, 20);
  2076. this.ultraLabel41.TabIndex = 389;
  2077. this.ultraLabel41.Text = "是否备库物资";
  2078. //
  2079. // ultraComboEditor8
  2080. //
  2081. this.ultraComboEditor8.AutoSize = true;
  2082. valueListItem63.DataValue = "0";
  2083. valueListItem63.DisplayText = "正在使用的物资";
  2084. valueListItem62.DataValue = valueListItem63;
  2085. valueListItem62.DisplayText = "正在使用的物资";
  2086. valueListItem61.DataValue = valueListItem62;
  2087. valueListItem61.DisplayText = "正在使用的物资";
  2088. valueListItem66.DataValue = "1";
  2089. valueListItem66.DisplayText = "已废除的物资";
  2090. valueListItem65.DataValue = valueListItem66;
  2091. valueListItem65.DisplayText = "已废除的物资";
  2092. valueListItem64.DataValue = valueListItem65;
  2093. valueListItem64.DisplayText = "已废除的物资";
  2094. this.ultraComboEditor8.Items.Add(valueListItem61);
  2095. this.ultraComboEditor8.Items.Add(valueListItem64);
  2096. this.ultraComboEditor8.Location = new System.Drawing.Point(584, 76);
  2097. this.ultraComboEditor8.Name = "ultraComboEditor8";
  2098. this.ultraComboEditor8.Size = new System.Drawing.Size(94, 21);
  2099. this.ultraComboEditor8.TabIndex = 388;
  2100. //
  2101. // ultraLabel42
  2102. //
  2103. this.ultraLabel42.BackColor = System.Drawing.Color.Transparent;
  2104. this.ultraLabel42.Location = new System.Drawing.Point(482, 79);
  2105. this.ultraLabel42.Name = "ultraLabel42";
  2106. this.ultraLabel42.Size = new System.Drawing.Size(117, 18);
  2107. this.ultraLabel42.TabIndex = 387;
  2108. this.ultraLabel42.Text = "是否废除的物资";
  2109. //
  2110. // ultraComboEditor9
  2111. //
  2112. this.ultraComboEditor9.AutoSize = true;
  2113. valueListItem69.DataValue = "0";
  2114. valueListItem69.DisplayText = "不允许负数发";
  2115. valueListItem68.DataValue = valueListItem69;
  2116. valueListItem68.DisplayText = "不允许负数发";
  2117. valueListItem67.DataValue = valueListItem68;
  2118. valueListItem67.DisplayText = "不允许负数发";
  2119. valueListItem72.DataValue = "1";
  2120. valueListItem72.DisplayText = "允许负数发料";
  2121. valueListItem71.DataValue = valueListItem72;
  2122. valueListItem71.DisplayText = "允许负数发料";
  2123. valueListItem70.DataValue = valueListItem71;
  2124. valueListItem70.DisplayText = "允许负数发料";
  2125. this.ultraComboEditor9.Items.Add(valueListItem67);
  2126. this.ultraComboEditor9.Items.Add(valueListItem70);
  2127. this.ultraComboEditor9.Location = new System.Drawing.Point(584, 52);
  2128. this.ultraComboEditor9.Name = "ultraComboEditor9";
  2129. this.ultraComboEditor9.Size = new System.Drawing.Size(94, 21);
  2130. this.ultraComboEditor9.TabIndex = 386;
  2131. //
  2132. // ultraLabel43
  2133. //
  2134. this.ultraLabel43.BackColor = System.Drawing.Color.Transparent;
  2135. this.ultraLabel43.Location = new System.Drawing.Point(482, 55);
  2136. this.ultraLabel43.Name = "ultraLabel43";
  2137. this.ultraLabel43.Size = new System.Drawing.Size(117, 18);
  2138. this.ultraLabel43.TabIndex = 385;
  2139. this.ultraLabel43.Text = "是否允许负数发料";
  2140. //
  2141. // ultraComboEditor10
  2142. //
  2143. this.ultraComboEditor10.AutoSize = true;
  2144. valueListItem75.DataValue = "0";
  2145. valueListItem75.DisplayText = "非零库存物资";
  2146. valueListItem74.DataValue = valueListItem75;
  2147. valueListItem74.DisplayText = "非零库存物资";
  2148. valueListItem73.DataValue = valueListItem74;
  2149. valueListItem73.DisplayText = "非零库存物资";
  2150. valueListItem78.DataValue = "1";
  2151. valueListItem78.DisplayText = "零库存物资";
  2152. valueListItem77.DataValue = valueListItem78;
  2153. valueListItem77.DisplayText = "零库存物资";
  2154. valueListItem76.DataValue = valueListItem77;
  2155. valueListItem76.DisplayText = "零库存物资";
  2156. this.ultraComboEditor10.Items.Add(valueListItem73);
  2157. this.ultraComboEditor10.Items.Add(valueListItem76);
  2158. this.ultraComboEditor10.Location = new System.Drawing.Point(550, 28);
  2159. this.ultraComboEditor10.Name = "ultraComboEditor10";
  2160. this.ultraComboEditor10.Size = new System.Drawing.Size(128, 21);
  2161. this.ultraComboEditor10.TabIndex = 384;
  2162. //
  2163. // ultraLabel44
  2164. //
  2165. this.ultraLabel44.BackColor = System.Drawing.Color.Transparent;
  2166. this.ultraLabel44.Location = new System.Drawing.Point(482, 31);
  2167. this.ultraLabel44.Name = "ultraLabel44";
  2168. this.ultraLabel44.Size = new System.Drawing.Size(66, 20);
  2169. this.ultraLabel44.TabIndex = 383;
  2170. this.ultraLabel44.Text = "是否零库存";
  2171. //
  2172. // ultraLabel45
  2173. //
  2174. this.ultraLabel45.BackColor = System.Drawing.Color.Transparent;
  2175. this.ultraLabel45.Location = new System.Drawing.Point(482, 8);
  2176. this.ultraLabel45.Name = "ultraLabel45";
  2177. this.ultraLabel45.Size = new System.Drawing.Size(56, 16);
  2178. this.ultraLabel45.TabIndex = 381;
  2179. this.ultraLabel45.Text = "制造周期";
  2180. //
  2181. // ultraTextEditor21
  2182. //
  2183. this.ultraTextEditor21.AutoSize = true;
  2184. this.ultraTextEditor21.FlatMode = true;
  2185. this.ultraTextEditor21.Location = new System.Drawing.Point(550, 5);
  2186. this.ultraTextEditor21.Name = "ultraTextEditor21";
  2187. this.ultraTextEditor21.Size = new System.Drawing.Size(128, 19);
  2188. this.ultraTextEditor21.TabIndex = 380;
  2189. this.ultraTextEditor21.Tag = "";
  2190. //
  2191. // ultraLabel46
  2192. //
  2193. this.ultraLabel46.BackColor = System.Drawing.Color.Transparent;
  2194. this.ultraLabel46.Location = new System.Drawing.Point(3, 77);
  2195. this.ultraLabel46.Name = "ultraLabel46";
  2196. this.ultraLabel46.Size = new System.Drawing.Size(56, 16);
  2197. this.ultraLabel46.TabIndex = 367;
  2198. this.ultraLabel46.Text = "法人代表";
  2199. //
  2200. // ultraTextEditor22
  2201. //
  2202. this.ultraTextEditor22.AutoSize = true;
  2203. this.ultraTextEditor22.FlatMode = true;
  2204. this.ultraTextEditor22.Location = new System.Drawing.Point(60, 74);
  2205. this.ultraTextEditor22.Multiline = true;
  2206. this.ultraTextEditor22.Name = "ultraTextEditor22";
  2207. this.ultraTextEditor22.Size = new System.Drawing.Size(191, 19);
  2208. this.ultraTextEditor22.TabIndex = 366;
  2209. this.ultraTextEditor22.Tag = "";
  2210. //
  2211. // ultraLabel47
  2212. //
  2213. this.ultraLabel47.BackColor = System.Drawing.Color.Transparent;
  2214. this.ultraLabel47.Location = new System.Drawing.Point(3, 55);
  2215. this.ultraLabel47.Name = "ultraLabel47";
  2216. this.ultraLabel47.Size = new System.Drawing.Size(56, 16);
  2217. this.ultraLabel47.TabIndex = 365;
  2218. this.ultraLabel47.Text = "产品标准";
  2219. //
  2220. // ultraTextEditor23
  2221. //
  2222. this.ultraTextEditor23.AutoSize = true;
  2223. this.ultraTextEditor23.FlatMode = true;
  2224. this.ultraTextEditor23.Location = new System.Drawing.Point(60, 52);
  2225. this.ultraTextEditor23.Multiline = true;
  2226. this.ultraTextEditor23.Name = "ultraTextEditor23";
  2227. this.ultraTextEditor23.Size = new System.Drawing.Size(191, 19);
  2228. this.ultraTextEditor23.TabIndex = 364;
  2229. this.ultraTextEditor23.Tag = "";
  2230. //
  2231. // ultraLabel48
  2232. //
  2233. this.ultraLabel48.BackColor = System.Drawing.Color.Transparent;
  2234. this.ultraLabel48.Location = new System.Drawing.Point(3, 31);
  2235. this.ultraLabel48.Name = "ultraLabel48";
  2236. this.ultraLabel48.Size = new System.Drawing.Size(56, 16);
  2237. this.ultraLabel48.TabIndex = 363;
  2238. this.ultraLabel48.Text = "供方名称";
  2239. //
  2240. // ultraTextEditor24
  2241. //
  2242. this.ultraTextEditor24.AutoSize = true;
  2243. this.ultraTextEditor24.FlatMode = true;
  2244. this.ultraTextEditor24.Location = new System.Drawing.Point(60, 28);
  2245. this.ultraTextEditor24.Multiline = true;
  2246. this.ultraTextEditor24.Name = "ultraTextEditor24";
  2247. this.ultraTextEditor24.Size = new System.Drawing.Size(191, 19);
  2248. this.ultraTextEditor24.TabIndex = 362;
  2249. this.ultraTextEditor24.Tag = "";
  2250. //
  2251. // ultraLabel49
  2252. //
  2253. this.ultraLabel49.BackColor = System.Drawing.Color.Transparent;
  2254. this.ultraLabel49.Location = new System.Drawing.Point(3, 8);
  2255. this.ultraLabel49.Name = "ultraLabel49";
  2256. this.ultraLabel49.Size = new System.Drawing.Size(56, 16);
  2257. this.ultraLabel49.TabIndex = 361;
  2258. this.ultraLabel49.Text = "供方代码";
  2259. //
  2260. // ultraTextEditor25
  2261. //
  2262. this.ultraTextEditor25.AutoSize = true;
  2263. this.ultraTextEditor25.Enabled = false;
  2264. this.ultraTextEditor25.FlatMode = true;
  2265. this.ultraTextEditor25.Location = new System.Drawing.Point(60, 5);
  2266. this.ultraTextEditor25.Name = "ultraTextEditor25";
  2267. this.ultraTextEditor25.Size = new System.Drawing.Size(84, 19);
  2268. this.ultraTextEditor25.TabIndex = 358;
  2269. this.ultraTextEditor25.Tag = "";
  2270. //
  2271. // ultraLabel51
  2272. //
  2273. this.ultraLabel51.BackColor = System.Drawing.Color.Transparent;
  2274. this.ultraLabel51.Location = new System.Drawing.Point(261, 57);
  2275. this.ultraLabel51.Name = "ultraLabel51";
  2276. this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
  2277. this.ultraLabel51.TabIndex = 407;
  2278. this.ultraLabel51.Text = "注册资金";
  2279. //
  2280. // ultraTextEditor26
  2281. //
  2282. this.ultraTextEditor26.AutoSize = true;
  2283. this.ultraTextEditor26.FlatMode = true;
  2284. this.ultraTextEditor26.Location = new System.Drawing.Point(333, 54);
  2285. this.ultraTextEditor26.Multiline = true;
  2286. this.ultraTextEditor26.Name = "ultraTextEditor26";
  2287. this.ultraTextEditor26.Size = new System.Drawing.Size(143, 19);
  2288. this.ultraTextEditor26.TabIndex = 406;
  2289. this.ultraTextEditor26.Tag = "";
  2290. //
  2291. // ultraLabel52
  2292. //
  2293. this.ultraLabel52.BackColor = System.Drawing.Color.Transparent;
  2294. this.ultraLabel52.Location = new System.Drawing.Point(261, 33);
  2295. this.ultraLabel52.Name = "ultraLabel52";
  2296. this.ultraLabel52.Size = new System.Drawing.Size(118, 18);
  2297. this.ultraLabel52.TabIndex = 405;
  2298. this.ultraLabel52.Text = "委托代理人身份证号";
  2299. //
  2300. // ultraTextEditor27
  2301. //
  2302. this.ultraTextEditor27.AutoSize = true;
  2303. this.ultraTextEditor27.FlatMode = true;
  2304. this.ultraTextEditor27.Location = new System.Drawing.Point(385, 30);
  2305. this.ultraTextEditor27.Multiline = true;
  2306. this.ultraTextEditor27.Name = "ultraTextEditor27";
  2307. this.ultraTextEditor27.Size = new System.Drawing.Size(91, 19);
  2308. this.ultraTextEditor27.TabIndex = 404;
  2309. this.ultraTextEditor27.Tag = "";
  2310. //
  2311. // ultraLabel53
  2312. //
  2313. this.ultraLabel53.BackColor = System.Drawing.Color.Transparent;
  2314. this.ultraLabel53.Location = new System.Drawing.Point(4, 99);
  2315. this.ultraLabel53.Name = "ultraLabel53";
  2316. this.ultraLabel53.Size = new System.Drawing.Size(109, 19);
  2317. this.ultraLabel53.TabIndex = 403;
  2318. this.ultraLabel53.Text = "法人代表身份证号";
  2319. //
  2320. // ultraTextEditor28
  2321. //
  2322. this.ultraTextEditor28.AutoSize = true;
  2323. this.ultraTextEditor28.FlatMode = true;
  2324. this.ultraTextEditor28.Location = new System.Drawing.Point(112, 96);
  2325. this.ultraTextEditor28.Multiline = true;
  2326. this.ultraTextEditor28.Name = "ultraTextEditor28";
  2327. this.ultraTextEditor28.Size = new System.Drawing.Size(139, 19);
  2328. this.ultraTextEditor28.TabIndex = 402;
  2329. this.ultraTextEditor28.Tag = "";
  2330. //
  2331. // ultraLabel54
  2332. //
  2333. this.ultraLabel54.BackColor = System.Drawing.Color.Transparent;
  2334. this.ultraLabel54.Location = new System.Drawing.Point(261, 7);
  2335. this.ultraLabel54.Name = "ultraLabel54";
  2336. this.ultraLabel54.Size = new System.Drawing.Size(66, 16);
  2337. this.ultraLabel54.TabIndex = 401;
  2338. this.ultraLabel54.Text = "委托代理人";
  2339. //
  2340. // ultraTextEditor29
  2341. //
  2342. this.ultraTextEditor29.AutoSize = true;
  2343. this.ultraTextEditor29.FlatMode = true;
  2344. this.ultraTextEditor29.Location = new System.Drawing.Point(333, 4);
  2345. this.ultraTextEditor29.Multiline = true;
  2346. this.ultraTextEditor29.Name = "ultraTextEditor29";
  2347. this.ultraTextEditor29.Size = new System.Drawing.Size(143, 19);
  2348. this.ultraTextEditor29.TabIndex = 400;
  2349. this.ultraTextEditor29.Tag = "";
  2350. //
  2351. // ultraTextEditor30
  2352. //
  2353. this.ultraTextEditor30.AutoSize = true;
  2354. this.ultraTextEditor30.FlatMode = true;
  2355. this.ultraTextEditor30.Location = new System.Drawing.Point(927, 28);
  2356. this.ultraTextEditor30.Multiline = true;
  2357. this.ultraTextEditor30.Name = "ultraTextEditor30";
  2358. this.ultraTextEditor30.Size = new System.Drawing.Size(173, 85);
  2359. this.ultraTextEditor30.TabIndex = 399;
  2360. this.ultraTextEditor30.Tag = "";
  2361. //
  2362. // ultraComboEditor11
  2363. //
  2364. this.ultraComboEditor11.AutoSize = true;
  2365. valueListItem81.DataValue = "0";
  2366. valueListItem81.DisplayText = "非以旧换新";
  2367. valueListItem80.DataValue = valueListItem81;
  2368. valueListItem80.DisplayText = "非以旧换新";
  2369. valueListItem79.DataValue = valueListItem80;
  2370. valueListItem79.DisplayText = "非以旧换新";
  2371. valueListItem84.DataValue = "1";
  2372. valueListItem84.DisplayText = "以旧换新";
  2373. valueListItem83.DataValue = valueListItem84;
  2374. valueListItem83.DisplayText = "以旧换新";
  2375. valueListItem82.DataValue = valueListItem83;
  2376. valueListItem82.DisplayText = "以旧换新";
  2377. this.ultraComboEditor11.Items.Add(valueListItem79);
  2378. this.ultraComboEditor11.Items.Add(valueListItem82);
  2379. this.ultraComboEditor11.Location = new System.Drawing.Point(962, 2);
  2380. this.ultraComboEditor11.Name = "ultraComboEditor11";
  2381. this.ultraComboEditor11.Size = new System.Drawing.Size(120, 21);
  2382. this.ultraComboEditor11.TabIndex = 398;
  2383. //
  2384. // ultraLabel55
  2385. //
  2386. this.ultraLabel55.BackColor = System.Drawing.Color.Transparent;
  2387. this.ultraLabel55.Location = new System.Drawing.Point(886, 5);
  2388. this.ultraLabel55.Name = "ultraLabel55";
  2389. this.ultraLabel55.Size = new System.Drawing.Size(89, 20);
  2390. this.ultraLabel55.TabIndex = 397;
  2391. this.ultraLabel55.Text = "是否以旧换新";
  2392. //
  2393. // ultraComboEditor12
  2394. //
  2395. this.ultraComboEditor12.AutoSize = true;
  2396. valueListItem87.DataValue = "0";
  2397. valueListItem87.DisplayText = "非招标物资";
  2398. valueListItem86.DataValue = valueListItem87;
  2399. valueListItem86.DisplayText = "非招标物资";
  2400. valueListItem85.DataValue = valueListItem86;
  2401. valueListItem85.DisplayText = "非招标物资";
  2402. valueListItem90.DataValue = "1";
  2403. valueListItem90.DisplayText = "招标物资";
  2404. valueListItem89.DataValue = valueListItem90;
  2405. valueListItem89.DisplayText = "招标物资";
  2406. valueListItem88.DataValue = valueListItem89;
  2407. valueListItem88.DisplayText = "招标物资";
  2408. this.ultraComboEditor12.Items.Add(valueListItem85);
  2409. this.ultraComboEditor12.Items.Add(valueListItem88);
  2410. this.ultraComboEditor12.Location = new System.Drawing.Point(760, 73);
  2411. this.ultraComboEditor12.Name = "ultraComboEditor12";
  2412. this.ultraComboEditor12.Size = new System.Drawing.Size(120, 21);
  2413. this.ultraComboEditor12.TabIndex = 396;
  2414. //
  2415. // ultraLabel56
  2416. //
  2417. this.ultraLabel56.BackColor = System.Drawing.Color.Transparent;
  2418. this.ultraLabel56.Location = new System.Drawing.Point(684, 76);
  2419. this.ultraLabel56.Name = "ultraLabel56";
  2420. this.ultraLabel56.Size = new System.Drawing.Size(89, 20);
  2421. this.ultraLabel56.TabIndex = 395;
  2422. this.ultraLabel56.Text = "是否招标物资";
  2423. //
  2424. // ultraComboEditor13
  2425. //
  2426. this.ultraComboEditor13.AutoSize = true;
  2427. valueListItem93.DataValue = "0";
  2428. valueListItem93.DisplayText = "非修复物资";
  2429. valueListItem92.DataValue = valueListItem93;
  2430. valueListItem92.DisplayText = "非修复物资";
  2431. valueListItem91.DataValue = valueListItem92;
  2432. valueListItem91.DisplayText = "非修复物资";
  2433. valueListItem96.DataValue = "1";
  2434. valueListItem96.DisplayText = "修复物资";
  2435. valueListItem95.DataValue = valueListItem96;
  2436. valueListItem95.DisplayText = "修复物资";
  2437. valueListItem94.DataValue = valueListItem95;
  2438. valueListItem94.DisplayText = "修复物资";
  2439. this.ultraComboEditor13.Items.Add(valueListItem91);
  2440. this.ultraComboEditor13.Items.Add(valueListItem94);
  2441. this.ultraComboEditor13.Location = new System.Drawing.Point(760, 49);
  2442. this.ultraComboEditor13.Name = "ultraComboEditor13";
  2443. this.ultraComboEditor13.Size = new System.Drawing.Size(120, 21);
  2444. this.ultraComboEditor13.TabIndex = 394;
  2445. //
  2446. // ultraLabel57
  2447. //
  2448. this.ultraLabel57.BackColor = System.Drawing.Color.Transparent;
  2449. this.ultraLabel57.Location = new System.Drawing.Point(684, 52);
  2450. this.ultraLabel57.Name = "ultraLabel57";
  2451. this.ultraLabel57.Size = new System.Drawing.Size(89, 20);
  2452. this.ultraLabel57.TabIndex = 393;
  2453. this.ultraLabel57.Text = "是否修复物资";
  2454. //
  2455. // ultraComboEditor14
  2456. //
  2457. this.ultraComboEditor14.AutoSize = true;
  2458. valueListItem99.DataValue = "0";
  2459. valueListItem99.DisplayText = "不包安装";
  2460. valueListItem98.DataValue = valueListItem99;
  2461. valueListItem98.DisplayText = "不包安装";
  2462. valueListItem97.DataValue = valueListItem98;
  2463. valueListItem97.DisplayText = "不包安装";
  2464. valueListItem102.DataValue = "1";
  2465. valueListItem102.DisplayText = "包安装";
  2466. valueListItem101.DataValue = valueListItem102;
  2467. valueListItem101.DisplayText = "包安装";
  2468. valueListItem100.DataValue = valueListItem101;
  2469. valueListItem100.DisplayText = "包安装";
  2470. this.ultraComboEditor14.Items.Add(valueListItem97);
  2471. this.ultraComboEditor14.Items.Add(valueListItem100);
  2472. this.ultraComboEditor14.Location = new System.Drawing.Point(760, 26);
  2473. this.ultraComboEditor14.Name = "ultraComboEditor14";
  2474. this.ultraComboEditor14.Size = new System.Drawing.Size(120, 21);
  2475. this.ultraComboEditor14.TabIndex = 392;
  2476. //
  2477. // ultraLabel58
  2478. //
  2479. this.ultraLabel58.BackColor = System.Drawing.Color.Transparent;
  2480. this.ultraLabel58.Location = new System.Drawing.Point(684, 29);
  2481. this.ultraLabel58.Name = "ultraLabel58";
  2482. this.ultraLabel58.Size = new System.Drawing.Size(89, 20);
  2483. this.ultraLabel58.TabIndex = 391;
  2484. this.ultraLabel58.Text = "是否包安装";
  2485. //
  2486. // ultraComboEditor15
  2487. //
  2488. this.ultraComboEditor15.AutoSize = true;
  2489. valueListItem105.DataValue = "0";
  2490. valueListItem105.DisplayText = "非备库物资";
  2491. valueListItem104.DataValue = valueListItem105;
  2492. valueListItem104.DisplayText = "非备库物资";
  2493. valueListItem103.DataValue = valueListItem104;
  2494. valueListItem103.DisplayText = "非备库物资";
  2495. valueListItem108.DataValue = "1";
  2496. valueListItem108.DisplayText = "备库物资";
  2497. valueListItem107.DataValue = valueListItem108;
  2498. valueListItem107.DisplayText = "备库物资";
  2499. valueListItem106.DataValue = valueListItem107;
  2500. valueListItem106.DisplayText = "备库物资";
  2501. this.ultraComboEditor15.Items.Add(valueListItem103);
  2502. this.ultraComboEditor15.Items.Add(valueListItem106);
  2503. this.ultraComboEditor15.Location = new System.Drawing.Point(760, 3);
  2504. this.ultraComboEditor15.Name = "ultraComboEditor15";
  2505. this.ultraComboEditor15.Size = new System.Drawing.Size(120, 21);
  2506. this.ultraComboEditor15.TabIndex = 390;
  2507. //
  2508. // ultraLabel59
  2509. //
  2510. this.ultraLabel59.BackColor = System.Drawing.Color.Transparent;
  2511. this.ultraLabel59.Location = new System.Drawing.Point(684, 6);
  2512. this.ultraLabel59.Name = "ultraLabel59";
  2513. this.ultraLabel59.Size = new System.Drawing.Size(89, 20);
  2514. this.ultraLabel59.TabIndex = 389;
  2515. this.ultraLabel59.Text = "是否备库物资";
  2516. //
  2517. // ultraComboEditor16
  2518. //
  2519. this.ultraComboEditor16.AutoSize = true;
  2520. valueListItem111.DataValue = "0";
  2521. valueListItem111.DisplayText = "正在使用的物资";
  2522. valueListItem110.DataValue = valueListItem111;
  2523. valueListItem110.DisplayText = "正在使用的物资";
  2524. valueListItem109.DataValue = valueListItem110;
  2525. valueListItem109.DisplayText = "正在使用的物资";
  2526. valueListItem114.DataValue = "1";
  2527. valueListItem114.DisplayText = "已废除的物资";
  2528. valueListItem113.DataValue = valueListItem114;
  2529. valueListItem113.DisplayText = "已废除的物资";
  2530. valueListItem112.DataValue = valueListItem113;
  2531. valueListItem112.DisplayText = "已废除的物资";
  2532. this.ultraComboEditor16.Items.Add(valueListItem109);
  2533. this.ultraComboEditor16.Items.Add(valueListItem112);
  2534. this.ultraComboEditor16.Location = new System.Drawing.Point(584, 76);
  2535. this.ultraComboEditor16.Name = "ultraComboEditor16";
  2536. this.ultraComboEditor16.Size = new System.Drawing.Size(94, 21);
  2537. this.ultraComboEditor16.TabIndex = 388;
  2538. //
  2539. // ultraLabel60
  2540. //
  2541. this.ultraLabel60.BackColor = System.Drawing.Color.Transparent;
  2542. this.ultraLabel60.Location = new System.Drawing.Point(482, 79);
  2543. this.ultraLabel60.Name = "ultraLabel60";
  2544. this.ultraLabel60.Size = new System.Drawing.Size(117, 18);
  2545. this.ultraLabel60.TabIndex = 387;
  2546. this.ultraLabel60.Text = "是否废除的物资";
  2547. //
  2548. // ultraComboEditor17
  2549. //
  2550. this.ultraComboEditor17.AutoSize = true;
  2551. valueListItem117.DataValue = "0";
  2552. valueListItem117.DisplayText = "不允许负数发";
  2553. valueListItem116.DataValue = valueListItem117;
  2554. valueListItem116.DisplayText = "不允许负数发";
  2555. valueListItem115.DataValue = valueListItem116;
  2556. valueListItem115.DisplayText = "不允许负数发";
  2557. valueListItem120.DataValue = "1";
  2558. valueListItem120.DisplayText = "允许负数发料";
  2559. valueListItem119.DataValue = valueListItem120;
  2560. valueListItem119.DisplayText = "允许负数发料";
  2561. valueListItem118.DataValue = valueListItem119;
  2562. valueListItem118.DisplayText = "允许负数发料";
  2563. this.ultraComboEditor17.Items.Add(valueListItem115);
  2564. this.ultraComboEditor17.Items.Add(valueListItem118);
  2565. this.ultraComboEditor17.Location = new System.Drawing.Point(584, 52);
  2566. this.ultraComboEditor17.Name = "ultraComboEditor17";
  2567. this.ultraComboEditor17.Size = new System.Drawing.Size(94, 21);
  2568. this.ultraComboEditor17.TabIndex = 386;
  2569. //
  2570. // ultraLabel61
  2571. //
  2572. this.ultraLabel61.BackColor = System.Drawing.Color.Transparent;
  2573. this.ultraLabel61.Location = new System.Drawing.Point(482, 55);
  2574. this.ultraLabel61.Name = "ultraLabel61";
  2575. this.ultraLabel61.Size = new System.Drawing.Size(117, 18);
  2576. this.ultraLabel61.TabIndex = 385;
  2577. this.ultraLabel61.Text = "是否允许负数发料";
  2578. //
  2579. // ultraComboEditor18
  2580. //
  2581. this.ultraComboEditor18.AutoSize = true;
  2582. valueListItem123.DataValue = "0";
  2583. valueListItem123.DisplayText = "非零库存物资";
  2584. valueListItem122.DataValue = valueListItem123;
  2585. valueListItem122.DisplayText = "非零库存物资";
  2586. valueListItem121.DataValue = valueListItem122;
  2587. valueListItem121.DisplayText = "非零库存物资";
  2588. valueListItem126.DataValue = "1";
  2589. valueListItem126.DisplayText = "零库存物资";
  2590. valueListItem125.DataValue = valueListItem126;
  2591. valueListItem125.DisplayText = "零库存物资";
  2592. valueListItem124.DataValue = valueListItem125;
  2593. valueListItem124.DisplayText = "零库存物资";
  2594. this.ultraComboEditor18.Items.Add(valueListItem121);
  2595. this.ultraComboEditor18.Items.Add(valueListItem124);
  2596. this.ultraComboEditor18.Location = new System.Drawing.Point(550, 28);
  2597. this.ultraComboEditor18.Name = "ultraComboEditor18";
  2598. this.ultraComboEditor18.Size = new System.Drawing.Size(128, 21);
  2599. this.ultraComboEditor18.TabIndex = 384;
  2600. //
  2601. // ultraLabel62
  2602. //
  2603. this.ultraLabel62.BackColor = System.Drawing.Color.Transparent;
  2604. this.ultraLabel62.Location = new System.Drawing.Point(482, 31);
  2605. this.ultraLabel62.Name = "ultraLabel62";
  2606. this.ultraLabel62.Size = new System.Drawing.Size(66, 20);
  2607. this.ultraLabel62.TabIndex = 383;
  2608. this.ultraLabel62.Text = "是否零库存";
  2609. //
  2610. // ultraLabel63
  2611. //
  2612. this.ultraLabel63.BackColor = System.Drawing.Color.Transparent;
  2613. this.ultraLabel63.Location = new System.Drawing.Point(482, 8);
  2614. this.ultraLabel63.Name = "ultraLabel63";
  2615. this.ultraLabel63.Size = new System.Drawing.Size(56, 16);
  2616. this.ultraLabel63.TabIndex = 381;
  2617. this.ultraLabel63.Text = "制造周期";
  2618. //
  2619. // ultraTextEditor31
  2620. //
  2621. this.ultraTextEditor31.AutoSize = true;
  2622. this.ultraTextEditor31.FlatMode = true;
  2623. this.ultraTextEditor31.Location = new System.Drawing.Point(550, 5);
  2624. this.ultraTextEditor31.Name = "ultraTextEditor31";
  2625. this.ultraTextEditor31.Size = new System.Drawing.Size(128, 19);
  2626. this.ultraTextEditor31.TabIndex = 380;
  2627. this.ultraTextEditor31.Tag = "";
  2628. //
  2629. // ultraLabel64
  2630. //
  2631. this.ultraLabel64.BackColor = System.Drawing.Color.Transparent;
  2632. this.ultraLabel64.Location = new System.Drawing.Point(3, 77);
  2633. this.ultraLabel64.Name = "ultraLabel64";
  2634. this.ultraLabel64.Size = new System.Drawing.Size(56, 16);
  2635. this.ultraLabel64.TabIndex = 367;
  2636. this.ultraLabel64.Text = "法人代表";
  2637. //
  2638. // ultraTextEditor32
  2639. //
  2640. this.ultraTextEditor32.AutoSize = true;
  2641. this.ultraTextEditor32.FlatMode = true;
  2642. this.ultraTextEditor32.Location = new System.Drawing.Point(60, 74);
  2643. this.ultraTextEditor32.Multiline = true;
  2644. this.ultraTextEditor32.Name = "ultraTextEditor32";
  2645. this.ultraTextEditor32.Size = new System.Drawing.Size(191, 19);
  2646. this.ultraTextEditor32.TabIndex = 366;
  2647. this.ultraTextEditor32.Tag = "";
  2648. //
  2649. // ultraLabel65
  2650. //
  2651. this.ultraLabel65.BackColor = System.Drawing.Color.Transparent;
  2652. this.ultraLabel65.Location = new System.Drawing.Point(3, 55);
  2653. this.ultraLabel65.Name = "ultraLabel65";
  2654. this.ultraLabel65.Size = new System.Drawing.Size(56, 16);
  2655. this.ultraLabel65.TabIndex = 365;
  2656. this.ultraLabel65.Text = "产品标准";
  2657. //
  2658. // ultraTextEditor33
  2659. //
  2660. this.ultraTextEditor33.AutoSize = true;
  2661. this.ultraTextEditor33.FlatMode = true;
  2662. this.ultraTextEditor33.Location = new System.Drawing.Point(60, 52);
  2663. this.ultraTextEditor33.Multiline = true;
  2664. this.ultraTextEditor33.Name = "ultraTextEditor33";
  2665. this.ultraTextEditor33.Size = new System.Drawing.Size(191, 19);
  2666. this.ultraTextEditor33.TabIndex = 364;
  2667. this.ultraTextEditor33.Tag = "";
  2668. //
  2669. // ultraLabel66
  2670. //
  2671. this.ultraLabel66.BackColor = System.Drawing.Color.Transparent;
  2672. this.ultraLabel66.Location = new System.Drawing.Point(3, 31);
  2673. this.ultraLabel66.Name = "ultraLabel66";
  2674. this.ultraLabel66.Size = new System.Drawing.Size(56, 16);
  2675. this.ultraLabel66.TabIndex = 363;
  2676. this.ultraLabel66.Text = "供方名称";
  2677. //
  2678. // ultraTextEditor34
  2679. //
  2680. this.ultraTextEditor34.AutoSize = true;
  2681. this.ultraTextEditor34.FlatMode = true;
  2682. this.ultraTextEditor34.Location = new System.Drawing.Point(60, 28);
  2683. this.ultraTextEditor34.Multiline = true;
  2684. this.ultraTextEditor34.Name = "ultraTextEditor34";
  2685. this.ultraTextEditor34.Size = new System.Drawing.Size(191, 19);
  2686. this.ultraTextEditor34.TabIndex = 362;
  2687. this.ultraTextEditor34.Tag = "";
  2688. //
  2689. // ultraLabel67
  2690. //
  2691. this.ultraLabel67.BackColor = System.Drawing.Color.Transparent;
  2692. this.ultraLabel67.Location = new System.Drawing.Point(3, 8);
  2693. this.ultraLabel67.Name = "ultraLabel67";
  2694. this.ultraLabel67.Size = new System.Drawing.Size(56, 16);
  2695. this.ultraLabel67.TabIndex = 361;
  2696. this.ultraLabel67.Text = "供方代码";
  2697. //
  2698. // ultraTextEditor35
  2699. //
  2700. this.ultraTextEditor35.AutoSize = true;
  2701. this.ultraTextEditor35.Enabled = false;
  2702. this.ultraTextEditor35.FlatMode = true;
  2703. this.ultraTextEditor35.Location = new System.Drawing.Point(60, 5);
  2704. this.ultraTextEditor35.Name = "ultraTextEditor35";
  2705. this.ultraTextEditor35.Size = new System.Drawing.Size(84, 19);
  2706. this.ultraTextEditor35.TabIndex = 358;
  2707. this.ultraTextEditor35.Tag = "";
  2708. //
  2709. // ultraTextEditor17
  2710. //
  2711. this.ultraTextEditor17.AutoSize = true;
  2712. this.ultraTextEditor17.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2713. this.ultraTextEditor17.Enabled = false;
  2714. this.ultraTextEditor17.Location = new System.Drawing.Point(76, 32);
  2715. this.ultraTextEditor17.MaxLength = 18;
  2716. this.ultraTextEditor17.Name = "ultraTextEditor17";
  2717. this.ultraTextEditor17.Size = new System.Drawing.Size(159, 19);
  2718. this.ultraTextEditor17.TabIndex = 442;
  2719. //
  2720. // ultraLabel7
  2721. //
  2722. this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
  2723. this.ultraLabel7.Location = new System.Drawing.Point(3, 33);
  2724. this.ultraLabel7.Name = "ultraLabel7";
  2725. this.ultraLabel7.Size = new System.Drawing.Size(89, 20);
  2726. this.ultraLabel7.TabIndex = 441;
  2727. this.ultraLabel7.Text = "物资代码";
  2728. //
  2729. // ultraTextEditor36
  2730. //
  2731. this.ultraTextEditor36.AutoSize = true;
  2732. this.ultraTextEditor36.Enabled = false;
  2733. this.ultraTextEditor36.FlatMode = true;
  2734. this.ultraTextEditor36.Location = new System.Drawing.Point(490, 3);
  2735. this.ultraTextEditor36.Multiline = true;
  2736. this.ultraTextEditor36.Name = "ultraTextEditor36";
  2737. this.ultraTextEditor36.Size = new System.Drawing.Size(357, 49);
  2738. this.ultraTextEditor36.TabIndex = 440;
  2739. this.ultraTextEditor36.Tag = "";
  2740. //
  2741. // ultraLabel8
  2742. //
  2743. this.ultraLabel8.BackColor = System.Drawing.Color.Transparent;
  2744. this.ultraLabel8.Location = new System.Drawing.Point(446, 6);
  2745. this.ultraLabel8.Name = "ultraLabel8";
  2746. this.ultraLabel8.Size = new System.Drawing.Size(89, 20);
  2747. this.ultraLabel8.TabIndex = 436;
  2748. this.ultraLabel8.Text = "备注";
  2749. //
  2750. // ultraComboEditor19
  2751. //
  2752. this.ultraComboEditor19.AutoSize = true;
  2753. valueListItem129.DataValue = "0";
  2754. valueListItem129.DisplayText = "非零库存";
  2755. valueListItem128.DataValue = valueListItem129;
  2756. valueListItem128.DisplayText = "非零库存";
  2757. valueListItem127.DataValue = valueListItem128;
  2758. valueListItem127.DisplayText = "非零库存";
  2759. valueListItem132.DataValue = "1";
  2760. valueListItem132.DisplayText = "零库存";
  2761. valueListItem131.DataValue = valueListItem132;
  2762. valueListItem131.DisplayText = "零库存";
  2763. valueListItem130.DataValue = valueListItem131;
  2764. valueListItem130.DisplayText = "零库存";
  2765. this.ultraComboEditor19.Items.Add(valueListItem127);
  2766. this.ultraComboEditor19.Items.Add(valueListItem130);
  2767. this.ultraComboEditor19.Location = new System.Drawing.Point(76, 3);
  2768. this.ultraComboEditor19.Name = "ultraComboEditor19";
  2769. this.ultraComboEditor19.Size = new System.Drawing.Size(159, 21);
  2770. this.ultraComboEditor19.TabIndex = 429;
  2771. //
  2772. // ultraLabel14
  2773. //
  2774. this.ultraLabel14.BackColor = System.Drawing.Color.Transparent;
  2775. this.ultraLabel14.Location = new System.Drawing.Point(3, 6);
  2776. this.ultraLabel14.Name = "ultraLabel14";
  2777. this.ultraLabel14.Size = new System.Drawing.Size(89, 20);
  2778. this.ultraLabel14.TabIndex = 428;
  2779. this.ultraLabel14.Text = "是否零库存";
  2780. //
  2781. // ultraLabel15
  2782. //
  2783. this.ultraLabel15.BackColor = System.Drawing.Color.Transparent;
  2784. this.ultraLabel15.Location = new System.Drawing.Point(869, 35);
  2785. this.ultraLabel15.Name = "ultraLabel15";
  2786. this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
  2787. this.ultraLabel15.TabIndex = 363;
  2788. this.ultraLabel15.Text = "仓库名称";
  2789. //
  2790. // ultraTextEditor37
  2791. //
  2792. this.ultraTextEditor37.AutoSize = true;
  2793. this.ultraTextEditor37.FlatMode = true;
  2794. this.ultraTextEditor37.Location = new System.Drawing.Point(926, 32);
  2795. this.ultraTextEditor37.Multiline = true;
  2796. this.ultraTextEditor37.Name = "ultraTextEditor37";
  2797. this.ultraTextEditor37.Size = new System.Drawing.Size(84, 19);
  2798. this.ultraTextEditor37.TabIndex = 362;
  2799. this.ultraTextEditor37.Tag = "";
  2800. //
  2801. // ultraLabel28
  2802. //
  2803. this.ultraLabel28.BackColor = System.Drawing.Color.Transparent;
  2804. this.ultraLabel28.Location = new System.Drawing.Point(869, 12);
  2805. this.ultraLabel28.Name = "ultraLabel28";
  2806. this.ultraLabel28.Size = new System.Drawing.Size(56, 16);
  2807. this.ultraLabel28.TabIndex = 361;
  2808. this.ultraLabel28.Text = "仓库代码";
  2809. //
  2810. // ultraTextEditor38
  2811. //
  2812. this.ultraTextEditor38.AutoSize = true;
  2813. this.ultraTextEditor38.Enabled = false;
  2814. this.ultraTextEditor38.FlatMode = true;
  2815. this.ultraTextEditor38.Location = new System.Drawing.Point(926, 9);
  2816. this.ultraTextEditor38.Name = "ultraTextEditor38";
  2817. this.ultraTextEditor38.Size = new System.Drawing.Size(84, 19);
  2818. this.ultraTextEditor38.TabIndex = 358;
  2819. this.ultraTextEditor38.Tag = "";
  2820. //
  2821. // ultraLabel30
  2822. //
  2823. this.ultraLabel30.BackColor = System.Drawing.Color.Transparent;
  2824. this.ultraLabel30.Location = new System.Drawing.Point(241, 6);
  2825. this.ultraLabel30.Name = "ultraLabel30";
  2826. this.ultraLabel30.Size = new System.Drawing.Size(56, 16);
  2827. this.ultraLabel30.TabIndex = 444;
  2828. this.ultraLabel30.Text = "规格型号";
  2829. //
  2830. // ultraTextEditor39
  2831. //
  2832. this.ultraTextEditor39.AutoSize = true;
  2833. this.ultraTextEditor39.Enabled = false;
  2834. this.ultraTextEditor39.FlatMode = true;
  2835. this.ultraTextEditor39.Location = new System.Drawing.Point(298, 3);
  2836. this.ultraTextEditor39.Name = "ultraTextEditor39";
  2837. this.ultraTextEditor39.Size = new System.Drawing.Size(128, 19);
  2838. this.ultraTextEditor39.TabIndex = 443;
  2839. this.ultraTextEditor39.Tag = "";
  2840. //
  2841. // ultraTextEditor40
  2842. //
  2843. this.ultraTextEditor40.AutoSize = true;
  2844. this.ultraTextEditor40.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2845. this.ultraTextEditor40.Enabled = false;
  2846. this.ultraTextEditor40.Location = new System.Drawing.Point(76, 32);
  2847. this.ultraTextEditor40.MaxLength = 18;
  2848. this.ultraTextEditor40.Name = "ultraTextEditor40";
  2849. this.ultraTextEditor40.Size = new System.Drawing.Size(159, 19);
  2850. this.ultraTextEditor40.TabIndex = 442;
  2851. //
  2852. // ultraLabel31
  2853. //
  2854. this.ultraLabel31.BackColor = System.Drawing.Color.Transparent;
  2855. this.ultraLabel31.Location = new System.Drawing.Point(3, 33);
  2856. this.ultraLabel31.Name = "ultraLabel31";
  2857. this.ultraLabel31.Size = new System.Drawing.Size(89, 20);
  2858. this.ultraLabel31.TabIndex = 441;
  2859. this.ultraLabel31.Text = "物资代码";
  2860. //
  2861. // ultraTextEditor41
  2862. //
  2863. this.ultraTextEditor41.AutoSize = true;
  2864. this.ultraTextEditor41.Enabled = false;
  2865. this.ultraTextEditor41.FlatMode = true;
  2866. this.ultraTextEditor41.Location = new System.Drawing.Point(490, 3);
  2867. this.ultraTextEditor41.Multiline = true;
  2868. this.ultraTextEditor41.Name = "ultraTextEditor41";
  2869. this.ultraTextEditor41.Size = new System.Drawing.Size(357, 49);
  2870. this.ultraTextEditor41.TabIndex = 440;
  2871. this.ultraTextEditor41.Tag = "";
  2872. //
  2873. // ultraLabel32
  2874. //
  2875. this.ultraLabel32.BackColor = System.Drawing.Color.Transparent;
  2876. this.ultraLabel32.Location = new System.Drawing.Point(446, 6);
  2877. this.ultraLabel32.Name = "ultraLabel32";
  2878. this.ultraLabel32.Size = new System.Drawing.Size(89, 20);
  2879. this.ultraLabel32.TabIndex = 436;
  2880. this.ultraLabel32.Text = "备注";
  2881. //
  2882. // ultraComboEditor20
  2883. //
  2884. this.ultraComboEditor20.AutoSize = true;
  2885. valueListItem135.DataValue = "0";
  2886. valueListItem135.DisplayText = "非零库存";
  2887. valueListItem134.DataValue = valueListItem135;
  2888. valueListItem134.DisplayText = "非零库存";
  2889. valueListItem133.DataValue = valueListItem134;
  2890. valueListItem133.DisplayText = "非零库存";
  2891. valueListItem138.DataValue = "1";
  2892. valueListItem138.DisplayText = "零库存";
  2893. valueListItem137.DataValue = valueListItem138;
  2894. valueListItem137.DisplayText = "零库存";
  2895. valueListItem136.DataValue = valueListItem137;
  2896. valueListItem136.DisplayText = "零库存";
  2897. this.ultraComboEditor20.Items.Add(valueListItem133);
  2898. this.ultraComboEditor20.Items.Add(valueListItem136);
  2899. this.ultraComboEditor20.Location = new System.Drawing.Point(76, 3);
  2900. this.ultraComboEditor20.Name = "ultraComboEditor20";
  2901. this.ultraComboEditor20.Size = new System.Drawing.Size(159, 21);
  2902. this.ultraComboEditor20.TabIndex = 429;
  2903. //
  2904. // ultraLabel33
  2905. //
  2906. this.ultraLabel33.BackColor = System.Drawing.Color.Transparent;
  2907. this.ultraLabel33.Location = new System.Drawing.Point(3, 6);
  2908. this.ultraLabel33.Name = "ultraLabel33";
  2909. this.ultraLabel33.Size = new System.Drawing.Size(89, 20);
  2910. this.ultraLabel33.TabIndex = 428;
  2911. this.ultraLabel33.Text = "是否零库存";
  2912. //
  2913. // ultraLabel34
  2914. //
  2915. this.ultraLabel34.BackColor = System.Drawing.Color.Transparent;
  2916. this.ultraLabel34.Location = new System.Drawing.Point(869, 35);
  2917. this.ultraLabel34.Name = "ultraLabel34";
  2918. this.ultraLabel34.Size = new System.Drawing.Size(56, 16);
  2919. this.ultraLabel34.TabIndex = 363;
  2920. this.ultraLabel34.Text = "仓库名称";
  2921. //
  2922. // ultraTextEditor42
  2923. //
  2924. this.ultraTextEditor42.AutoSize = true;
  2925. this.ultraTextEditor42.FlatMode = true;
  2926. this.ultraTextEditor42.Location = new System.Drawing.Point(926, 32);
  2927. this.ultraTextEditor42.Multiline = true;
  2928. this.ultraTextEditor42.Name = "ultraTextEditor42";
  2929. this.ultraTextEditor42.Size = new System.Drawing.Size(84, 19);
  2930. this.ultraTextEditor42.TabIndex = 362;
  2931. this.ultraTextEditor42.Tag = "";
  2932. //
  2933. // ultraLabel35
  2934. //
  2935. this.ultraLabel35.BackColor = System.Drawing.Color.Transparent;
  2936. this.ultraLabel35.Location = new System.Drawing.Point(869, 12);
  2937. this.ultraLabel35.Name = "ultraLabel35";
  2938. this.ultraLabel35.Size = new System.Drawing.Size(56, 16);
  2939. this.ultraLabel35.TabIndex = 361;
  2940. this.ultraLabel35.Text = "仓库代码";
  2941. //
  2942. // ultraTextEditor43
  2943. //
  2944. this.ultraTextEditor43.AutoSize = true;
  2945. this.ultraTextEditor43.Enabled = false;
  2946. this.ultraTextEditor43.FlatMode = true;
  2947. this.ultraTextEditor43.Location = new System.Drawing.Point(926, 9);
  2948. this.ultraTextEditor43.Name = "ultraTextEditor43";
  2949. this.ultraTextEditor43.Size = new System.Drawing.Size(84, 19);
  2950. this.ultraTextEditor43.TabIndex = 358;
  2951. this.ultraTextEditor43.Tag = "";
  2952. //
  2953. // FrmMidStorsNew
  2954. //
  2955. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  2956. this.ClientSize = new System.Drawing.Size(1498, 564);
  2957. this.Controls.Add(this.panel2);
  2958. this.Controls.Add(this.ultraExpandableGroupBox1);
  2959. this.Controls.Add(this.ultraGroupBox1);
  2960. this.Controls.Add(this.panel1);
  2961. this.Name = "FrmMidStorsNew";
  2962. this.Text = "仓库初始管理";
  2963. this.Load += new System.EventHandler(this.FrmStors_Load);
  2964. ((System.ComponentModel.ISupportInitialize)(this.cmb_GF)).EndInit();
  2965. ((System.ComponentModel.ISupportInitialize)(this.cmb_LKC)).EndInit();
  2966. this.panel1.ResumeLayout(false);
  2967. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2968. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2969. this.ultraGroupBox1.ResumeLayout(false);
  2970. ((System.ComponentModel.ISupportInitialize)(this.txt_Spet)).EndInit();
  2971. ((System.ComponentModel.ISupportInitialize)(this.txt_wz)).EndInit();
  2972. ((System.ComponentModel.ISupportInitialize)(this.txt_wzdm)).EndInit();
  2973. ((System.ComponentModel.ISupportInitialize)(this.Cmb_CKLB)).EndInit();
  2974. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
  2975. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
  2976. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2977. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2978. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2979. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor45)).EndInit();
  2980. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
  2981. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor44)).EndInit();
  2982. ((System.ComponentModel.ISupportInitialize)(this.cmb_LB)).EndInit();
  2983. ((System.ComponentModel.ISupportInitialize)(this.cmb_WZ)).EndInit();
  2984. ((System.ComponentModel.ISupportInitialize)(this.txt_Price)).EndInit();
  2985. ((System.ComponentModel.ISupportInitialize)(this.txt_JLDW)).EndInit();
  2986. ((System.ComponentModel.ISupportInitialize)(this.txt_Spec)).EndInit();
  2987. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
  2988. ((System.ComponentModel.ISupportInitialize)(this.txt_CSZ)).EndInit();
  2989. this.panel2.ResumeLayout(false);
  2990. ((System.ComponentModel.ISupportInitialize)(this.gd_Stock)).EndInit();
  2991. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2992. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  2993. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  2994. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  2995. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  2996. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  2997. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  2998. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  2999. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  3000. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  3001. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  3002. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  3003. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  3004. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  3005. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  3006. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  3007. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  3008. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
  3009. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
  3010. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
  3011. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
  3012. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
  3013. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
  3014. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
  3015. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
  3016. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
  3017. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
  3018. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
  3019. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
  3020. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
  3021. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  3022. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
  3023. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
  3024. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
  3025. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
  3026. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
  3027. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
  3028. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
  3029. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
  3030. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
  3031. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).EndInit();
  3032. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).EndInit();
  3033. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).EndInit();
  3034. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).EndInit();
  3035. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).EndInit();
  3036. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).EndInit();
  3037. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).EndInit();
  3038. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).EndInit();
  3039. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).EndInit();
  3040. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).EndInit();
  3041. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).EndInit();
  3042. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).EndInit();
  3043. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor17)).EndInit();
  3044. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor36)).EndInit();
  3045. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor19)).EndInit();
  3046. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor37)).EndInit();
  3047. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor38)).EndInit();
  3048. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor39)).EndInit();
  3049. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor40)).EndInit();
  3050. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor41)).EndInit();
  3051. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor20)).EndInit();
  3052. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor42)).EndInit();
  3053. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor43)).EndInit();
  3054. this.ResumeLayout(false);
  3055. }
  3056. #endregion
  3057. private void Init()
  3058. {
  3059. try
  3060. {
  3061. string strOut = "";
  3062. string sql = "";
  3063. DataSet ds;
  3064. //供方
  3065. sql = "SELECT PROVIDER_CODE ID_,PROVIDER_NAME NAME_ FROM PROVIDER_MANAGER ";
  3066. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3067. ds.Tables[0].TableName = "PROVIDER_MANAGER";
  3068. Comm.Init_ComboControl(this.cmb_GF, "PROVIDER_MANAGER", "NAME_", "ID_", ref ds);
  3069. //物资
  3070. sql = "SELECT MATERIAL_CODE ,MATERIAL_NAME ,SPEC FROM MATERIAL_CODE_MANAGE order by SORT_CODE ";
  3071. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3072. ds.Tables[0].TableName = "MATERIAL_CODE_MANAGE";
  3073. cmb_WZ.DataSource = (DataSet)ds;
  3074. cmb_WZ.DisplayMember = "MATERIAL_CODE";
  3075. cmb_WZ.SelectedRow = null;
  3076. //仓库类别
  3077. sql = "SELECT DEPOTID ID_,DEPOT_LB NAME_ FROM KCJ_DEPOTMAGAGER ";
  3078. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3079. ds.Tables[0].TableName = "KCJ_DEPOTMAGAGER";
  3080. FillComboEditor(ref Cmb_CKLB, ds);
  3081. FillComboEditor(ref cmb_LB, ds);
  3082. //物资类别
  3083. sql = "SELECT material__lb_code ,material__lb_name FROM MATERIA_LBL_CODE_MANAGE ";
  3084. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3085. ds.Tables[0].TableName = "MATERIA_LBL_CODE_MANAGE";
  3086. ultraCombo1.DataSource = (DataSet)ds;
  3087. ultraCombo1.DisplayMember = "material__lb_code";
  3088. ultraCombo1.SelectedRow = null;
  3089. }
  3090. catch(Exception ex)
  3091. {
  3092. }
  3093. }
  3094. public static bool FillComboEditor(ref UltraComboEditor ulComboEditor, DataSet dset)
  3095. {
  3096. if (dset == null) return false;
  3097. if (dset.Tables.Count < 1) return false;
  3098. if (dset.Tables[0].Columns.Count < 2) return false;
  3099. ulComboEditor.Items.Clear();
  3100. for (int i = 0; i < dset.Tables[0].Rows.Count; i++)
  3101. ulComboEditor.Items.Add(dset.Tables[0].Rows[i][0].ToString(), dset.Tables[0].Rows[i][1].ToString());
  3102. return true;
  3103. }
  3104. private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
  3105. {
  3106. if (this.chk_AllowFilter.Checked)
  3107. {
  3108. this.gd_Stock.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3109. }
  3110. else
  3111. {
  3112. this.gd_Stock.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  3113. }
  3114. }
  3115. private void DoQuery(bool iFlag)
  3116. {
  3117. string where = "";
  3118. string sql = "";
  3119. string err = "";
  3120. DataSet ds = new DataSet();
  3121. ds.Clear();
  3122. if (iFlag == false)
  3123. {
  3124. /*if (chk_Time.Checked == false && Chk_CKLB.Checked == false)
  3125. {
  3126. MessageBox.Show("请选择条件进行查询!!!!");
  3127. return;
  3128. }*/
  3129. if (this.chk_Time.Checked)
  3130. {
  3131. where += " AND TO_CHAR(aa.STOCK_TIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  3132. + " AND TO_CHAR(aa.STOCK_TIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  3133. }
  3134. }
  3135. else
  3136. {
  3137. where += " AND TO_CHAR(aa.STOCK_TIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  3138. + " AND TO_CHAR(aa.STOCK_TIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  3139. }
  3140. if (this.Chk_CKLB.Checked && this.Cmb_CKLB.Text.Trim().Length > 0)
  3141. {
  3142. where += " AND AA.STOCK_CODE LIKE '%" + this.Cmb_CKLB.Text.ToString().Trim().ToString() + "%'";
  3143. }
  3144. if (this.Chk_wzdm.Checked && this.txt_wzdm.Text.Trim().Length > 0)
  3145. {
  3146. where += " AND AA.MATERIALCODE LIKE '%" + this.txt_wzdm.Text.ToString().Trim().ToString() + "%'";
  3147. }
  3148. if (this.chk_wz.Checked && this.txt_wz.Text.Trim().Length > 0)
  3149. {
  3150. where += " AND BB.MATERIAL_NAME LIKE '%" + this.txt_wz.Text.ToString().Trim().ToString() + "%'";
  3151. }
  3152. if (this.chk_Spet.Checked && this.txt_Spet.Text.Trim().Length > 0)
  3153. {
  3154. where += " AND AA.SPEC LIKE '%" + this.txt_Spet.Text.ToString().Trim().ToString() + "%'";
  3155. }
  3156. //中间库库存信息
  3157. sql = "SELECT DECODE(AA.IS_ZEROSTOCK,'0','','1','是')IS_ZEROSTOCK,AA.MATERIALCODE,BB.MATERIAL_NAME,BB.MATERIAL_LB_NAME,BB.MATERIAL_LB,AA.SPEC,AA.UNITS,AA.PLAN_PRICE,AA.PROVIDER,AA.STOCK_INITIAL,AA.REMARK,AA.RECODER,TO_CHAR(AA.STOCK_TIME,'YYYY-MM-DD HH24:MI:SS')STOCK_TIME,AA.STOCK_CODE,'中间库' STOCK_NAME,AA.plan_price CURRENT_PRICE "
  3158. + " FROM kcj_midstoresmagnager AA,MATERIAL_CODE_MANAGE1 BB "
  3159. + " WHERE AA.MATERIALCODE=BB.MATERIAL_CODE(+) " + where ;
  3160. ;
  3161. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out err);
  3162. if (err == "")
  3163. {
  3164. gd_Stock.DataSource = ds;
  3165. }
  3166. }
  3167. private void Export()
  3168. {
  3169. if (this.gd_Stock.Rows.Count > 0)
  3170. {
  3171. Comm.ExPortExcel(this.gd_Stock, this.excelExporter);
  3172. }
  3173. else
  3174. {
  3175. MessageBox.Show("无库存信息数据,不能导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  3176. }
  3177. }
  3178. private void Add(string strMode)
  3179. {
  3180. try
  3181. {
  3182. string strerr = "";
  3183. System.Collections.ArrayList MetarilInfo = new ArrayList();
  3184. if (strMode == "UPDATE")
  3185. {
  3186. if (cmb_WZ.Value.ToString().Trim().ToString() == "")
  3187. {
  3188. MessageBox.Show("物资代码不能为空");
  3189. return;
  3190. }
  3191. }
  3192. MetarilInfo.Add(Comm.ObjToStr(this.cmb_LKC.Value.ToString().Trim().ToString()));//1是否零库存
  3193. MetarilInfo.Add(Comm.ObjToStr(this.cmb_WZ.Value.ToString().Trim()));//2 物资代码
  3194. MetarilInfo.Add(Comm.ObjToStr(this.txt_Spec.Text.ToString().Trim()));//3 规格
  3195. MetarilInfo.Add(Comm.ObjToStr(this.txt_JLDW.Text.Trim().ToString()));//4 计量单位
  3196. MetarilInfo.Add(Comm.ObjToStr(this.txt_Price.Text.Trim().ToString()));//5 计划价格
  3197. if (this.cmb_GF.Value == null)
  3198. {
  3199. MetarilInfo.Add("");//6 供方
  3200. }
  3201. else
  3202. {
  3203. MetarilInfo.Add(Comm.ObjToStr(this.cmb_GF.Value.ToString().Trim()));//6 供方
  3204. }
  3205. MetarilInfo.Add(Comm.ObjToStr(this.txt_CSZ.Text.Trim().ToString()));//7 仓库初始值
  3206. MetarilInfo.Add(Comm.ObjToStr(this.txt_Remark.Text.Trim().ToString()));//8 备注
  3207. MetarilInfo.Add(ClientCommon._UserInfo.UserName.ToString());//9 操作人
  3208. MetarilInfo.Add(strMode);//10 操作模式
  3209. MetarilInfo.Add(Comm.ObjToStr(this.cmb_LB.Text.ToString().Trim()));//11 仓库类别
  3210. MetarilInfo.Add(Comm.ObjToStr(this.ultraCombo1.Text.ToString().Trim()));//12 大类代码
  3211. MetarilInfo.Add(Comm.ObjToStr(this.ultraTextEditor44.Text.ToString().Trim()));
  3212. MetarilInfo.Add(Comm.ObjToStr(this.ultraTextEditor45.Text.ToString().Trim()));//物资名称
  3213. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWWLStuff", "Core.XgMes.Server.JGKC.MaterialManager.Metarial",
  3214. "StockAddNew", new object[] { MetarilInfo }, out strerr);
  3215. if (obj != null && obj.ToString() == "1")
  3216. {
  3217. MessageBox.Show("新增成功", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  3218. DoQuery(true);
  3219. }
  3220. else
  3221. {
  3222. MessageBox.Show(strerr, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  3223. }
  3224. }
  3225. catch (Exception ex)
  3226. {
  3227. }
  3228. }
  3229. private void FrmStors_Load(object sender, System.EventArgs e)
  3230. {
  3231. dte_BeginTime.Value = DateTime.Now;
  3232. dte_EndTime.Value = DateTime.Now;
  3233. Init();
  3234. }
  3235. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  3236. {
  3237. switch (e.Tool.Key)
  3238. {
  3239. case "Add":
  3240. Add("ADD");
  3241. break;
  3242. case "UPDATE":
  3243. Add("UPDATE");
  3244. break;
  3245. case "Del":
  3246. Add("Del");
  3247. break;
  3248. case "Query":
  3249. DoQuery(false);
  3250. break;
  3251. case "Export":
  3252. Export();
  3253. break;
  3254. case "Close":
  3255. this.Close();
  3256. break;
  3257. }
  3258. }
  3259. private void txt_Spec_Enter(object sender, EventArgs e)
  3260. {
  3261. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraTextEditor")
  3262. {
  3263. ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
  3264. }
  3265. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraNumericEditor")
  3266. {
  3267. ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
  3268. }
  3269. }
  3270. private void txt_Spec_KeyDown(object sender, KeyEventArgs e)
  3271. {
  3272. try
  3273. {
  3274. if (e.KeyData == System.Windows.Forms.Keys.Return)
  3275. {
  3276. if (((System.Windows.Forms.Control)sender).Name == "cmb_LKC")
  3277. {
  3278. cmb_WZ.Focus();
  3279. cmb_WZ.Select();
  3280. }
  3281. if (((System.Windows.Forms.Control)sender).Name == "cmb_WZ")
  3282. {
  3283. txt_Spec.Focus();
  3284. txt_Spec.SelectAll();
  3285. }
  3286. if (((System.Windows.Forms.Control)sender).Name == "txt_Price")
  3287. {
  3288. cmb_GF.Focus();
  3289. cmb_GF.Select();
  3290. }
  3291. if (((System.Windows.Forms.Control)sender).Name == "cmb_GF")
  3292. {
  3293. txt_CSZ.Focus();
  3294. txt_CSZ.SelectAll();
  3295. }
  3296. if (((System.Windows.Forms.Control)sender).Name == "txt_CSZ")
  3297. {
  3298. cmb_LB.Focus();
  3299. cmb_LB.Select();
  3300. }
  3301. if (((System.Windows.Forms.Control)sender).Name == "cmb_LB")
  3302. {
  3303. txt_Remark.Focus();
  3304. txt_Remark.SelectAll();
  3305. }
  3306. if (((System.Windows.Forms.Control)sender).Name == "txt_Remark")
  3307. {
  3308. System.Windows.Forms.DialogResult result = DialogResult.No;
  3309. result = MessageBox.Show("是否新增?", "提示信息", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
  3310. if (result == DialogResult.Yes)
  3311. {
  3312. this.Add("ADD");
  3313. }
  3314. else
  3315. {
  3316. this.Add("UPDATE");
  3317. }
  3318. this.cmb_LKC.Focus();
  3319. this.cmb_LKC.SelectAll();
  3320. return;
  3321. }
  3322. //System.Windows.Forms.SendKeys.Send("{TAB}");
  3323. }
  3324. }
  3325. catch (Exception ex)
  3326. {
  3327. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3328. }
  3329. }
  3330. private void Chk_CKLB_CheckedChanged(object sender, EventArgs e)
  3331. {
  3332. Cmb_CKLB.Enabled = Chk_CKLB.Checked;
  3333. }
  3334. private void gd_Stock_AfterRowActivate(object sender, EventArgs e)
  3335. {
  3336. try
  3337. {
  3338. if (this.gd_Stock.Rows.Count > 0)
  3339. {
  3340. this.cmb_WZ.Value = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["MATERIALCODE"].Value);//物资代码
  3341. //this.cmb_GF.Value = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["PROVIDER"].Value);//供方
  3342. txt_Spec.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["SPEC"].Value);//规格型号
  3343. txt_JLDW.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["UNITS"].Value);//计量单位
  3344. txt_Price.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["PLAN_PRICE"].Value);//计划价
  3345. txt_CSZ.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["STOCK_INITIAL"].Value);//仓库初始值
  3346. txt_Remark.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["REMARK"].Value);//备注
  3347. this.cmb_LB.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["STOCK_CODE"].Text);//仓库类别
  3348. this.ultraTextEditor45.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["MATERIAL_NAME"].Value);//物资名称
  3349. ultraCombo1.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["MATERIAL_LB"].Value);
  3350. ultraTextEditor44.Text = Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["MATERIAL_LB_NAME"].Value);
  3351. if (Comm.ObjToStr(this.gd_Stock.ActiveRow.Cells["IS_ZEROSTOCK"].Value) == "是")//是否零库存
  3352. {
  3353. cmb_LKC.Value = "1";
  3354. }
  3355. else
  3356. {
  3357. cmb_LKC.Value = "0";
  3358. }
  3359. }
  3360. }
  3361. catch (Exception ex)
  3362. {
  3363. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3364. }
  3365. }
  3366. private void cmb_WZ_ValueChanged(object sender, EventArgs e)
  3367. {
  3368. try
  3369. {
  3370. if (cmb_WZ.Value.ToString() != "")
  3371. {
  3372. string strOut = "";
  3373. string sql = "";
  3374. DataSet ds;
  3375. sql = "SELECT SPEC,UNITS,PLAN_PRICE,material_name FROM MATERIAL_CODE_MANAGE WHERE MATERIAL_CODE='" + cmb_WZ.Value.ToString().Trim() + "' ";
  3376. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3377. if (ds != null)
  3378. {
  3379. txt_Spec.Text = ds.Tables[0].Rows[0]["SPEC"].ToString();
  3380. txt_JLDW.Text = ds.Tables[0].Rows[0]["UNITS"].ToString();
  3381. txt_Price.Text = ds.Tables[0].Rows[0]["PLAN_PRICE"].ToString();
  3382. ultraTextEditor45.Text = ds.Tables[0].Rows[0]["material_name"].ToString();
  3383. }
  3384. }
  3385. }
  3386. catch (Exception ex)
  3387. {
  3388. throw ex;
  3389. }
  3390. }
  3391. private void chk_Time_CheckedChanged(object sender, EventArgs e)
  3392. {
  3393. dte_BeginTime.Enabled = dte_EndTime.Enabled = chk_Time.Checked;
  3394. }
  3395. private void Chk_wzdm_CheckedChanged(object sender, EventArgs e)
  3396. {
  3397. this.txt_wzdm.Enabled = Chk_wzdm.Checked;
  3398. }
  3399. private void chk_wz_CheckedChanged(object sender, EventArgs e)
  3400. {
  3401. txt_wz.Enabled=chk_wz.Checked ;
  3402. }
  3403. private void chk_Spet_CheckedChanged(object sender, EventArgs e)
  3404. {
  3405. txt_Spet.Enabled=chk_Spet.Checked ;
  3406. }
  3407. private void gd_Stock_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e)
  3408. {
  3409. if (e.Row.Cells["STOCK_INITIAL"].Value.ToString() != "")
  3410. {
  3411. if (Convert.ToDecimal(e.Row.Cells["STOCK_INITIAL"].Value.ToString()) < 5)
  3412. {
  3413. e.Row.Cells["STOCK_INITIAL"].Appearance.BackColor = Color.Red;
  3414. }
  3415. }
  3416. }
  3417. private void ultraCombo1_ValueChanged(object sender, EventArgs e)
  3418. {
  3419. try
  3420. {
  3421. if (ultraCombo1.Value.ToString() != "")
  3422. {
  3423. string strOut = "";
  3424. string sql = "";
  3425. DataSet ds;
  3426. sql = "SELECT MATERIAL__LB_CODE,MATERIAL__LB_NAME FROM MATERIA_LBL_CODE_MANAGE WHERE MATERIAL__LB_CODE='" + ultraCombo1.Value.ToString().Trim() + "' ";
  3427. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
  3428. if (ds != null)
  3429. {
  3430. ultraCombo1.Text = ds.Tables[0].Rows[0]["MATERIAL__LB_CODE"].ToString();
  3431. ultraTextEditor44.Text = ds.Tables[0].Rows[0]["MATERIAL__LB_NAME"].ToString();
  3432. //txt_Price.Text = ds.Tables[0].Rows[0]["PLAN_PRICE"].ToString();
  3433. }
  3434. }
  3435. }
  3436. catch (Exception ex)
  3437. {
  3438. throw ex;
  3439. }
  3440. }
  3441. }
  3442. }