FrmStors.cs 184 KB

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