FrmPopOrderModeNew.Designer.cs 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751
  1. namespace Pur.Pop_upWindow
  2. {
  3. partial class FrmPopOrderModeNew
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeDesc");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeVer");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderType");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECK", 0);
  41. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  43. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  44. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  45. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  47. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  51. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  53. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderVer");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderType");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderMoneyType");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderTitleCode");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PorderId");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppOrdeId");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ImportOrdeId");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Currency");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ExchangeRateCur");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMin");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AmtMax");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt1");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt2");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt3");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt4");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrePaymentAmt5");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt1");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt2");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt3");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt4");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AftPaymentAmt5");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GuaAmt");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("StartDate");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignAddress");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SignDate");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PrintNum");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Status");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("taskRecordId");
  105. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  117. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  118. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  119. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  120. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  121. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderLineSqe");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReviewLineSqe");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaskLineId");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemCode");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDesc");
  128. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemName");
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemModel");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemSpec");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Qty");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUseUom");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUom");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUomConefficient");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CkQty");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeTpe");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMin");
  140. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DelvryRangeMax");
  141. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MeteringFlag");
  142. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BatchFlag");
  143. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PcFlag");
  144. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveType");
  145. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandards");
  146. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurStandardsCode");
  147. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BasePriceNo");
  148. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ChemPriceNo");
  149. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GradePriceNo");
  150. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QuantityPriceNum");
  151. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OtherPriceNum");
  152. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithoutTax");
  153. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithTax");
  154. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxAmt");
  155. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithoutTaxAmt");
  156. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WithAmtTax");
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppCode");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SuppName");
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocationCode");
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeliveryLocation");
  161. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedQty");
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceivedAmt");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedQty");
  164. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderedAmt");
  165. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedQty");
  166. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("InvoicedAmt");
  167. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
  168. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysEarly");
  169. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DaysLate");
  170. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerName");
  171. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  172. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  173. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  174. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  175. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  176. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  177. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  178. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  179. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  180. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  181. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  182. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PurLineId");
  183. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmID");
  184. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmName");
  185. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BcmVersionNo");
  186. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttr");
  187. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttrId");
  188. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
  189. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
  190. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
  191. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSCODE");
  192. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
  193. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("taxRateName");
  194. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("offerType");
  195. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("resPricePackage");
  196. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("resPriceFreight");
  197. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  198. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  199. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  200. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  201. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  202. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  203. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  204. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  206. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  209. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  210. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  212. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeId");
  213. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn138 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ModeName");
  214. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn139 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseId");
  215. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn140 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseName");
  216. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn141 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDesc");
  217. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn142 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndx");
  218. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn143 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseType");
  219. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn144 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDefault");
  221. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn145 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  222. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn146 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  223. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn147 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateName");
  224. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn148 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UpdateTime");
  225. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn149 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteName");
  226. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn150 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DeleteTime");
  227. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn151 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  228. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn152 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndxIn");
  229. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  230. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  231. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  232. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  233. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  234. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  235. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  236. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  237. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  238. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  239. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  240. Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("ribbon1");
  241. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup1");
  242. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup2");
  243. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  244. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  245. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  246. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
  247. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  248. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
  249. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  250. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  251. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
  252. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  253. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  254. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  255. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
  256. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("确认");
  257. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  258. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  259. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  260. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  261. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
  262. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  263. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPopOrderModeNew));
  264. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  265. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  266. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  267. this.dataSet1 = new System.Data.DataSet();
  268. this.dataTable1 = new System.Data.DataTable();
  269. this.dataColumn1 = new System.Data.DataColumn();
  270. this.dataColumn2 = new System.Data.DataColumn();
  271. this.dataColumn3 = new System.Data.DataColumn();
  272. this.dataColumn4 = new System.Data.DataColumn();
  273. this.dataColumn5 = new System.Data.DataColumn();
  274. this.dataColumn9 = new System.Data.DataColumn();
  275. this.dataColumn10 = new System.Data.DataColumn();
  276. this.dataColumn11 = new System.Data.DataColumn();
  277. this.dataColumn12 = new System.Data.DataColumn();
  278. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  279. this.cop_orderType = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  280. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  281. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  282. this.txt_CopModeId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  283. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  284. this.txt_CopModeName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  285. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  286. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  287. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  288. this.dataSet3 = new System.Data.DataSet();
  289. this.dataTable3 = new System.Data.DataTable();
  290. this.dataColumn7 = new System.Data.DataColumn();
  291. this.dataColumn8 = new System.Data.DataColumn();
  292. this.dataColumn13 = new System.Data.DataColumn();
  293. this.dataColumn14 = new System.Data.DataColumn();
  294. this.dataColumn30 = new System.Data.DataColumn();
  295. this.dataColumn31 = new System.Data.DataColumn();
  296. this.dataColumn32 = new System.Data.DataColumn();
  297. this.dataColumn33 = new System.Data.DataColumn();
  298. this.dataColumn34 = new System.Data.DataColumn();
  299. this.dataColumn35 = new System.Data.DataColumn();
  300. this.dataColumn36 = new System.Data.DataColumn();
  301. this.dataColumn37 = new System.Data.DataColumn();
  302. this.dataColumn38 = new System.Data.DataColumn();
  303. this.dataColumn39 = new System.Data.DataColumn();
  304. this.dataColumn40 = new System.Data.DataColumn();
  305. this.dataColumn41 = new System.Data.DataColumn();
  306. this.dataColumn42 = new System.Data.DataColumn();
  307. this.dataColumn43 = new System.Data.DataColumn();
  308. this.dataColumn44 = new System.Data.DataColumn();
  309. this.dataColumn45 = new System.Data.DataColumn();
  310. this.dataColumn46 = new System.Data.DataColumn();
  311. this.dataColumn47 = new System.Data.DataColumn();
  312. this.dataColumn48 = new System.Data.DataColumn();
  313. this.dataColumn49 = new System.Data.DataColumn();
  314. this.dataColumn50 = new System.Data.DataColumn();
  315. this.dataColumn51 = new System.Data.DataColumn();
  316. this.dataColumn52 = new System.Data.DataColumn();
  317. this.dataColumn53 = new System.Data.DataColumn();
  318. this.dataColumn54 = new System.Data.DataColumn();
  319. this.dataColumn55 = new System.Data.DataColumn();
  320. this.dataColumn56 = new System.Data.DataColumn();
  321. this.dataColumn57 = new System.Data.DataColumn();
  322. this.dataColumn58 = new System.Data.DataColumn();
  323. this.dataColumn59 = new System.Data.DataColumn();
  324. this.dataColumn60 = new System.Data.DataColumn();
  325. this.dataColumn61 = new System.Data.DataColumn();
  326. this.dataColumn62 = new System.Data.DataColumn();
  327. this.dataColumn63 = new System.Data.DataColumn();
  328. this.dataColumn64 = new System.Data.DataColumn();
  329. this.dataColumn65 = new System.Data.DataColumn();
  330. this.dataColumn66 = new System.Data.DataColumn();
  331. this.dataColumn67 = new System.Data.DataColumn();
  332. this.dataColumn68 = new System.Data.DataColumn();
  333. this.dataColumn69 = new System.Data.DataColumn();
  334. this.dataColumn70 = new System.Data.DataColumn();
  335. this.dataColumn71 = new System.Data.DataColumn();
  336. this.dataColumn72 = new System.Data.DataColumn();
  337. this.dataColumn73 = new System.Data.DataColumn();
  338. this.dataColumn74 = new System.Data.DataColumn();
  339. this.dataColumn127 = new System.Data.DataColumn();
  340. this.dataColumn158 = new System.Data.DataColumn();
  341. this.dataTable4 = new System.Data.DataTable();
  342. this.dataColumn75 = new System.Data.DataColumn();
  343. this.dataColumn76 = new System.Data.DataColumn();
  344. this.dataColumn77 = new System.Data.DataColumn();
  345. this.dataColumn78 = new System.Data.DataColumn();
  346. this.dataColumn79 = new System.Data.DataColumn();
  347. this.dataColumn80 = new System.Data.DataColumn();
  348. this.dataColumn81 = new System.Data.DataColumn();
  349. this.dataColumn82 = new System.Data.DataColumn();
  350. this.dataColumn83 = new System.Data.DataColumn();
  351. this.dataColumn84 = new System.Data.DataColumn();
  352. this.dataColumn85 = new System.Data.DataColumn();
  353. this.dataColumn86 = new System.Data.DataColumn();
  354. this.dataColumn87 = new System.Data.DataColumn();
  355. this.dataColumn88 = new System.Data.DataColumn();
  356. this.dataColumn89 = new System.Data.DataColumn();
  357. this.dataColumn90 = new System.Data.DataColumn();
  358. this.dataColumn91 = new System.Data.DataColumn();
  359. this.dataColumn92 = new System.Data.DataColumn();
  360. this.dataColumn93 = new System.Data.DataColumn();
  361. this.dataColumn94 = new System.Data.DataColumn();
  362. this.dataColumn95 = new System.Data.DataColumn();
  363. this.dataColumn96 = new System.Data.DataColumn();
  364. this.dataColumn97 = new System.Data.DataColumn();
  365. this.dataColumn98 = new System.Data.DataColumn();
  366. this.dataColumn99 = new System.Data.DataColumn();
  367. this.dataColumn100 = new System.Data.DataColumn();
  368. this.dataColumn101 = new System.Data.DataColumn();
  369. this.dataColumn102 = new System.Data.DataColumn();
  370. this.dataColumn103 = new System.Data.DataColumn();
  371. this.dataColumn104 = new System.Data.DataColumn();
  372. this.dataColumn105 = new System.Data.DataColumn();
  373. this.dataColumn106 = new System.Data.DataColumn();
  374. this.dataColumn107 = new System.Data.DataColumn();
  375. this.dataColumn108 = new System.Data.DataColumn();
  376. this.dataColumn109 = new System.Data.DataColumn();
  377. this.dataColumn110 = new System.Data.DataColumn();
  378. this.dataColumn111 = new System.Data.DataColumn();
  379. this.dataColumn112 = new System.Data.DataColumn();
  380. this.dataColumn113 = new System.Data.DataColumn();
  381. this.dataColumn114 = new System.Data.DataColumn();
  382. this.dataColumn115 = new System.Data.DataColumn();
  383. this.dataColumn116 = new System.Data.DataColumn();
  384. this.dataColumn117 = new System.Data.DataColumn();
  385. this.dataColumn118 = new System.Data.DataColumn();
  386. this.dataColumn119 = new System.Data.DataColumn();
  387. this.dataColumn120 = new System.Data.DataColumn();
  388. this.dataColumn121 = new System.Data.DataColumn();
  389. this.dataColumn122 = new System.Data.DataColumn();
  390. this.dataColumn123 = new System.Data.DataColumn();
  391. this.dataColumn124 = new System.Data.DataColumn();
  392. this.dataColumn125 = new System.Data.DataColumn();
  393. this.dataColumn126 = new System.Data.DataColumn();
  394. this.dataColumn128 = new System.Data.DataColumn();
  395. this.dataColumn129 = new System.Data.DataColumn();
  396. this.dataColumn130 = new System.Data.DataColumn();
  397. this.dataColumn131 = new System.Data.DataColumn();
  398. this.dataColumn132 = new System.Data.DataColumn();
  399. this.dataColumn133 = new System.Data.DataColumn();
  400. this.dataColumn134 = new System.Data.DataColumn();
  401. this.dataColumn135 = new System.Data.DataColumn();
  402. this.dataColumn136 = new System.Data.DataColumn();
  403. this.dataColumn137 = new System.Data.DataColumn();
  404. this.dataColumn138 = new System.Data.DataColumn();
  405. this.dataColumn139 = new System.Data.DataColumn();
  406. this.dataColumn140 = new System.Data.DataColumn();
  407. this.dataColumn141 = new System.Data.DataColumn();
  408. this.dataColumn142 = new System.Data.DataColumn();
  409. this.dataColumn152 = new System.Data.DataColumn();
  410. this.dataColumn153 = new System.Data.DataColumn();
  411. this.dataColumn154 = new System.Data.DataColumn();
  412. this.dataColumn155 = new System.Data.DataColumn();
  413. this.dataColumn143 = new System.Data.DataColumn();
  414. this.dataColumn144 = new System.Data.DataColumn();
  415. this.dataColumn145 = new System.Data.DataColumn();
  416. this.dataColumn146 = new System.Data.DataColumn();
  417. this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  418. this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  419. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  420. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  421. this.txt_itemName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  422. this.COP_OrderId = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  423. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  424. this.COP_SuppName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  425. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  426. this.cop_orderType2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  427. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  428. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  429. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  430. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  431. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  432. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  433. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  434. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  435. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  436. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  437. this.dataSet2 = new System.Data.DataSet();
  438. this.dataTable2 = new System.Data.DataTable();
  439. this.dataColumn15 = new System.Data.DataColumn();
  440. this.dataColumn16 = new System.Data.DataColumn();
  441. this.dataColumn17 = new System.Data.DataColumn();
  442. this.dataColumn18 = new System.Data.DataColumn();
  443. this.dataColumn19 = new System.Data.DataColumn();
  444. this.dataColumn20 = new System.Data.DataColumn();
  445. this.dataColumn21 = new System.Data.DataColumn();
  446. this.dataColumn22 = new System.Data.DataColumn();
  447. this.dataColumn23 = new System.Data.DataColumn();
  448. this.dataColumn24 = new System.Data.DataColumn();
  449. this.dataColumn25 = new System.Data.DataColumn();
  450. this.dataColumn26 = new System.Data.DataColumn();
  451. this.dataColumn27 = new System.Data.DataColumn();
  452. this.dataColumn28 = new System.Data.DataColumn();
  453. this.dataColumn29 = new System.Data.DataColumn();
  454. this.dataColumn6 = new System.Data.DataColumn();
  455. this.barsManagerButon = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  456. this._Form1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  457. this._Form1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  458. this._Form1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  459. this._Form1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  460. this.ultraTabPageControl1.SuspendLayout();
  461. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  462. this.ultraGroupBox1.SuspendLayout();
  463. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  464. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  465. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  466. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  467. this.ultraGroupBox2.SuspendLayout();
  468. ((System.ComponentModel.ISupportInitialize)(this.cop_orderType)).BeginInit();
  469. ((System.ComponentModel.ISupportInitialize)(this.txt_CopModeId)).BeginInit();
  470. ((System.ComponentModel.ISupportInitialize)(this.txt_CopModeName)).BeginInit();
  471. this.ultraTabPageControl2.SuspendLayout();
  472. this.ultraPanel2.ClientArea.SuspendLayout();
  473. this.ultraPanel2.SuspendLayout();
  474. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  475. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  476. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  477. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  478. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
  479. this.ultraExpandableGroupBox3.SuspendLayout();
  480. this.ultraExpandableGroupBoxPanel3.SuspendLayout();
  481. this.ultraPanel1.ClientArea.SuspendLayout();
  482. this.ultraPanel1.SuspendLayout();
  483. ((System.ComponentModel.ISupportInitialize)(this.txt_itemName)).BeginInit();
  484. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).BeginInit();
  485. ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).BeginInit();
  486. ((System.ComponentModel.ISupportInitialize)(this.cop_orderType2)).BeginInit();
  487. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  488. this.ultraExpandableGroupBox2.SuspendLayout();
  489. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  490. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  491. this.ultraPanel3.ClientArea.SuspendLayout();
  492. this.ultraPanel3.SuspendLayout();
  493. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  494. this.ultraTabControl1.SuspendLayout();
  495. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  496. this.ultraExpandableGroupBox1.SuspendLayout();
  497. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  498. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  499. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  500. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  501. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).BeginInit();
  502. this.SuspendLayout();
  503. //
  504. // ultraTabPageControl1
  505. //
  506. this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox1);
  507. this.ultraTabPageControl1.Controls.Add(this.ultraGroupBox2);
  508. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  509. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  510. this.ultraTabPageControl1.Size = new System.Drawing.Size(1099, 226);
  511. //
  512. // ultraGroupBox1
  513. //
  514. this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
  515. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  516. this.ultraGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
  517. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 37);
  518. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(2);
  519. this.ultraGroupBox1.Name = "ultraGroupBox1";
  520. this.ultraGroupBox1.Size = new System.Drawing.Size(1099, 189);
  521. this.ultraGroupBox1.TabIndex = 0;
  522. this.ultraGroupBox1.Text = "合同模板";
  523. //
  524. // ultraGrid1
  525. //
  526. this.ultraGrid1.DataSource = this.dataSet1;
  527. appearance26.BackColor = System.Drawing.SystemColors.Window;
  528. appearance26.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  529. this.ultraGrid1.DisplayLayout.Appearance = appearance26;
  530. ultraGridColumn1.Header.VisiblePosition = 2;
  531. ultraGridColumn2.Header.VisiblePosition = 3;
  532. ultraGridColumn2.Width = 173;
  533. ultraGridColumn3.Header.VisiblePosition = 4;
  534. ultraGridColumn3.Width = 346;
  535. ultraGridColumn4.Header.VisiblePosition = 5;
  536. ultraGridColumn4.Width = 83;
  537. ultraGridColumn5.Header.VisiblePosition = 1;
  538. ultraGridColumn6.Header.VisiblePosition = 6;
  539. ultraGridColumn6.Width = 72;
  540. ultraGridColumn7.Header.VisiblePosition = 7;
  541. ultraGridColumn8.Header.VisiblePosition = 8;
  542. ultraGridColumn8.Width = 63;
  543. ultraGridColumn9.Header.VisiblePosition = 9;
  544. ultraGridColumn10.DataType = typeof(bool);
  545. ultraGridColumn10.Header.Caption = "选择";
  546. ultraGridColumn10.Header.VisiblePosition = 0;
  547. ultraGridColumn10.Hidden = true;
  548. ultraGridColumn10.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  549. ultraGridBand1.Columns.AddRange(new object[] {
  550. ultraGridColumn1,
  551. ultraGridColumn2,
  552. ultraGridColumn3,
  553. ultraGridColumn4,
  554. ultraGridColumn5,
  555. ultraGridColumn6,
  556. ultraGridColumn7,
  557. ultraGridColumn8,
  558. ultraGridColumn9,
  559. ultraGridColumn10});
  560. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  561. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  562. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  563. appearance27.BackColor = System.Drawing.SystemColors.ActiveBorder;
  564. appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
  565. appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  566. appearance27.BorderColor = System.Drawing.SystemColors.Window;
  567. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance27;
  568. appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
  569. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance28;
  570. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  571. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  572. appearance31.BackColor = System.Drawing.SystemColors.ControlLightLight;
  573. appearance31.BackColor2 = System.Drawing.SystemColors.Control;
  574. appearance31.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  575. appearance31.ForeColor = System.Drawing.SystemColors.GrayText;
  576. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance31;
  577. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  578. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  579. appearance32.BackColor = System.Drawing.SystemColors.Window;
  580. appearance32.ForeColor = System.Drawing.SystemColors.ControlText;
  581. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance32;
  582. appearance33.BackColor = System.Drawing.SystemColors.Highlight;
  583. appearance33.ForeColor = System.Drawing.SystemColors.HighlightText;
  584. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance33;
  585. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  586. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  587. appearance34.BackColor = System.Drawing.SystemColors.Window;
  588. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance34;
  589. appearance35.BorderColor = System.Drawing.Color.Silver;
  590. appearance35.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  591. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance35;
  592. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  593. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  594. appearance36.BackColor = System.Drawing.SystemColors.Control;
  595. appearance36.BackColor2 = System.Drawing.SystemColors.ControlDark;
  596. appearance36.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  597. appearance36.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  598. appearance36.BorderColor = System.Drawing.SystemColors.Window;
  599. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance36;
  600. appearance37.TextHAlignAsString = "Left";
  601. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance37;
  602. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  603. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  604. appearance38.BackColor = System.Drawing.SystemColors.Window;
  605. appearance38.BorderColor = System.Drawing.Color.Silver;
  606. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance38;
  607. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  608. appearance1.BackColor = System.Drawing.SystemColors.ControlLight;
  609. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance1;
  610. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  611. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  612. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  613. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  614. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  615. this.ultraGrid1.Location = new System.Drawing.Point(3, 23);
  616. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(2);
  617. this.ultraGrid1.Name = "ultraGrid1";
  618. this.ultraGrid1.Size = new System.Drawing.Size(1093, 163);
  619. this.ultraGrid1.TabIndex = 0;
  620. this.ultraGrid1.Text = "ultraGrid1";
  621. this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
  622. //
  623. // dataSet1
  624. //
  625. this.dataSet1.DataSetName = "NewDataSet";
  626. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  627. this.dataTable1});
  628. //
  629. // dataTable1
  630. //
  631. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  632. this.dataColumn1,
  633. this.dataColumn2,
  634. this.dataColumn3,
  635. this.dataColumn4,
  636. this.dataColumn5,
  637. this.dataColumn9,
  638. this.dataColumn10,
  639. this.dataColumn11,
  640. this.dataColumn12});
  641. this.dataTable1.TableName = "Table1";
  642. //
  643. // dataColumn1
  644. //
  645. this.dataColumn1.Caption = "模板编号";
  646. this.dataColumn1.ColumnName = "ModeId";
  647. //
  648. // dataColumn2
  649. //
  650. this.dataColumn2.Caption = "模板名称";
  651. this.dataColumn2.ColumnName = "ModeName";
  652. //
  653. // dataColumn3
  654. //
  655. this.dataColumn3.Caption = "模板描叙";
  656. this.dataColumn3.ColumnName = "ModeDesc";
  657. //
  658. // dataColumn4
  659. //
  660. this.dataColumn4.Caption = "版本号";
  661. this.dataColumn4.ColumnName = "ModeVer";
  662. //
  663. // dataColumn5
  664. //
  665. this.dataColumn5.Caption = "适用合同类别";
  666. this.dataColumn5.ColumnName = "OrderType";
  667. //
  668. // dataColumn9
  669. //
  670. this.dataColumn9.Caption = "创建人";
  671. this.dataColumn9.ColumnName = "CreateName";
  672. //
  673. // dataColumn10
  674. //
  675. this.dataColumn10.Caption = "创建时间";
  676. this.dataColumn10.ColumnName = "CreateTime";
  677. //
  678. // dataColumn11
  679. //
  680. this.dataColumn11.Caption = "修改人";
  681. this.dataColumn11.ColumnName = "UpdateName";
  682. //
  683. // dataColumn12
  684. //
  685. this.dataColumn12.Caption = "修改时间";
  686. this.dataColumn12.ColumnName = "UpdateTime";
  687. //
  688. // ultraGroupBox2
  689. //
  690. this.ultraGroupBox2.Controls.Add(this.cop_orderType);
  691. this.ultraGroupBox2.Controls.Add(this.ultraLabel11);
  692. this.ultraGroupBox2.Controls.Add(this.ultraLabel3);
  693. this.ultraGroupBox2.Controls.Add(this.txt_CopModeId);
  694. this.ultraGroupBox2.Controls.Add(this.ultraLabel2);
  695. this.ultraGroupBox2.Controls.Add(this.txt_CopModeName);
  696. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  697. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  698. this.ultraGroupBox2.Name = "ultraGroupBox2";
  699. this.ultraGroupBox2.Size = new System.Drawing.Size(1099, 37);
  700. this.ultraGroupBox2.TabIndex = 0;
  701. //
  702. // cop_orderType
  703. //
  704. this.cop_orderType.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  705. this.cop_orderType.Location = new System.Drawing.Point(417, 8);
  706. this.cop_orderType.Margin = new System.Windows.Forms.Padding(2);
  707. this.cop_orderType.Name = "cop_orderType";
  708. this.cop_orderType.Size = new System.Drawing.Size(142, 21);
  709. this.cop_orderType.TabIndex = 38;
  710. //
  711. // ultraLabel11
  712. //
  713. this.ultraLabel11.AutoSize = true;
  714. this.ultraLabel11.Location = new System.Drawing.Point(333, 10);
  715. this.ultraLabel11.Margin = new System.Windows.Forms.Padding(2);
  716. this.ultraLabel11.Name = "ultraLabel11";
  717. this.ultraLabel11.Size = new System.Drawing.Size(79, 16);
  718. this.ultraLabel11.TabIndex = 37;
  719. this.ultraLabel11.Text = "适用合同类别";
  720. //
  721. // ultraLabel3
  722. //
  723. this.ultraLabel3.AutoSize = true;
  724. this.ultraLabel3.Location = new System.Drawing.Point(172, 10);
  725. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(2);
  726. this.ultraLabel3.Name = "ultraLabel3";
  727. this.ultraLabel3.Size = new System.Drawing.Size(54, 16);
  728. this.ultraLabel3.TabIndex = 9;
  729. this.ultraLabel3.Text = "模板名称";
  730. //
  731. // txt_CopModeId
  732. //
  733. this.txt_CopModeId.Location = new System.Drawing.Point(73, 8);
  734. this.txt_CopModeId.Margin = new System.Windows.Forms.Padding(2);
  735. this.txt_CopModeId.Name = "txt_CopModeId";
  736. this.txt_CopModeId.Size = new System.Drawing.Size(87, 21);
  737. this.txt_CopModeId.TabIndex = 6;
  738. //
  739. // ultraLabel2
  740. //
  741. this.ultraLabel2.AutoSize = true;
  742. this.ultraLabel2.Location = new System.Drawing.Point(14, 10);
  743. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(2);
  744. this.ultraLabel2.Name = "ultraLabel2";
  745. this.ultraLabel2.Size = new System.Drawing.Size(54, 16);
  746. this.ultraLabel2.TabIndex = 7;
  747. this.ultraLabel2.Text = "模板编号";
  748. //
  749. // txt_CopModeName
  750. //
  751. this.txt_CopModeName.Location = new System.Drawing.Point(228, 8);
  752. this.txt_CopModeName.Margin = new System.Windows.Forms.Padding(2);
  753. this.txt_CopModeName.Name = "txt_CopModeName";
  754. this.txt_CopModeName.Size = new System.Drawing.Size(87, 21);
  755. this.txt_CopModeName.TabIndex = 8;
  756. //
  757. // ultraTabPageControl2
  758. //
  759. this.ultraTabPageControl2.Controls.Add(this.ultraPanel2);
  760. this.ultraTabPageControl2.Location = new System.Drawing.Point(1, 23);
  761. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  762. this.ultraTabPageControl2.Size = new System.Drawing.Size(1099, 226);
  763. //
  764. // ultraPanel2
  765. //
  766. //
  767. // ultraPanel2.ClientArea
  768. //
  769. this.ultraPanel2.ClientArea.Controls.Add(this.ultraGrid3);
  770. this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox2);
  771. this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox3);
  772. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  773. this.ultraPanel2.Location = new System.Drawing.Point(0, 0);
  774. this.ultraPanel2.Name = "ultraPanel2";
  775. this.ultraPanel2.Size = new System.Drawing.Size(1099, 226);
  776. this.ultraPanel2.TabIndex = 3;
  777. //
  778. // ultraGrid3
  779. //
  780. this.ultraGrid3.DataMember = "Table1";
  781. this.ultraGrid3.DataSource = this.dataSet3;
  782. appearance3.BackColor = System.Drawing.SystemColors.Window;
  783. appearance3.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  784. this.ultraGrid3.DisplayLayout.Appearance = appearance3;
  785. ultraGridColumn11.Header.VisiblePosition = 0;
  786. ultraGridColumn12.Header.VisiblePosition = 1;
  787. ultraGridColumn13.Header.VisiblePosition = 2;
  788. ultraGridColumn14.Header.VisiblePosition = 3;
  789. ultraGridColumn15.Header.VisiblePosition = 4;
  790. ultraGridColumn16.Header.VisiblePosition = 5;
  791. ultraGridColumn17.Header.VisiblePosition = 6;
  792. ultraGridColumn18.Header.VisiblePosition = 7;
  793. ultraGridColumn19.Header.VisiblePosition = 8;
  794. ultraGridColumn20.Header.VisiblePosition = 9;
  795. ultraGridColumn21.Header.VisiblePosition = 10;
  796. ultraGridColumn22.Header.VisiblePosition = 11;
  797. ultraGridColumn23.Header.VisiblePosition = 12;
  798. ultraGridColumn24.Header.VisiblePosition = 13;
  799. ultraGridColumn25.Header.VisiblePosition = 14;
  800. ultraGridColumn26.Header.VisiblePosition = 15;
  801. ultraGridColumn27.Header.VisiblePosition = 16;
  802. ultraGridColumn28.Header.VisiblePosition = 17;
  803. ultraGridColumn29.Header.VisiblePosition = 18;
  804. ultraGridColumn30.Header.VisiblePosition = 19;
  805. ultraGridColumn31.Header.VisiblePosition = 20;
  806. ultraGridColumn32.Header.VisiblePosition = 21;
  807. ultraGridColumn33.Header.VisiblePosition = 22;
  808. ultraGridColumn34.Header.VisiblePosition = 23;
  809. ultraGridColumn35.Header.VisiblePosition = 24;
  810. ultraGridColumn36.Header.VisiblePosition = 25;
  811. ultraGridColumn37.Header.VisiblePosition = 26;
  812. ultraGridColumn38.Header.VisiblePosition = 27;
  813. ultraGridColumn39.Header.VisiblePosition = 28;
  814. ultraGridColumn40.Header.VisiblePosition = 29;
  815. ultraGridColumn41.Header.VisiblePosition = 30;
  816. ultraGridColumn42.Header.VisiblePosition = 31;
  817. ultraGridColumn43.Header.VisiblePosition = 32;
  818. ultraGridColumn44.Header.VisiblePosition = 33;
  819. ultraGridColumn45.Header.VisiblePosition = 34;
  820. ultraGridColumn46.Header.VisiblePosition = 35;
  821. ultraGridColumn47.Header.VisiblePosition = 36;
  822. ultraGridColumn48.Header.VisiblePosition = 37;
  823. ultraGridColumn49.Header.VisiblePosition = 38;
  824. ultraGridColumn50.Header.VisiblePosition = 39;
  825. ultraGridColumn51.Header.VisiblePosition = 40;
  826. ultraGridColumn52.Header.VisiblePosition = 41;
  827. ultraGridColumn53.Header.VisiblePosition = 42;
  828. ultraGridColumn54.Header.VisiblePosition = 43;
  829. ultraGridColumn55.Header.VisiblePosition = 44;
  830. ultraGridColumn56.Header.VisiblePosition = 45;
  831. ultraGridColumn57.Header.VisiblePosition = 46;
  832. ultraGridColumn58.Header.VisiblePosition = 47;
  833. ultraGridColumn59.Header.VisiblePosition = 48;
  834. ultraGridColumn60.Header.VisiblePosition = 49;
  835. ultraGridColumn61.Header.VisiblePosition = 50;
  836. ultraGridBand2.Columns.AddRange(new object[] {
  837. ultraGridColumn11,
  838. ultraGridColumn12,
  839. ultraGridColumn13,
  840. ultraGridColumn14,
  841. ultraGridColumn15,
  842. ultraGridColumn16,
  843. ultraGridColumn17,
  844. ultraGridColumn18,
  845. ultraGridColumn19,
  846. ultraGridColumn20,
  847. ultraGridColumn21,
  848. ultraGridColumn22,
  849. ultraGridColumn23,
  850. ultraGridColumn24,
  851. ultraGridColumn25,
  852. ultraGridColumn26,
  853. ultraGridColumn27,
  854. ultraGridColumn28,
  855. ultraGridColumn29,
  856. ultraGridColumn30,
  857. ultraGridColumn31,
  858. ultraGridColumn32,
  859. ultraGridColumn33,
  860. ultraGridColumn34,
  861. ultraGridColumn35,
  862. ultraGridColumn36,
  863. ultraGridColumn37,
  864. ultraGridColumn38,
  865. ultraGridColumn39,
  866. ultraGridColumn40,
  867. ultraGridColumn41,
  868. ultraGridColumn42,
  869. ultraGridColumn43,
  870. ultraGridColumn44,
  871. ultraGridColumn45,
  872. ultraGridColumn46,
  873. ultraGridColumn47,
  874. ultraGridColumn48,
  875. ultraGridColumn49,
  876. ultraGridColumn50,
  877. ultraGridColumn51,
  878. ultraGridColumn52,
  879. ultraGridColumn53,
  880. ultraGridColumn54,
  881. ultraGridColumn55,
  882. ultraGridColumn56,
  883. ultraGridColumn57,
  884. ultraGridColumn58,
  885. ultraGridColumn59,
  886. ultraGridColumn60,
  887. ultraGridColumn61});
  888. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  889. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  890. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  891. appearance4.BackColor = System.Drawing.SystemColors.ActiveBorder;
  892. appearance4.BackColor2 = System.Drawing.SystemColors.ControlDark;
  893. appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  894. appearance4.BorderColor = System.Drawing.SystemColors.Window;
  895. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance4;
  896. appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
  897. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
  898. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  899. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  900. appearance5.BackColor = System.Drawing.SystemColors.ControlLightLight;
  901. appearance5.BackColor2 = System.Drawing.SystemColors.Control;
  902. appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  903. appearance5.ForeColor = System.Drawing.SystemColors.GrayText;
  904. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance5;
  905. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  906. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  907. appearance9.BackColor = System.Drawing.SystemColors.Window;
  908. appearance9.ForeColor = System.Drawing.SystemColors.ControlText;
  909. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance9;
  910. appearance13.BackColor = System.Drawing.SystemColors.Highlight;
  911. appearance13.ForeColor = System.Drawing.SystemColors.HighlightText;
  912. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance13;
  913. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  914. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  915. appearance15.BackColor = System.Drawing.SystemColors.Window;
  916. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance15;
  917. appearance10.BorderColor = System.Drawing.Color.Silver;
  918. appearance10.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  919. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance10;
  920. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  921. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  922. appearance8.BackColor = System.Drawing.SystemColors.Control;
  923. appearance8.BackColor2 = System.Drawing.SystemColors.ControlDark;
  924. appearance8.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  925. appearance8.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  926. appearance8.BorderColor = System.Drawing.SystemColors.Window;
  927. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance8;
  928. appearance7.TextHAlignAsString = "Left";
  929. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance7;
  930. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  931. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  932. appearance14.BackColor = System.Drawing.SystemColors.Window;
  933. appearance14.BorderColor = System.Drawing.Color.Silver;
  934. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance14;
  935. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  936. appearance12.BackColor = System.Drawing.SystemColors.ControlLight;
  937. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance12;
  938. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  939. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  940. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  941. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  942. this.ultraGrid3.Location = new System.Drawing.Point(0, 49);
  943. this.ultraGrid3.Name = "ultraGrid3";
  944. this.ultraGrid3.Size = new System.Drawing.Size(580, 177);
  945. this.ultraGrid3.TabIndex = 0;
  946. this.ultraGrid3.Text = "ultraGrid3";
  947. //
  948. // dataSet3
  949. //
  950. this.dataSet3.DataSetName = "NewDataSet";
  951. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  952. this.dataTable3,
  953. this.dataTable4});
  954. //
  955. // dataTable3
  956. //
  957. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  958. this.dataColumn7,
  959. this.dataColumn8,
  960. this.dataColumn13,
  961. this.dataColumn14,
  962. this.dataColumn30,
  963. this.dataColumn31,
  964. this.dataColumn32,
  965. this.dataColumn33,
  966. this.dataColumn34,
  967. this.dataColumn35,
  968. this.dataColumn36,
  969. this.dataColumn37,
  970. this.dataColumn38,
  971. this.dataColumn39,
  972. this.dataColumn40,
  973. this.dataColumn41,
  974. this.dataColumn42,
  975. this.dataColumn43,
  976. this.dataColumn44,
  977. this.dataColumn45,
  978. this.dataColumn46,
  979. this.dataColumn47,
  980. this.dataColumn48,
  981. this.dataColumn49,
  982. this.dataColumn50,
  983. this.dataColumn51,
  984. this.dataColumn52,
  985. this.dataColumn53,
  986. this.dataColumn54,
  987. this.dataColumn55,
  988. this.dataColumn56,
  989. this.dataColumn57,
  990. this.dataColumn58,
  991. this.dataColumn59,
  992. this.dataColumn60,
  993. this.dataColumn61,
  994. this.dataColumn62,
  995. this.dataColumn63,
  996. this.dataColumn64,
  997. this.dataColumn65,
  998. this.dataColumn66,
  999. this.dataColumn67,
  1000. this.dataColumn68,
  1001. this.dataColumn69,
  1002. this.dataColumn70,
  1003. this.dataColumn71,
  1004. this.dataColumn72,
  1005. this.dataColumn73,
  1006. this.dataColumn74,
  1007. this.dataColumn127,
  1008. this.dataColumn158});
  1009. this.dataTable3.Constraints.AddRange(new System.Data.Constraint[] {
  1010. new System.Data.UniqueConstraint("Constraint1", new string[] {
  1011. "OrderId"}, false)});
  1012. this.dataTable3.TableName = "Table1";
  1013. //
  1014. // dataColumn7
  1015. //
  1016. this.dataColumn7.Caption = "合同号";
  1017. this.dataColumn7.ColumnName = "OrderId";
  1018. //
  1019. // dataColumn8
  1020. //
  1021. this.dataColumn8.Caption = "合同版本编号";
  1022. this.dataColumn8.ColumnName = "OrderVer";
  1023. //
  1024. // dataColumn13
  1025. //
  1026. this.dataColumn13.Caption = "合同类别";
  1027. this.dataColumn13.ColumnName = "OrderType";
  1028. //
  1029. // dataColumn14
  1030. //
  1031. this.dataColumn14.Caption = "合同金额类别";
  1032. this.dataColumn14.ColumnName = "OrderMoneyType";
  1033. //
  1034. // dataColumn30
  1035. //
  1036. this.dataColumn30.Caption = "模板编号";
  1037. this.dataColumn30.ColumnName = "ModeId";
  1038. //
  1039. // dataColumn31
  1040. //
  1041. this.dataColumn31.Caption = "模板名称";
  1042. this.dataColumn31.ColumnName = "ModeName";
  1043. //
  1044. // dataColumn32
  1045. //
  1046. this.dataColumn32.Caption = "买方编号";
  1047. this.dataColumn32.ColumnName = "OrderTitleCode";
  1048. //
  1049. // dataColumn33
  1050. //
  1051. this.dataColumn33.Caption = "供应商代码";
  1052. this.dataColumn33.ColumnName = "SuppCode";
  1053. //
  1054. // dataColumn34
  1055. //
  1056. this.dataColumn34.Caption = "供应商名称";
  1057. this.dataColumn34.ColumnName = "SuppName";
  1058. //
  1059. // dataColumn35
  1060. //
  1061. this.dataColumn35.Caption = "打印合同号";
  1062. this.dataColumn35.ColumnName = "PorderId";
  1063. //
  1064. // dataColumn36
  1065. //
  1066. this.dataColumn36.Caption = "供应商合同编号";
  1067. this.dataColumn36.ColumnName = "SuppOrdeId";
  1068. //
  1069. // dataColumn37
  1070. //
  1071. this.dataColumn37.Caption = "进口合同编号";
  1072. this.dataColumn37.ColumnName = "ImportOrdeId";
  1073. //
  1074. // dataColumn38
  1075. //
  1076. this.dataColumn38.Caption = "合同货币代码";
  1077. this.dataColumn38.ColumnName = "Currency";
  1078. //
  1079. // dataColumn39
  1080. //
  1081. this.dataColumn39.Caption = "当前兑换汇率";
  1082. this.dataColumn39.ColumnName = "ExchangeRateCur";
  1083. //
  1084. // dataColumn40
  1085. //
  1086. this.dataColumn40.Caption = "最小金额";
  1087. this.dataColumn40.ColumnName = "AmtMin";
  1088. //
  1089. // dataColumn41
  1090. //
  1091. this.dataColumn41.Caption = "最大金额";
  1092. this.dataColumn41.ColumnName = "AmtMax";
  1093. //
  1094. // dataColumn42
  1095. //
  1096. this.dataColumn42.Caption = "合同税额";
  1097. this.dataColumn42.ColumnName = "TaxAmt";
  1098. //
  1099. // dataColumn43
  1100. //
  1101. this.dataColumn43.Caption = "不含税金额";
  1102. this.dataColumn43.ColumnName = "WithoutTaxAmt";
  1103. //
  1104. // dataColumn44
  1105. //
  1106. this.dataColumn44.Caption = "含税金额";
  1107. this.dataColumn44.ColumnName = "WithAmtTax";
  1108. //
  1109. // dataColumn45
  1110. //
  1111. this.dataColumn45.Caption = "预付款1";
  1112. this.dataColumn45.ColumnName = "PrePaymentAmt1";
  1113. //
  1114. // dataColumn46
  1115. //
  1116. this.dataColumn46.Caption = "预付款2";
  1117. this.dataColumn46.ColumnName = "PrePaymentAmt2";
  1118. //
  1119. // dataColumn47
  1120. //
  1121. this.dataColumn47.Caption = "预付款3";
  1122. this.dataColumn47.ColumnName = "PrePaymentAmt3";
  1123. //
  1124. // dataColumn48
  1125. //
  1126. this.dataColumn48.Caption = "预付款4";
  1127. this.dataColumn48.ColumnName = "PrePaymentAmt4";
  1128. //
  1129. // dataColumn49
  1130. //
  1131. this.dataColumn49.Caption = "预付款5";
  1132. this.dataColumn49.ColumnName = "PrePaymentAmt5";
  1133. //
  1134. // dataColumn50
  1135. //
  1136. this.dataColumn50.Caption = "尾款1";
  1137. this.dataColumn50.ColumnName = "AftPaymentAmt1";
  1138. //
  1139. // dataColumn51
  1140. //
  1141. this.dataColumn51.Caption = "尾款2 ";
  1142. this.dataColumn51.ColumnName = "AftPaymentAmt2";
  1143. //
  1144. // dataColumn52
  1145. //
  1146. this.dataColumn52.Caption = "尾款3";
  1147. this.dataColumn52.ColumnName = "AftPaymentAmt3";
  1148. //
  1149. // dataColumn53
  1150. //
  1151. this.dataColumn53.Caption = "尾款4";
  1152. this.dataColumn53.ColumnName = "AftPaymentAmt4";
  1153. //
  1154. // dataColumn54
  1155. //
  1156. this.dataColumn54.Caption = "尾款5";
  1157. this.dataColumn54.ColumnName = "AftPaymentAmt5";
  1158. //
  1159. // dataColumn55
  1160. //
  1161. this.dataColumn55.Caption = "履约保证金";
  1162. this.dataColumn55.ColumnName = "GuaAmt";
  1163. //
  1164. // dataColumn56
  1165. //
  1166. this.dataColumn56.Caption = "开始日期";
  1167. this.dataColumn56.ColumnName = "StartDate";
  1168. //
  1169. // dataColumn57
  1170. //
  1171. this.dataColumn57.Caption = "结束日期";
  1172. this.dataColumn57.ColumnName = "EndDate";
  1173. //
  1174. // dataColumn58
  1175. //
  1176. this.dataColumn58.Caption = "允许提早天数";
  1177. this.dataColumn58.ColumnName = "DaysEarly";
  1178. //
  1179. // dataColumn59
  1180. //
  1181. this.dataColumn59.Caption = "允许延迟天数";
  1182. this.dataColumn59.ColumnName = "DaysLate";
  1183. //
  1184. // dataColumn60
  1185. //
  1186. this.dataColumn60.Caption = "签订地点";
  1187. this.dataColumn60.ColumnName = "SignAddress";
  1188. //
  1189. // dataColumn61
  1190. //
  1191. this.dataColumn61.Caption = "签订日期";
  1192. this.dataColumn61.ColumnName = "SignDate";
  1193. //
  1194. // dataColumn62
  1195. //
  1196. this.dataColumn62.Caption = "打印次数";
  1197. this.dataColumn62.ColumnName = "PrintNum";
  1198. //
  1199. // dataColumn63
  1200. //
  1201. this.dataColumn63.Caption = "采购员";
  1202. this.dataColumn63.ColumnName = "BuyerName";
  1203. //
  1204. // dataColumn64
  1205. //
  1206. this.dataColumn64.Caption = "采购管理部门代码";
  1207. this.dataColumn64.ColumnName = "BuyerDeptCode";
  1208. //
  1209. // dataColumn65
  1210. //
  1211. this.dataColumn65.Caption = "采购管理部门描叙";
  1212. this.dataColumn65.ColumnName = "BuyerDeptDesc";
  1213. //
  1214. // dataColumn66
  1215. //
  1216. this.dataColumn66.Caption = "采购管理科室代码";
  1217. this.dataColumn66.ColumnName = "BuyerUnitCode";
  1218. //
  1219. // dataColumn67
  1220. //
  1221. this.dataColumn67.Caption = "采购管理科室描叙";
  1222. this.dataColumn67.ColumnName = "BuyerUnitDesc";
  1223. //
  1224. // dataColumn68
  1225. //
  1226. this.dataColumn68.Caption = "数据状态(有效、无效)";
  1227. this.dataColumn68.ColumnName = "Validflag";
  1228. //
  1229. // dataColumn69
  1230. //
  1231. this.dataColumn69.Caption = "创建人";
  1232. this.dataColumn69.ColumnName = "CreateName";
  1233. //
  1234. // dataColumn70
  1235. //
  1236. this.dataColumn70.Caption = "创建时间";
  1237. this.dataColumn70.ColumnName = "CreateTime";
  1238. //
  1239. // dataColumn71
  1240. //
  1241. this.dataColumn71.Caption = "修改人";
  1242. this.dataColumn71.ColumnName = "UpdateName";
  1243. //
  1244. // dataColumn72
  1245. //
  1246. this.dataColumn72.Caption = "修改时间";
  1247. this.dataColumn72.ColumnName = "UpdateTime";
  1248. //
  1249. // dataColumn73
  1250. //
  1251. this.dataColumn73.Caption = "买方";
  1252. this.dataColumn73.ColumnName = "DeleteName";
  1253. //
  1254. // dataColumn74
  1255. //
  1256. this.dataColumn74.Caption = "废除时间";
  1257. this.dataColumn74.ColumnName = "DeleteTime";
  1258. //
  1259. // dataColumn127
  1260. //
  1261. this.dataColumn127.Caption = "状态";
  1262. this.dataColumn127.ColumnName = "Status";
  1263. //
  1264. // dataColumn158
  1265. //
  1266. this.dataColumn158.Caption = "采购纪要号";
  1267. this.dataColumn158.ColumnName = "taskRecordId";
  1268. //
  1269. // dataTable4
  1270. //
  1271. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  1272. this.dataColumn75,
  1273. this.dataColumn76,
  1274. this.dataColumn77,
  1275. this.dataColumn78,
  1276. this.dataColumn79,
  1277. this.dataColumn80,
  1278. this.dataColumn81,
  1279. this.dataColumn82,
  1280. this.dataColumn83,
  1281. this.dataColumn84,
  1282. this.dataColumn85,
  1283. this.dataColumn86,
  1284. this.dataColumn87,
  1285. this.dataColumn88,
  1286. this.dataColumn89,
  1287. this.dataColumn90,
  1288. this.dataColumn91,
  1289. this.dataColumn92,
  1290. this.dataColumn93,
  1291. this.dataColumn94,
  1292. this.dataColumn95,
  1293. this.dataColumn96,
  1294. this.dataColumn97,
  1295. this.dataColumn98,
  1296. this.dataColumn99,
  1297. this.dataColumn100,
  1298. this.dataColumn101,
  1299. this.dataColumn102,
  1300. this.dataColumn103,
  1301. this.dataColumn104,
  1302. this.dataColumn105,
  1303. this.dataColumn106,
  1304. this.dataColumn107,
  1305. this.dataColumn108,
  1306. this.dataColumn109,
  1307. this.dataColumn110,
  1308. this.dataColumn111,
  1309. this.dataColumn112,
  1310. this.dataColumn113,
  1311. this.dataColumn114,
  1312. this.dataColumn115,
  1313. this.dataColumn116,
  1314. this.dataColumn117,
  1315. this.dataColumn118,
  1316. this.dataColumn119,
  1317. this.dataColumn120,
  1318. this.dataColumn121,
  1319. this.dataColumn122,
  1320. this.dataColumn123,
  1321. this.dataColumn124,
  1322. this.dataColumn125,
  1323. this.dataColumn126,
  1324. this.dataColumn128,
  1325. this.dataColumn129,
  1326. this.dataColumn130,
  1327. this.dataColumn131,
  1328. this.dataColumn132,
  1329. this.dataColumn133,
  1330. this.dataColumn134,
  1331. this.dataColumn135,
  1332. this.dataColumn136,
  1333. this.dataColumn137,
  1334. this.dataColumn138,
  1335. this.dataColumn139,
  1336. this.dataColumn140,
  1337. this.dataColumn141,
  1338. this.dataColumn142,
  1339. this.dataColumn152,
  1340. this.dataColumn153,
  1341. this.dataColumn154,
  1342. this.dataColumn155,
  1343. this.dataColumn143,
  1344. this.dataColumn144,
  1345. this.dataColumn145,
  1346. this.dataColumn146});
  1347. this.dataTable4.TableName = "Table2";
  1348. //
  1349. // dataColumn75
  1350. //
  1351. this.dataColumn75.Caption = "合同号";
  1352. this.dataColumn75.ColumnName = "OrderId";
  1353. //
  1354. // dataColumn76
  1355. //
  1356. this.dataColumn76.Caption = "合同行号";
  1357. this.dataColumn76.ColumnName = "OrderLineSqe";
  1358. //
  1359. // dataColumn77
  1360. //
  1361. this.dataColumn77.Caption = "评单行号";
  1362. this.dataColumn77.ColumnName = "ReviewLineSqe";
  1363. //
  1364. // dataColumn78
  1365. //
  1366. this.dataColumn78.Caption = "任务单行号";
  1367. this.dataColumn78.ColumnName = "TaskLineId";
  1368. //
  1369. // dataColumn79
  1370. //
  1371. this.dataColumn79.Caption = "物料编码";
  1372. this.dataColumn79.ColumnName = "ItemCode";
  1373. //
  1374. // dataColumn80
  1375. //
  1376. this.dataColumn80.Caption = "物料描述";
  1377. this.dataColumn80.ColumnName = "ItemDesc";
  1378. //
  1379. // dataColumn81
  1380. //
  1381. this.dataColumn81.Caption = "物料简称";
  1382. this.dataColumn81.ColumnName = "ItemName";
  1383. //
  1384. // dataColumn82
  1385. //
  1386. this.dataColumn82.Caption = "物料英文名称";
  1387. this.dataColumn82.ColumnName = "ItemDescE";
  1388. //
  1389. // dataColumn83
  1390. //
  1391. this.dataColumn83.Caption = "物料型号规格";
  1392. this.dataColumn83.ColumnName = "ItemModel";
  1393. //
  1394. // dataColumn84
  1395. //
  1396. this.dataColumn84.Caption = "物料材质";
  1397. this.dataColumn84.ColumnName = "ItemSpec";
  1398. //
  1399. // dataColumn85
  1400. //
  1401. this.dataColumn85.Caption = "合同采购数量";
  1402. this.dataColumn85.ColumnName = "Qty";
  1403. //
  1404. // dataColumn86
  1405. //
  1406. this.dataColumn86.Caption = "是否使用采购单位";
  1407. this.dataColumn86.ColumnName = "ItemUseUom";
  1408. //
  1409. // dataColumn87
  1410. //
  1411. this.dataColumn87.Caption = "采购单位";
  1412. this.dataColumn87.ColumnName = "ItemUom";
  1413. //
  1414. // dataColumn88
  1415. //
  1416. this.dataColumn88.Caption = "转换系数";
  1417. this.dataColumn88.ColumnName = "ItemUomConefficient";
  1418. //
  1419. // dataColumn89
  1420. //
  1421. this.dataColumn89.Caption = "库存单位";
  1422. this.dataColumn89.ColumnName = "WeightUnit";
  1423. //
  1424. // dataColumn90
  1425. //
  1426. this.dataColumn90.Caption = "库存转换数量";
  1427. this.dataColumn90.ColumnName = "CkQty";
  1428. //
  1429. // dataColumn91
  1430. //
  1431. this.dataColumn91.Caption = "交货量差方式";
  1432. this.dataColumn91.ColumnName = "DelvryRangeTpe";
  1433. //
  1434. // dataColumn92
  1435. //
  1436. this.dataColumn92.Caption = "交货量差下限";
  1437. this.dataColumn92.ColumnName = "DelvryRangeMin";
  1438. //
  1439. // dataColumn93
  1440. //
  1441. this.dataColumn93.Caption = "交货量差上限";
  1442. this.dataColumn93.ColumnName = "DelvryRangeMax";
  1443. //
  1444. // dataColumn94
  1445. //
  1446. this.dataColumn94.Caption = "是否计量";
  1447. this.dataColumn94.ColumnName = "MeteringFlag";
  1448. //
  1449. // dataColumn95
  1450. //
  1451. this.dataColumn95.Caption = "是否批次控制";
  1452. this.dataColumn95.ColumnName = "BatchFlag";
  1453. //
  1454. // dataColumn96
  1455. //
  1456. this.dataColumn96.Caption = "是否理化检验";
  1457. this.dataColumn96.ColumnName = "PcFlag";
  1458. //
  1459. // dataColumn97
  1460. //
  1461. this.dataColumn97.Caption = "入库类型";
  1462. this.dataColumn97.ColumnName = "ReceiveType";
  1463. //
  1464. // dataColumn98
  1465. //
  1466. this.dataColumn98.Caption = "采购标准";
  1467. this.dataColumn98.ColumnName = "PurStandards";
  1468. //
  1469. // dataColumn99
  1470. //
  1471. this.dataColumn99.Caption = "采购标准编号";
  1472. this.dataColumn99.ColumnName = "PurStandardsCode";
  1473. //
  1474. // dataColumn100
  1475. //
  1476. this.dataColumn100.Caption = "基础价格编号";
  1477. this.dataColumn100.ColumnName = "BasePriceNo";
  1478. //
  1479. // dataColumn101
  1480. //
  1481. this.dataColumn101.Caption = "成分计价标准编号";
  1482. this.dataColumn101.ColumnName = "ChemPriceNo";
  1483. //
  1484. // dataColumn102
  1485. //
  1486. this.dataColumn102.Caption = "品级计价标准编号";
  1487. this.dataColumn102.ColumnName = "GradePriceNo";
  1488. //
  1489. // dataColumn103
  1490. //
  1491. this.dataColumn103.Caption = "保量加价标准编号";
  1492. this.dataColumn103.ColumnName = "QuantityPriceNum";
  1493. //
  1494. // dataColumn104
  1495. //
  1496. this.dataColumn104.Caption = "其它计价标准编号";
  1497. this.dataColumn104.ColumnName = "OtherPriceNum";
  1498. //
  1499. // dataColumn105
  1500. //
  1501. this.dataColumn105.Caption = "不含税单价";
  1502. this.dataColumn105.ColumnName = "PriceWithoutTax";
  1503. //
  1504. // dataColumn106
  1505. //
  1506. this.dataColumn106.Caption = "含税单价";
  1507. this.dataColumn106.ColumnName = "PriceWithTax";
  1508. //
  1509. // dataColumn107
  1510. //
  1511. this.dataColumn107.Caption = "合同税额";
  1512. this.dataColumn107.ColumnName = "TaxAmt";
  1513. //
  1514. // dataColumn108
  1515. //
  1516. this.dataColumn108.Caption = "不含总金额税金额";
  1517. this.dataColumn108.ColumnName = "WithoutTaxAmt";
  1518. //
  1519. // dataColumn109
  1520. //
  1521. this.dataColumn109.Caption = "含税总金额金额";
  1522. this.dataColumn109.ColumnName = "WithAmtTax";
  1523. //
  1524. // dataColumn110
  1525. //
  1526. this.dataColumn110.Caption = "供应商代码";
  1527. this.dataColumn110.ColumnName = "SuppCode";
  1528. //
  1529. // dataColumn111
  1530. //
  1531. this.dataColumn111.Caption = "供应商名称";
  1532. this.dataColumn111.ColumnName = "SuppName";
  1533. //
  1534. // dataColumn112
  1535. //
  1536. this.dataColumn112.Caption = "交付地点编码";
  1537. this.dataColumn112.ColumnName = "DeliveryLocationCode";
  1538. //
  1539. // dataColumn113
  1540. //
  1541. this.dataColumn113.Caption = "交付地点";
  1542. this.dataColumn113.ColumnName = "DeliveryLocation";
  1543. //
  1544. // dataColumn114
  1545. //
  1546. this.dataColumn114.Caption = "累计入库量";
  1547. this.dataColumn114.ColumnName = "ReceivedQty";
  1548. //
  1549. // dataColumn115
  1550. //
  1551. this.dataColumn115.Caption = "累计入库金额";
  1552. this.dataColumn115.ColumnName = "ReceivedAmt";
  1553. //
  1554. // dataColumn116
  1555. //
  1556. this.dataColumn116.Caption = "累计订单量";
  1557. this.dataColumn116.ColumnName = "OrderedQty";
  1558. //
  1559. // dataColumn117
  1560. //
  1561. this.dataColumn117.Caption = "累计订单金额";
  1562. this.dataColumn117.ColumnName = "OrderedAmt";
  1563. //
  1564. // dataColumn118
  1565. //
  1566. this.dataColumn118.Caption = "已结算量";
  1567. this.dataColumn118.ColumnName = "InvoicedQty";
  1568. //
  1569. // dataColumn119
  1570. //
  1571. this.dataColumn119.Caption = "已结算金额";
  1572. this.dataColumn119.ColumnName = "InvoicedAmt";
  1573. //
  1574. // dataColumn120
  1575. //
  1576. this.dataColumn120.Caption = "要求到货时间";
  1577. this.dataColumn120.ColumnName = "EndDate";
  1578. //
  1579. // dataColumn121
  1580. //
  1581. this.dataColumn121.Caption = "允许提早天数";
  1582. this.dataColumn121.ColumnName = "DaysEarly";
  1583. //
  1584. // dataColumn122
  1585. //
  1586. this.dataColumn122.Caption = "允许延迟天数";
  1587. this.dataColumn122.ColumnName = "DaysLate";
  1588. //
  1589. // dataColumn123
  1590. //
  1591. this.dataColumn123.Caption = "采购员";
  1592. this.dataColumn123.ColumnName = "BuyerName";
  1593. //
  1594. // dataColumn124
  1595. //
  1596. this.dataColumn124.Caption = "采购管理部门代码";
  1597. this.dataColumn124.ColumnName = "BuyerDeptCode";
  1598. //
  1599. // dataColumn125
  1600. //
  1601. this.dataColumn125.Caption = "采购管理部门描叙";
  1602. this.dataColumn125.ColumnName = "BuyerDeptDesc";
  1603. //
  1604. // dataColumn126
  1605. //
  1606. this.dataColumn126.Caption = "采购管理科室代码";
  1607. this.dataColumn126.ColumnName = "BuyerUnitCode";
  1608. //
  1609. // dataColumn128
  1610. //
  1611. this.dataColumn128.Caption = "采购管理科室描叙";
  1612. this.dataColumn128.ColumnName = "BuyerUnitDesc";
  1613. //
  1614. // dataColumn129
  1615. //
  1616. this.dataColumn129.Caption = "数据状态(有效、无效)";
  1617. this.dataColumn129.ColumnName = "Validflag";
  1618. //
  1619. // dataColumn130
  1620. //
  1621. this.dataColumn130.Caption = "创建人";
  1622. this.dataColumn130.ColumnName = "CreateName";
  1623. //
  1624. // dataColumn131
  1625. //
  1626. this.dataColumn131.Caption = "创建时间";
  1627. this.dataColumn131.ColumnName = "CreateTime";
  1628. //
  1629. // dataColumn132
  1630. //
  1631. this.dataColumn132.Caption = "修改人";
  1632. this.dataColumn132.ColumnName = "UpdateName";
  1633. //
  1634. // dataColumn133
  1635. //
  1636. this.dataColumn133.Caption = "修改时间";
  1637. this.dataColumn133.ColumnName = "UpdateTime";
  1638. //
  1639. // dataColumn134
  1640. //
  1641. this.dataColumn134.Caption = "废除人";
  1642. this.dataColumn134.ColumnName = "DeleteName";
  1643. //
  1644. // dataColumn135
  1645. //
  1646. this.dataColumn135.Caption = "废除时间";
  1647. this.dataColumn135.ColumnName = "DeleteTime";
  1648. //
  1649. // dataColumn136
  1650. //
  1651. this.dataColumn136.Caption = "采购计划行";
  1652. this.dataColumn136.ColumnName = "PurLineId";
  1653. //
  1654. // dataColumn137
  1655. //
  1656. this.dataColumn137.Caption = "结算条款ID";
  1657. this.dataColumn137.ColumnName = "BcmID";
  1658. //
  1659. // dataColumn138
  1660. //
  1661. this.dataColumn138.Caption = "结算条款名称";
  1662. this.dataColumn138.ColumnName = "BcmName";
  1663. //
  1664. // dataColumn139
  1665. //
  1666. this.dataColumn139.Caption = "结算条款版本号";
  1667. this.dataColumn139.ColumnName = "BcmVersionNo";
  1668. //
  1669. // dataColumn140
  1670. //
  1671. this.dataColumn140.Caption = "属性";
  1672. this.dataColumn140.ColumnName = "itemAttr";
  1673. //
  1674. // dataColumn141
  1675. //
  1676. this.dataColumn141.Caption = "属性编码";
  1677. this.dataColumn141.ColumnName = "itemAttrId";
  1678. //
  1679. // dataColumn142
  1680. //
  1681. this.dataColumn142.Caption = "备注";
  1682. this.dataColumn142.ColumnName = "remark";
  1683. //
  1684. // dataColumn152
  1685. //
  1686. this.dataColumn152.Caption = "单位换算编码";
  1687. this.dataColumn152.ColumnName = "ITEMUOMID";
  1688. //
  1689. // dataColumn153
  1690. //
  1691. this.dataColumn153.Caption = "唯一值编码";
  1692. this.dataColumn153.ColumnName = "ITEMUNIQUE";
  1693. //
  1694. // dataColumn154
  1695. //
  1696. this.dataColumn154.Caption = "标准";
  1697. this.dataColumn154.ColumnName = "ITEMSTANDARDSCODE";
  1698. //
  1699. // dataColumn155
  1700. //
  1701. this.dataColumn155.Caption = "标准编码";
  1702. this.dataColumn155.ColumnName = "ITEMSTANDARDSID";
  1703. //
  1704. // dataColumn143
  1705. //
  1706. this.dataColumn143.Caption = "税率";
  1707. this.dataColumn143.ColumnName = "taxRateName";
  1708. //
  1709. // dataColumn144
  1710. //
  1711. this.dataColumn144.Caption = "报价类型";
  1712. this.dataColumn144.ColumnName = "offerType";
  1713. //
  1714. // dataColumn145
  1715. //
  1716. this.dataColumn145.Caption = "包装费单价";
  1717. this.dataColumn145.ColumnName = "resPricePackage";
  1718. //
  1719. // dataColumn146
  1720. //
  1721. this.dataColumn146.Caption = "运费单价";
  1722. this.dataColumn146.ColumnName = "resPriceFreight";
  1723. //
  1724. // ultraExpandableGroupBox3
  1725. //
  1726. this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
  1727. this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Top;
  1728. this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(1099, 49);
  1729. this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, 0);
  1730. this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
  1731. this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(1099, 49);
  1732. this.ultraExpandableGroupBox3.TabIndex = 0;
  1733. this.ultraExpandableGroupBox3.Text = "查询条件";
  1734. //
  1735. // ultraExpandableGroupBoxPanel3
  1736. //
  1737. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraPanel1);
  1738. this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1739. this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 19);
  1740. this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
  1741. this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(1093, 27);
  1742. this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
  1743. //
  1744. // ultraPanel1
  1745. //
  1746. //
  1747. // ultraPanel1.ClientArea
  1748. //
  1749. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel56);
  1750. this.ultraPanel1.ClientArea.Controls.Add(this.txt_itemName);
  1751. this.ultraPanel1.ClientArea.Controls.Add(this.COP_OrderId);
  1752. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel8);
  1753. this.ultraPanel1.ClientArea.Controls.Add(this.COP_SuppName);
  1754. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel55);
  1755. this.ultraPanel1.ClientArea.Controls.Add(this.cop_orderType2);
  1756. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel60);
  1757. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1758. this.ultraPanel1.Location = new System.Drawing.Point(0, 0);
  1759. this.ultraPanel1.Name = "ultraPanel1";
  1760. this.ultraPanel1.Size = new System.Drawing.Size(1093, 27);
  1761. this.ultraPanel1.TabIndex = 29;
  1762. //
  1763. // ultraLabel56
  1764. //
  1765. appearance64.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1766. this.ultraLabel56.Appearance = appearance64;
  1767. this.ultraLabel56.AutoSize = true;
  1768. this.ultraLabel56.Location = new System.Drawing.Point(11, 5);
  1769. this.ultraLabel56.Margin = new System.Windows.Forms.Padding(2);
  1770. this.ultraLabel56.Name = "ultraLabel56";
  1771. this.ultraLabel56.Size = new System.Drawing.Size(54, 16);
  1772. this.ultraLabel56.TabIndex = 25;
  1773. this.ultraLabel56.Text = "合 同 号";
  1774. //
  1775. // txt_itemName
  1776. //
  1777. this.txt_itemName.Location = new System.Drawing.Point(635, 4);
  1778. this.txt_itemName.Margin = new System.Windows.Forms.Padding(2);
  1779. this.txt_itemName.Name = "txt_itemName";
  1780. this.txt_itemName.Size = new System.Drawing.Size(119, 21);
  1781. this.txt_itemName.TabIndex = 28;
  1782. //
  1783. // COP_OrderId
  1784. //
  1785. this.COP_OrderId.Location = new System.Drawing.Point(69, 1);
  1786. this.COP_OrderId.Margin = new System.Windows.Forms.Padding(2);
  1787. this.COP_OrderId.Name = "COP_OrderId";
  1788. this.COP_OrderId.Size = new System.Drawing.Size(100, 21);
  1789. this.COP_OrderId.TabIndex = 22;
  1790. //
  1791. // ultraLabel8
  1792. //
  1793. appearance69.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1794. this.ultraLabel8.Appearance = appearance69;
  1795. this.ultraLabel8.AutoSize = true;
  1796. this.ultraLabel8.Location = new System.Drawing.Point(577, 6);
  1797. this.ultraLabel8.Margin = new System.Windows.Forms.Padding(2);
  1798. this.ultraLabel8.Name = "ultraLabel8";
  1799. this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
  1800. this.ultraLabel8.TabIndex = 27;
  1801. this.ultraLabel8.Text = "物料名称";
  1802. //
  1803. // COP_SuppName
  1804. //
  1805. this.COP_SuppName.Location = new System.Drawing.Point(412, 2);
  1806. this.COP_SuppName.Margin = new System.Windows.Forms.Padding(2);
  1807. this.COP_SuppName.Name = "COP_SuppName";
  1808. this.COP_SuppName.Size = new System.Drawing.Size(146, 21);
  1809. this.COP_SuppName.TabIndex = 24;
  1810. //
  1811. // ultraLabel55
  1812. //
  1813. appearance84.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1814. this.ultraLabel55.Appearance = appearance84;
  1815. this.ultraLabel55.AutoSize = true;
  1816. this.ultraLabel55.Location = new System.Drawing.Point(173, 5);
  1817. this.ultraLabel55.Margin = new System.Windows.Forms.Padding(2);
  1818. this.ultraLabel55.Name = "ultraLabel55";
  1819. this.ultraLabel55.Size = new System.Drawing.Size(54, 16);
  1820. this.ultraLabel55.TabIndex = 23;
  1821. this.ultraLabel55.Text = "合同类别";
  1822. //
  1823. // cop_orderType2
  1824. //
  1825. this.cop_orderType2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1826. this.cop_orderType2.Location = new System.Drawing.Point(231, 1);
  1827. this.cop_orderType2.Margin = new System.Windows.Forms.Padding(2);
  1828. this.cop_orderType2.Name = "cop_orderType2";
  1829. this.cop_orderType2.Size = new System.Drawing.Size(119, 21);
  1830. this.cop_orderType2.TabIndex = 21;
  1831. //
  1832. // ultraLabel60
  1833. //
  1834. appearance65.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1835. this.ultraLabel60.Appearance = appearance65;
  1836. this.ultraLabel60.AutoSize = true;
  1837. this.ultraLabel60.Location = new System.Drawing.Point(354, 5);
  1838. this.ultraLabel60.Margin = new System.Windows.Forms.Padding(2);
  1839. this.ultraLabel60.Name = "ultraLabel60";
  1840. this.ultraLabel60.Size = new System.Drawing.Size(54, 16);
  1841. this.ultraLabel60.TabIndex = 26;
  1842. this.ultraLabel60.Text = "供应商名";
  1843. //
  1844. // ultraExpandableGroupBox2
  1845. //
  1846. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  1847. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Right;
  1848. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(519, 177);
  1849. this.ultraExpandableGroupBox2.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.RightOnBorder;
  1850. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(580, 49);
  1851. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  1852. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(519, 177);
  1853. this.ultraExpandableGroupBox2.TabIndex = 2;
  1854. this.ultraExpandableGroupBox2.Text = "合同物料";
  1855. //
  1856. // ultraExpandableGroupBoxPanel2
  1857. //
  1858. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ultraGrid4);
  1859. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1860. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 3);
  1861. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  1862. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(497, 171);
  1863. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  1864. //
  1865. // ultraGrid4
  1866. //
  1867. this.ultraGrid4.DataMember = "Table2";
  1868. this.ultraGrid4.DataSource = this.dataSet3;
  1869. appearance16.BackColor = System.Drawing.SystemColors.Window;
  1870. appearance16.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1871. this.ultraGrid4.DisplayLayout.Appearance = appearance16;
  1872. ultraGridColumn62.Header.VisiblePosition = 0;
  1873. ultraGridColumn63.Header.VisiblePosition = 1;
  1874. ultraGridColumn64.Header.VisiblePosition = 2;
  1875. ultraGridColumn65.Header.VisiblePosition = 3;
  1876. ultraGridColumn66.Header.VisiblePosition = 4;
  1877. ultraGridColumn67.Header.VisiblePosition = 5;
  1878. ultraGridColumn68.Header.VisiblePosition = 6;
  1879. ultraGridColumn69.Header.VisiblePosition = 7;
  1880. ultraGridColumn70.Header.VisiblePosition = 9;
  1881. ultraGridColumn71.Header.VisiblePosition = 11;
  1882. ultraGridColumn72.Header.VisiblePosition = 12;
  1883. ultraGridColumn73.Header.VisiblePosition = 13;
  1884. ultraGridColumn74.Header.VisiblePosition = 14;
  1885. ultraGridColumn75.Header.VisiblePosition = 15;
  1886. ultraGridColumn76.Header.VisiblePosition = 16;
  1887. ultraGridColumn77.Header.VisiblePosition = 17;
  1888. ultraGridColumn78.Header.VisiblePosition = 18;
  1889. ultraGridColumn79.Header.VisiblePosition = 20;
  1890. ultraGridColumn80.Header.VisiblePosition = 22;
  1891. ultraGridColumn81.Header.VisiblePosition = 24;
  1892. ultraGridColumn82.Header.VisiblePosition = 25;
  1893. ultraGridColumn83.Header.VisiblePosition = 26;
  1894. ultraGridColumn84.Header.VisiblePosition = 27;
  1895. ultraGridColumn85.Header.VisiblePosition = 28;
  1896. ultraGridColumn86.Header.VisiblePosition = 29;
  1897. ultraGridColumn87.Header.VisiblePosition = 30;
  1898. ultraGridColumn88.Header.VisiblePosition = 31;
  1899. ultraGridColumn89.Header.VisiblePosition = 32;
  1900. ultraGridColumn90.Header.VisiblePosition = 33;
  1901. ultraGridColumn91.Header.VisiblePosition = 34;
  1902. ultraGridColumn92.Header.VisiblePosition = 35;
  1903. ultraGridColumn93.Header.VisiblePosition = 36;
  1904. ultraGridColumn94.Header.VisiblePosition = 19;
  1905. ultraGridColumn95.Header.VisiblePosition = 21;
  1906. ultraGridColumn96.Header.VisiblePosition = 23;
  1907. ultraGridColumn97.Header.VisiblePosition = 8;
  1908. ultraGridColumn98.Header.VisiblePosition = 10;
  1909. ultraGridColumn99.Header.VisiblePosition = 40;
  1910. ultraGridColumn100.Header.VisiblePosition = 42;
  1911. ultraGridColumn101.Header.VisiblePosition = 44;
  1912. ultraGridColumn102.Header.VisiblePosition = 46;
  1913. ultraGridColumn103.Header.VisiblePosition = 48;
  1914. ultraGridColumn104.Header.VisiblePosition = 50;
  1915. ultraGridColumn105.Header.VisiblePosition = 52;
  1916. ultraGridColumn106.Header.VisiblePosition = 54;
  1917. ultraGridColumn107.Header.VisiblePosition = 37;
  1918. ultraGridColumn108.Header.VisiblePosition = 38;
  1919. ultraGridColumn109.Header.VisiblePosition = 39;
  1920. ultraGridColumn110.Header.VisiblePosition = 41;
  1921. ultraGridColumn111.Header.VisiblePosition = 43;
  1922. ultraGridColumn112.Header.VisiblePosition = 45;
  1923. ultraGridColumn113.Header.VisiblePosition = 47;
  1924. ultraGridColumn114.Header.VisiblePosition = 49;
  1925. ultraGridColumn115.Header.VisiblePosition = 51;
  1926. ultraGridColumn116.Header.VisiblePosition = 53;
  1927. ultraGridColumn117.Header.VisiblePosition = 55;
  1928. ultraGridColumn118.Header.VisiblePosition = 56;
  1929. ultraGridColumn119.Header.VisiblePosition = 57;
  1930. ultraGridColumn120.Header.VisiblePosition = 58;
  1931. ultraGridColumn121.Header.VisiblePosition = 59;
  1932. ultraGridColumn122.Header.VisiblePosition = 60;
  1933. ultraGridColumn123.Header.VisiblePosition = 61;
  1934. ultraGridColumn124.Header.VisiblePosition = 62;
  1935. ultraGridColumn125.Header.VisiblePosition = 63;
  1936. ultraGridColumn126.Header.VisiblePosition = 64;
  1937. ultraGridColumn127.Header.VisiblePosition = 65;
  1938. ultraGridColumn128.Header.VisiblePosition = 66;
  1939. ultraGridColumn129.Header.VisiblePosition = 67;
  1940. ultraGridColumn130.Header.VisiblePosition = 68;
  1941. ultraGridColumn131.Header.VisiblePosition = 69;
  1942. ultraGridColumn132.Header.VisiblePosition = 70;
  1943. ultraGridColumn133.Header.VisiblePosition = 71;
  1944. ultraGridColumn134.Header.VisiblePosition = 72;
  1945. ultraGridColumn135.Header.VisiblePosition = 73;
  1946. ultraGridColumn136.Header.VisiblePosition = 74;
  1947. ultraGridBand3.Columns.AddRange(new object[] {
  1948. ultraGridColumn62,
  1949. ultraGridColumn63,
  1950. ultraGridColumn64,
  1951. ultraGridColumn65,
  1952. ultraGridColumn66,
  1953. ultraGridColumn67,
  1954. ultraGridColumn68,
  1955. ultraGridColumn69,
  1956. ultraGridColumn70,
  1957. ultraGridColumn71,
  1958. ultraGridColumn72,
  1959. ultraGridColumn73,
  1960. ultraGridColumn74,
  1961. ultraGridColumn75,
  1962. ultraGridColumn76,
  1963. ultraGridColumn77,
  1964. ultraGridColumn78,
  1965. ultraGridColumn79,
  1966. ultraGridColumn80,
  1967. ultraGridColumn81,
  1968. ultraGridColumn82,
  1969. ultraGridColumn83,
  1970. ultraGridColumn84,
  1971. ultraGridColumn85,
  1972. ultraGridColumn86,
  1973. ultraGridColumn87,
  1974. ultraGridColumn88,
  1975. ultraGridColumn89,
  1976. ultraGridColumn90,
  1977. ultraGridColumn91,
  1978. ultraGridColumn92,
  1979. ultraGridColumn93,
  1980. ultraGridColumn94,
  1981. ultraGridColumn95,
  1982. ultraGridColumn96,
  1983. ultraGridColumn97,
  1984. ultraGridColumn98,
  1985. ultraGridColumn99,
  1986. ultraGridColumn100,
  1987. ultraGridColumn101,
  1988. ultraGridColumn102,
  1989. ultraGridColumn103,
  1990. ultraGridColumn104,
  1991. ultraGridColumn105,
  1992. ultraGridColumn106,
  1993. ultraGridColumn107,
  1994. ultraGridColumn108,
  1995. ultraGridColumn109,
  1996. ultraGridColumn110,
  1997. ultraGridColumn111,
  1998. ultraGridColumn112,
  1999. ultraGridColumn113,
  2000. ultraGridColumn114,
  2001. ultraGridColumn115,
  2002. ultraGridColumn116,
  2003. ultraGridColumn117,
  2004. ultraGridColumn118,
  2005. ultraGridColumn119,
  2006. ultraGridColumn120,
  2007. ultraGridColumn121,
  2008. ultraGridColumn122,
  2009. ultraGridColumn123,
  2010. ultraGridColumn124,
  2011. ultraGridColumn125,
  2012. ultraGridColumn126,
  2013. ultraGridColumn127,
  2014. ultraGridColumn128,
  2015. ultraGridColumn129,
  2016. ultraGridColumn130,
  2017. ultraGridColumn131,
  2018. ultraGridColumn132,
  2019. ultraGridColumn133,
  2020. ultraGridColumn134,
  2021. ultraGridColumn135,
  2022. ultraGridColumn136});
  2023. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  2024. this.ultraGrid4.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2025. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2026. appearance17.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2027. appearance17.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2028. appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2029. appearance17.BorderColor = System.Drawing.SystemColors.Window;
  2030. this.ultraGrid4.DisplayLayout.GroupByBox.Appearance = appearance17;
  2031. appearance19.ForeColor = System.Drawing.SystemColors.GrayText;
  2032. this.ultraGrid4.DisplayLayout.GroupByBox.BandLabelAppearance = appearance19;
  2033. this.ultraGrid4.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2034. this.ultraGrid4.DisplayLayout.GroupByBox.Hidden = true;
  2035. appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2036. appearance18.BackColor2 = System.Drawing.SystemColors.Control;
  2037. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2038. appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
  2039. this.ultraGrid4.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
  2040. this.ultraGrid4.DisplayLayout.MaxColScrollRegions = 1;
  2041. this.ultraGrid4.DisplayLayout.MaxRowScrollRegions = 1;
  2042. appearance22.BackColor = System.Drawing.SystemColors.Window;
  2043. appearance22.ForeColor = System.Drawing.SystemColors.ControlText;
  2044. this.ultraGrid4.DisplayLayout.Override.ActiveCellAppearance = appearance22;
  2045. appearance25.BackColor = System.Drawing.SystemColors.Highlight;
  2046. appearance25.ForeColor = System.Drawing.SystemColors.HighlightText;
  2047. this.ultraGrid4.DisplayLayout.Override.ActiveRowAppearance = appearance25;
  2048. this.ultraGrid4.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2049. this.ultraGrid4.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2050. appearance52.BackColor = System.Drawing.SystemColors.Window;
  2051. this.ultraGrid4.DisplayLayout.Override.CardAreaAppearance = appearance52;
  2052. appearance23.BorderColor = System.Drawing.Color.Silver;
  2053. appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2054. this.ultraGrid4.DisplayLayout.Override.CellAppearance = appearance23;
  2055. this.ultraGrid4.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2056. this.ultraGrid4.DisplayLayout.Override.CellPadding = 0;
  2057. appearance21.BackColor = System.Drawing.SystemColors.Control;
  2058. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2059. appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2060. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2061. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  2062. this.ultraGrid4.DisplayLayout.Override.GroupByRowAppearance = appearance21;
  2063. appearance20.TextHAlignAsString = "Left";
  2064. this.ultraGrid4.DisplayLayout.Override.HeaderAppearance = appearance20;
  2065. this.ultraGrid4.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2066. this.ultraGrid4.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2067. appearance51.BackColor = System.Drawing.SystemColors.Window;
  2068. appearance51.BorderColor = System.Drawing.Color.Silver;
  2069. this.ultraGrid4.DisplayLayout.Override.RowAppearance = appearance51;
  2070. this.ultraGrid4.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2071. appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
  2072. this.ultraGrid4.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
  2073. this.ultraGrid4.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2074. this.ultraGrid4.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2075. this.ultraGrid4.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2076. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  2077. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  2078. this.ultraGrid4.Name = "ultraGrid4";
  2079. this.ultraGrid4.Size = new System.Drawing.Size(497, 171);
  2080. this.ultraGrid4.TabIndex = 1;
  2081. this.ultraGrid4.Text = "ultraGrid4";
  2082. //
  2083. // ultraPanel3
  2084. //
  2085. //
  2086. // ultraPanel3.ClientArea
  2087. //
  2088. this.ultraPanel3.ClientArea.Controls.Add(this.ultraTabControl1);
  2089. this.ultraPanel3.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
  2090. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2091. this.ultraPanel3.Location = new System.Drawing.Point(0, 24);
  2092. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(2);
  2093. this.ultraPanel3.Name = "ultraPanel3";
  2094. this.ultraPanel3.Size = new System.Drawing.Size(1103, 417);
  2095. this.ultraPanel3.TabIndex = 2;
  2096. //
  2097. // ultraTabControl1
  2098. //
  2099. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  2100. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  2101. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  2102. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2103. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  2104. this.ultraTabControl1.Name = "ultraTabControl1";
  2105. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  2106. this.ultraTabControl1.Size = new System.Drawing.Size(1103, 252);
  2107. this.ultraTabControl1.TabIndex = 2;
  2108. ultraTab1.TabPage = this.ultraTabPageControl1;
  2109. ultraTab1.Text = "系统模板";
  2110. ultraTab2.TabPage = this.ultraTabPageControl2;
  2111. ultraTab2.Text = "旧合同";
  2112. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2113. ultraTab1,
  2114. ultraTab2});
  2115. //
  2116. // ultraTabSharedControlsPage1
  2117. //
  2118. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  2119. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  2120. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1099, 226);
  2121. //
  2122. // ultraExpandableGroupBox1
  2123. //
  2124. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  2125. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  2126. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1103, 165);
  2127. this.ultraExpandableGroupBox1.HeaderPosition = Infragistics.Win.Misc.GroupBoxHeaderPosition.TopInsideBorder;
  2128. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 252);
  2129. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  2130. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1103, 165);
  2131. this.ultraExpandableGroupBox1.TabIndex = 1;
  2132. this.ultraExpandableGroupBox1.Text = "点击查看合同条款";
  2133. //
  2134. // ultraExpandableGroupBoxPanel1
  2135. //
  2136. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraGrid2);
  2137. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  2138. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 24);
  2139. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  2140. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1097, 138);
  2141. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  2142. //
  2143. // ultraGrid2
  2144. //
  2145. this.ultraGrid2.DataSource = this.dataSet2;
  2146. appearance39.BackColor = System.Drawing.SystemColors.Window;
  2147. appearance39.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2148. this.ultraGrid2.DisplayLayout.Appearance = appearance39;
  2149. ultraGridColumn137.Header.VisiblePosition = 0;
  2150. ultraGridColumn137.Hidden = true;
  2151. ultraGridColumn138.Header.VisiblePosition = 1;
  2152. ultraGridColumn138.Hidden = true;
  2153. ultraGridColumn139.Header.VisiblePosition = 3;
  2154. ultraGridColumn140.Header.VisiblePosition = 4;
  2155. ultraGridColumn140.Width = 130;
  2156. ultraGridColumn141.Header.VisiblePosition = 5;
  2157. ultraGridColumn141.Width = 336;
  2158. ultraGridColumn142.Header.VisiblePosition = 6;
  2159. ultraGridColumn142.Width = 71;
  2160. appearance2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2161. ultraGridColumn143.CellAppearance = appearance2;
  2162. ultraGridColumn143.Header.VisiblePosition = 2;
  2163. ultraGridColumn143.MergedCellContentArea = Infragistics.Win.UltraWinGrid.MergedCellContentArea.VisibleRect;
  2164. ultraGridColumn143.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameValue;
  2165. ultraGridColumn143.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
  2166. ultraGridColumn143.Width = 227;
  2167. ultraGridColumn144.Header.VisiblePosition = 8;
  2168. ultraGridColumn144.Hidden = true;
  2169. ultraGridColumn144.Width = 83;
  2170. ultraGridColumn145.Header.VisiblePosition = 9;
  2171. ultraGridColumn145.Width = 72;
  2172. ultraGridColumn146.Header.VisiblePosition = 10;
  2173. ultraGridColumn147.Header.VisiblePosition = 11;
  2174. ultraGridColumn147.Width = 70;
  2175. ultraGridColumn148.Header.VisiblePosition = 12;
  2176. ultraGridColumn149.Header.VisiblePosition = 13;
  2177. ultraGridColumn149.Hidden = true;
  2178. ultraGridColumn150.Header.VisiblePosition = 14;
  2179. ultraGridColumn150.Hidden = true;
  2180. ultraGridColumn151.Header.VisiblePosition = 15;
  2181. ultraGridColumn151.Hidden = true;
  2182. ultraGridColumn152.Header.VisiblePosition = 7;
  2183. ultraGridBand4.Columns.AddRange(new object[] {
  2184. ultraGridColumn137,
  2185. ultraGridColumn138,
  2186. ultraGridColumn139,
  2187. ultraGridColumn140,
  2188. ultraGridColumn141,
  2189. ultraGridColumn142,
  2190. ultraGridColumn143,
  2191. ultraGridColumn144,
  2192. ultraGridColumn145,
  2193. ultraGridColumn146,
  2194. ultraGridColumn147,
  2195. ultraGridColumn148,
  2196. ultraGridColumn149,
  2197. ultraGridColumn150,
  2198. ultraGridColumn151,
  2199. ultraGridColumn152});
  2200. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  2201. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2202. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2203. appearance40.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2204. appearance40.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2205. appearance40.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2206. appearance40.BorderColor = System.Drawing.SystemColors.Window;
  2207. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance40;
  2208. appearance41.ForeColor = System.Drawing.SystemColors.GrayText;
  2209. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance41;
  2210. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2211. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  2212. appearance42.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2213. appearance42.BackColor2 = System.Drawing.SystemColors.Control;
  2214. appearance42.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2215. appearance42.ForeColor = System.Drawing.SystemColors.GrayText;
  2216. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance42;
  2217. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  2218. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  2219. appearance43.BackColor = System.Drawing.SystemColors.Window;
  2220. appearance43.ForeColor = System.Drawing.SystemColors.ControlText;
  2221. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance43;
  2222. appearance44.BackColor = System.Drawing.SystemColors.Highlight;
  2223. appearance44.ForeColor = System.Drawing.SystemColors.HighlightText;
  2224. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance44;
  2225. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2226. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2227. appearance45.BackColor = System.Drawing.SystemColors.Window;
  2228. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance45;
  2229. appearance46.BorderColor = System.Drawing.Color.Silver;
  2230. appearance46.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2231. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance46;
  2232. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2233. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  2234. appearance47.BackColor = System.Drawing.SystemColors.Control;
  2235. appearance47.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2236. appearance47.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2237. appearance47.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2238. appearance47.BorderColor = System.Drawing.SystemColors.Window;
  2239. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance47;
  2240. appearance48.TextHAlignAsString = "Left";
  2241. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance48;
  2242. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2243. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2244. appearance49.BackColor = System.Drawing.SystemColors.Window;
  2245. appearance49.BorderColor = System.Drawing.Color.Silver;
  2246. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance49;
  2247. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2248. appearance50.BackColor = System.Drawing.SystemColors.ControlLight;
  2249. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance50;
  2250. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2251. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2252. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2253. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  2254. this.ultraGrid2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2255. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  2256. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(2);
  2257. this.ultraGrid2.Name = "ultraGrid2";
  2258. this.ultraGrid2.Size = new System.Drawing.Size(1097, 138);
  2259. this.ultraGrid2.TabIndex = 1;
  2260. this.ultraGrid2.Text = "ultraGrid2";
  2261. //
  2262. // dataSet2
  2263. //
  2264. this.dataSet2.DataSetName = "NewDataSet";
  2265. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  2266. this.dataTable2});
  2267. //
  2268. // dataTable2
  2269. //
  2270. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  2271. this.dataColumn15,
  2272. this.dataColumn16,
  2273. this.dataColumn17,
  2274. this.dataColumn18,
  2275. this.dataColumn19,
  2276. this.dataColumn20,
  2277. this.dataColumn21,
  2278. this.dataColumn22,
  2279. this.dataColumn23,
  2280. this.dataColumn24,
  2281. this.dataColumn25,
  2282. this.dataColumn26,
  2283. this.dataColumn27,
  2284. this.dataColumn28,
  2285. this.dataColumn29,
  2286. this.dataColumn6});
  2287. this.dataTable2.TableName = "Table1";
  2288. //
  2289. // dataColumn15
  2290. //
  2291. this.dataColumn15.Caption = "模板编号";
  2292. this.dataColumn15.ColumnName = "ModeId";
  2293. //
  2294. // dataColumn16
  2295. //
  2296. this.dataColumn16.Caption = "模板名称";
  2297. this.dataColumn16.ColumnName = "ModeName";
  2298. //
  2299. // dataColumn17
  2300. //
  2301. this.dataColumn17.Caption = "条款代码标识";
  2302. this.dataColumn17.ColumnName = "ClauseId";
  2303. //
  2304. // dataColumn18
  2305. //
  2306. this.dataColumn18.Caption = "条款名称";
  2307. this.dataColumn18.ColumnName = "ClauseName";
  2308. //
  2309. // dataColumn19
  2310. //
  2311. this.dataColumn19.Caption = "条款内容";
  2312. this.dataColumn19.ColumnName = "ClauseDesc";
  2313. //
  2314. // dataColumn20
  2315. //
  2316. this.dataColumn20.Caption = "打印顺序1";
  2317. this.dataColumn20.ColumnName = "ClauseIndx";
  2318. //
  2319. // dataColumn21
  2320. //
  2321. this.dataColumn21.Caption = "条款分类";
  2322. this.dataColumn21.ColumnName = "ClauseType";
  2323. //
  2324. // dataColumn22
  2325. //
  2326. this.dataColumn22.Caption = "是否必选";
  2327. this.dataColumn22.ColumnName = "ClauseDefault";
  2328. //
  2329. // dataColumn23
  2330. //
  2331. this.dataColumn23.Caption = "创建人";
  2332. this.dataColumn23.ColumnName = "CreateName";
  2333. //
  2334. // dataColumn24
  2335. //
  2336. this.dataColumn24.Caption = "创建时间";
  2337. this.dataColumn24.ColumnName = "CreateTime";
  2338. //
  2339. // dataColumn25
  2340. //
  2341. this.dataColumn25.Caption = "修改人";
  2342. this.dataColumn25.ColumnName = "UpdateName";
  2343. //
  2344. // dataColumn26
  2345. //
  2346. this.dataColumn26.Caption = "修改时间";
  2347. this.dataColumn26.ColumnName = "UpdateTime";
  2348. //
  2349. // dataColumn27
  2350. //
  2351. this.dataColumn27.Caption = "废除人";
  2352. this.dataColumn27.ColumnName = "DeleteName";
  2353. //
  2354. // dataColumn28
  2355. //
  2356. this.dataColumn28.Caption = "废除时间";
  2357. this.dataColumn28.ColumnName = "DeleteTime";
  2358. //
  2359. // dataColumn29
  2360. //
  2361. this.dataColumn29.Caption = "合同模板条款行号";
  2362. this.dataColumn29.ColumnName = "ID";
  2363. //
  2364. // dataColumn6
  2365. //
  2366. this.dataColumn6.Caption = "打印顺序2";
  2367. this.dataColumn6.ColumnName = "ClauseIndxIn";
  2368. //
  2369. // barsManagerButon
  2370. //
  2371. this.barsManagerButon.DesignerFlags = 1;
  2372. this.barsManagerButon.DockWithinContainer = this;
  2373. this.barsManagerButon.DockWithinContainerBaseType = typeof(CoreFS.CA06.FrmBase);
  2374. this.barsManagerButon.MiniToolbar.ToolRowCount = 3;
  2375. this.barsManagerButon.Office2007UICompatibility = false;
  2376. ribbonTab1.Caption = "ribbon1";
  2377. ribbonGroup1.Caption = "ribbonGroup1";
  2378. ribbonGroup2.Caption = "ribbonGroup2";
  2379. ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
  2380. ribbonGroup1,
  2381. ribbonGroup2});
  2382. this.barsManagerButon.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
  2383. ribbonTab1});
  2384. this.barsManagerButon.ShowQuickCustomizeButton = false;
  2385. ultraToolbar1.DockedColumn = 0;
  2386. ultraToolbar1.DockedRow = 0;
  2387. buttonTool5.InstanceProps.IsFirstInGroup = true;
  2388. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  2389. buttonTool2,
  2390. buttonTool5});
  2391. ultraToolbar1.Text = "UltraToolbar1";
  2392. ultraToolbar1.Visible = false;
  2393. ultraToolbar2.DockedColumn = 0;
  2394. ultraToolbar2.DockedRow = 0;
  2395. ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  2396. buttonTool1,
  2397. buttonTool4,
  2398. buttonTool16});
  2399. ultraToolbar2.Text = "UltraToolbar2";
  2400. this.barsManagerButon.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  2401. ultraToolbar1,
  2402. ultraToolbar2});
  2403. buttonTool6.SharedPropsInternal.Caption = "新增";
  2404. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2405. buttonTool7.SharedPropsInternal.Caption = "删除";
  2406. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2407. buttonTool8.SharedPropsInternal.Caption = "修改";
  2408. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2409. buttonTool9.SharedPropsInternal.Caption = "查询";
  2410. buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2411. buttonTool10.SharedPropsInternal.Caption = "关闭";
  2412. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2413. buttonTool12.SharedPropsInternal.Caption = "恢复";
  2414. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2415. buttonTool3.SharedPropsInternal.Caption = "确认";
  2416. buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2417. appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
  2418. buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
  2419. buttonTool11.SharedPropsInternal.Caption = "查询";
  2420. buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2421. appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
  2422. buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
  2423. buttonTool13.SharedPropsInternal.Caption = "关闭";
  2424. buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2425. appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
  2426. buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
  2427. buttonTool17.SharedPropsInternal.Caption = "确认";
  2428. buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2429. this.barsManagerButon.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  2430. buttonTool6,
  2431. buttonTool7,
  2432. buttonTool8,
  2433. buttonTool9,
  2434. buttonTool10,
  2435. buttonTool12,
  2436. buttonTool3,
  2437. buttonTool11,
  2438. buttonTool13,
  2439. buttonTool17});
  2440. this.barsManagerButon.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.barsManagerButon_ToolClick);
  2441. //
  2442. // _Form1_Toolbars_Dock_Area_Top
  2443. //
  2444. this._Form1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2445. this._Form1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  2446. this._Form1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  2447. this._Form1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  2448. this._Form1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  2449. this._Form1_Toolbars_Dock_Area_Top.Name = "_Form1_Toolbars_Dock_Area_Top";
  2450. this._Form1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1103, 24);
  2451. this._Form1_Toolbars_Dock_Area_Top.ToolbarsManager = this.barsManagerButon;
  2452. //
  2453. // _Form1_Toolbars_Dock_Area_Bottom
  2454. //
  2455. this._Form1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2456. this._Form1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  2457. this._Form1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  2458. this._Form1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  2459. this._Form1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 441);
  2460. this._Form1_Toolbars_Dock_Area_Bottom.Name = "_Form1_Toolbars_Dock_Area_Bottom";
  2461. this._Form1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1103, 0);
  2462. this._Form1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.barsManagerButon;
  2463. //
  2464. // _Form1_Toolbars_Dock_Area_Left
  2465. //
  2466. this._Form1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2467. this._Form1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  2468. this._Form1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  2469. this._Form1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  2470. this._Form1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  2471. this._Form1_Toolbars_Dock_Area_Left.Name = "_Form1_Toolbars_Dock_Area_Left";
  2472. this._Form1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 417);
  2473. this._Form1_Toolbars_Dock_Area_Left.ToolbarsManager = this.barsManagerButon;
  2474. //
  2475. // _Form1_Toolbars_Dock_Area_Right
  2476. //
  2477. this._Form1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2478. this._Form1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  2479. this._Form1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  2480. this._Form1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  2481. this._Form1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1103, 24);
  2482. this._Form1_Toolbars_Dock_Area_Right.Name = "_Form1_Toolbars_Dock_Area_Right";
  2483. this._Form1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 417);
  2484. this._Form1_Toolbars_Dock_Area_Right.ToolbarsManager = this.barsManagerButon;
  2485. //
  2486. // FrmPopOrderModeNew
  2487. //
  2488. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2489. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2490. this.ClientSize = new System.Drawing.Size(1103, 441);
  2491. this.Controls.Add(this.ultraPanel3);
  2492. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Left);
  2493. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Right);
  2494. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Top);
  2495. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Bottom);
  2496. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  2497. this.Margin = new System.Windows.Forms.Padding(2);
  2498. this.Name = "FrmPopOrderModeNew";
  2499. this.Text = "合同模板";
  2500. this.Load += new System.EventHandler(this.FrmPopOrderModeNew_Load);
  2501. this.ultraTabPageControl1.ResumeLayout(false);
  2502. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2503. this.ultraGroupBox1.ResumeLayout(false);
  2504. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  2505. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  2506. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2507. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  2508. this.ultraGroupBox2.ResumeLayout(false);
  2509. this.ultraGroupBox2.PerformLayout();
  2510. ((System.ComponentModel.ISupportInitialize)(this.cop_orderType)).EndInit();
  2511. ((System.ComponentModel.ISupportInitialize)(this.txt_CopModeId)).EndInit();
  2512. ((System.ComponentModel.ISupportInitialize)(this.txt_CopModeName)).EndInit();
  2513. this.ultraTabPageControl2.ResumeLayout(false);
  2514. this.ultraPanel2.ClientArea.ResumeLayout(false);
  2515. this.ultraPanel2.ResumeLayout(false);
  2516. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  2517. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  2518. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  2519. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  2520. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
  2521. this.ultraExpandableGroupBox3.ResumeLayout(false);
  2522. this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
  2523. this.ultraPanel1.ClientArea.ResumeLayout(false);
  2524. this.ultraPanel1.ClientArea.PerformLayout();
  2525. this.ultraPanel1.ResumeLayout(false);
  2526. ((System.ComponentModel.ISupportInitialize)(this.txt_itemName)).EndInit();
  2527. ((System.ComponentModel.ISupportInitialize)(this.COP_OrderId)).EndInit();
  2528. ((System.ComponentModel.ISupportInitialize)(this.COP_SuppName)).EndInit();
  2529. ((System.ComponentModel.ISupportInitialize)(this.cop_orderType2)).EndInit();
  2530. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  2531. this.ultraExpandableGroupBox2.ResumeLayout(false);
  2532. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  2533. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  2534. this.ultraPanel3.ClientArea.ResumeLayout(false);
  2535. this.ultraPanel3.ResumeLayout(false);
  2536. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  2537. this.ultraTabControl1.ResumeLayout(false);
  2538. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2539. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2540. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2541. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2542. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2543. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2544. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).EndInit();
  2545. this.ResumeLayout(false);
  2546. }
  2547. #endregion
  2548. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  2549. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2550. private System.Data.DataSet dataSet1;
  2551. private System.Data.DataTable dataTable1;
  2552. private System.Data.DataColumn dataColumn1;
  2553. private System.Data.DataColumn dataColumn2;
  2554. private System.Data.DataColumn dataColumn3;
  2555. private System.Data.DataColumn dataColumn4;
  2556. private System.Data.DataColumn dataColumn5;
  2557. private System.Data.DataColumn dataColumn9;
  2558. private System.Data.DataColumn dataColumn10;
  2559. private System.Data.DataColumn dataColumn11;
  2560. private System.Data.DataColumn dataColumn12;
  2561. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2562. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2563. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CopModeName;
  2564. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2565. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_CopModeId;
  2566. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager barsManagerButon;
  2567. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Left;
  2568. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Right;
  2569. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Top;
  2570. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Bottom;
  2571. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  2572. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  2573. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2574. private System.Data.DataSet dataSet2;
  2575. private System.Data.DataTable dataTable2;
  2576. private System.Data.DataColumn dataColumn15;
  2577. private System.Data.DataColumn dataColumn16;
  2578. private System.Data.DataColumn dataColumn17;
  2579. private System.Data.DataColumn dataColumn18;
  2580. private System.Data.DataColumn dataColumn19;
  2581. private System.Data.DataColumn dataColumn20;
  2582. private System.Data.DataColumn dataColumn21;
  2583. private System.Data.DataColumn dataColumn22;
  2584. private System.Data.DataColumn dataColumn23;
  2585. private System.Data.DataColumn dataColumn24;
  2586. private System.Data.DataColumn dataColumn25;
  2587. private System.Data.DataColumn dataColumn26;
  2588. private System.Data.DataColumn dataColumn27;
  2589. private System.Data.DataColumn dataColumn28;
  2590. private System.Data.DataColumn dataColumn29;
  2591. private Infragistics.Win.UltraWinEditors.UltraComboEditor cop_orderType;
  2592. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  2593. private System.Data.DataColumn dataColumn6;
  2594. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  2595. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  2596. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  2597. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  2598. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  2599. private System.Data.DataSet dataSet3;
  2600. private System.Data.DataTable dataTable3;
  2601. private System.Data.DataColumn dataColumn7;
  2602. private System.Data.DataColumn dataColumn8;
  2603. private System.Data.DataColumn dataColumn13;
  2604. private System.Data.DataColumn dataColumn14;
  2605. private System.Data.DataColumn dataColumn30;
  2606. private System.Data.DataColumn dataColumn31;
  2607. private System.Data.DataColumn dataColumn32;
  2608. private System.Data.DataColumn dataColumn33;
  2609. private System.Data.DataColumn dataColumn34;
  2610. private System.Data.DataColumn dataColumn35;
  2611. private System.Data.DataColumn dataColumn36;
  2612. private System.Data.DataColumn dataColumn37;
  2613. private System.Data.DataColumn dataColumn38;
  2614. private System.Data.DataColumn dataColumn39;
  2615. private System.Data.DataColumn dataColumn40;
  2616. private System.Data.DataColumn dataColumn41;
  2617. private System.Data.DataColumn dataColumn42;
  2618. private System.Data.DataColumn dataColumn43;
  2619. private System.Data.DataColumn dataColumn44;
  2620. private System.Data.DataColumn dataColumn45;
  2621. private System.Data.DataColumn dataColumn46;
  2622. private System.Data.DataColumn dataColumn47;
  2623. private System.Data.DataColumn dataColumn48;
  2624. private System.Data.DataColumn dataColumn49;
  2625. private System.Data.DataColumn dataColumn50;
  2626. private System.Data.DataColumn dataColumn51;
  2627. private System.Data.DataColumn dataColumn52;
  2628. private System.Data.DataColumn dataColumn53;
  2629. private System.Data.DataColumn dataColumn54;
  2630. private System.Data.DataColumn dataColumn55;
  2631. private System.Data.DataColumn dataColumn56;
  2632. private System.Data.DataColumn dataColumn57;
  2633. private System.Data.DataColumn dataColumn58;
  2634. private System.Data.DataColumn dataColumn59;
  2635. private System.Data.DataColumn dataColumn60;
  2636. private System.Data.DataColumn dataColumn61;
  2637. private System.Data.DataColumn dataColumn62;
  2638. private System.Data.DataColumn dataColumn63;
  2639. private System.Data.DataColumn dataColumn64;
  2640. private System.Data.DataColumn dataColumn65;
  2641. private System.Data.DataColumn dataColumn66;
  2642. private System.Data.DataColumn dataColumn67;
  2643. private System.Data.DataColumn dataColumn68;
  2644. private System.Data.DataColumn dataColumn69;
  2645. private System.Data.DataColumn dataColumn70;
  2646. private System.Data.DataColumn dataColumn71;
  2647. private System.Data.DataColumn dataColumn72;
  2648. private System.Data.DataColumn dataColumn73;
  2649. private System.Data.DataColumn dataColumn74;
  2650. private System.Data.DataColumn dataColumn127;
  2651. private System.Data.DataColumn dataColumn158;
  2652. private System.Data.DataTable dataTable4;
  2653. private System.Data.DataColumn dataColumn75;
  2654. private System.Data.DataColumn dataColumn76;
  2655. private System.Data.DataColumn dataColumn77;
  2656. private System.Data.DataColumn dataColumn78;
  2657. private System.Data.DataColumn dataColumn79;
  2658. private System.Data.DataColumn dataColumn80;
  2659. private System.Data.DataColumn dataColumn81;
  2660. private System.Data.DataColumn dataColumn82;
  2661. private System.Data.DataColumn dataColumn83;
  2662. private System.Data.DataColumn dataColumn84;
  2663. private System.Data.DataColumn dataColumn85;
  2664. private System.Data.DataColumn dataColumn86;
  2665. private System.Data.DataColumn dataColumn87;
  2666. private System.Data.DataColumn dataColumn88;
  2667. private System.Data.DataColumn dataColumn89;
  2668. private System.Data.DataColumn dataColumn90;
  2669. private System.Data.DataColumn dataColumn91;
  2670. private System.Data.DataColumn dataColumn92;
  2671. private System.Data.DataColumn dataColumn93;
  2672. private System.Data.DataColumn dataColumn94;
  2673. private System.Data.DataColumn dataColumn95;
  2674. private System.Data.DataColumn dataColumn96;
  2675. private System.Data.DataColumn dataColumn97;
  2676. private System.Data.DataColumn dataColumn98;
  2677. private System.Data.DataColumn dataColumn99;
  2678. private System.Data.DataColumn dataColumn100;
  2679. private System.Data.DataColumn dataColumn101;
  2680. private System.Data.DataColumn dataColumn102;
  2681. private System.Data.DataColumn dataColumn103;
  2682. private System.Data.DataColumn dataColumn104;
  2683. private System.Data.DataColumn dataColumn105;
  2684. private System.Data.DataColumn dataColumn106;
  2685. private System.Data.DataColumn dataColumn107;
  2686. private System.Data.DataColumn dataColumn108;
  2687. private System.Data.DataColumn dataColumn109;
  2688. private System.Data.DataColumn dataColumn110;
  2689. private System.Data.DataColumn dataColumn111;
  2690. private System.Data.DataColumn dataColumn112;
  2691. private System.Data.DataColumn dataColumn113;
  2692. private System.Data.DataColumn dataColumn114;
  2693. private System.Data.DataColumn dataColumn115;
  2694. private System.Data.DataColumn dataColumn116;
  2695. private System.Data.DataColumn dataColumn117;
  2696. private System.Data.DataColumn dataColumn118;
  2697. private System.Data.DataColumn dataColumn119;
  2698. private System.Data.DataColumn dataColumn120;
  2699. private System.Data.DataColumn dataColumn121;
  2700. private System.Data.DataColumn dataColumn122;
  2701. private System.Data.DataColumn dataColumn123;
  2702. private System.Data.DataColumn dataColumn124;
  2703. private System.Data.DataColumn dataColumn125;
  2704. private System.Data.DataColumn dataColumn126;
  2705. private System.Data.DataColumn dataColumn128;
  2706. private System.Data.DataColumn dataColumn129;
  2707. private System.Data.DataColumn dataColumn130;
  2708. private System.Data.DataColumn dataColumn131;
  2709. private System.Data.DataColumn dataColumn132;
  2710. private System.Data.DataColumn dataColumn133;
  2711. private System.Data.DataColumn dataColumn134;
  2712. private System.Data.DataColumn dataColumn135;
  2713. private System.Data.DataColumn dataColumn136;
  2714. private System.Data.DataColumn dataColumn137;
  2715. private System.Data.DataColumn dataColumn138;
  2716. private System.Data.DataColumn dataColumn139;
  2717. private System.Data.DataColumn dataColumn140;
  2718. private System.Data.DataColumn dataColumn141;
  2719. private System.Data.DataColumn dataColumn142;
  2720. private System.Data.DataColumn dataColumn152;
  2721. private System.Data.DataColumn dataColumn153;
  2722. private System.Data.DataColumn dataColumn154;
  2723. private System.Data.DataColumn dataColumn155;
  2724. private System.Data.DataColumn dataColumn143;
  2725. private System.Data.DataColumn dataColumn144;
  2726. private System.Data.DataColumn dataColumn145;
  2727. private System.Data.DataColumn dataColumn146;
  2728. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  2729. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  2730. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  2731. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  2732. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  2733. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
  2734. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
  2735. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  2736. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  2737. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_itemName;
  2738. private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_OrderId;
  2739. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  2740. private Infragistics.Win.UltraWinEditors.UltraTextEditor COP_SuppName;
  2741. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  2742. private Infragistics.Win.UltraWinEditors.UltraComboEditor cop_orderType2;
  2743. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  2744. }
  2745. }