Clearing.Designer.cs 217 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303
  1. namespace PTMedicalInsurance.Forms
  2. {
  3. partial class Clearing
  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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Clearing));
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  71. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  72. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
  73. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
  74. this.uiTabControl1 = new Sunny.UI.UITabControl();
  75. this.tabPage1 = new System.Windows.Forms.TabPage();
  76. this.uiPanel2 = new Sunny.UI.UIPanel();
  77. this.uiTabControl3 = new Sunny.UI.UITabControl();
  78. this.tabPage6 = new System.Windows.Forms.TabPage();
  79. this.dgvHisSettlRec = new Sunny.UI.UIDataGridView();
  80. this.tabPage7 = new System.Windows.Forms.TabPage();
  81. this.dgvCenterSettlRec = new Sunny.UI.UIDataGridView();
  82. this.tabPage8 = new System.Windows.Forms.TabPage();
  83. this.rtbCheckDetailLog = new Sunny.UI.UIRichTextBox();
  84. this.uiTabControl2 = new Sunny.UI.UITabControl();
  85. this.tabPage4 = new System.Windows.Forms.TabPage();
  86. this.dgvSettlSummary = new Sunny.UI.UIDataGridView();
  87. this.cmsCheck = new Sunny.UI.UIContextMenuStrip();
  88. this.tsmCheck_Single = new System.Windows.Forms.ToolStripMenuItem();
  89. this.tsmCheckDetail_Single = new System.Windows.Forms.ToolStripMenuItem();
  90. this.tsmCheck_Batch = new System.Windows.Forms.ToolStripMenuItem();
  91. this.tsmCheckDetail_Batch = new System.Windows.Forms.ToolStripMenuItem();
  92. this.tsmHisRecord = new System.Windows.Forms.ToolStripMenuItem();
  93. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  94. this.tsmAICheck = new System.Windows.Forms.ToolStripMenuItem();
  95. this.导出TXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  96. this.tsmExport = new System.Windows.Forms.ToolStripMenuItem();
  97. this.tsmCompress = new System.Windows.Forms.ToolStripMenuItem();
  98. this.tsmZIPToSDec = new System.Windows.Forms.ToolStripMenuItem();
  99. this.tsmUploadZIP = new System.Windows.Forms.ToolStripMenuItem();
  100. this.tsm3202 = new System.Windows.Forms.ToolStripMenuItem();
  101. this.tsmDownload = new System.Windows.Forms.ToolStripMenuItem();
  102. this.tsmUnCompress = new System.Windows.Forms.ToolStripMenuItem();
  103. this.tsmImport = new System.Windows.Forms.ToolStripMenuItem();
  104. this.tsmHandCheck = new System.Windows.Forms.ToolStripMenuItem();
  105. this.tabPage5 = new System.Windows.Forms.TabPage();
  106. this.rtbCheckLog = new Sunny.UI.UIRichTextBox();
  107. this.uiPanel1 = new Sunny.UI.UIPanel();
  108. this.tbTmp = new System.Windows.Forms.RichTextBox();
  109. this.gbConditionSet = new Sunny.UI.UIGroupBox();
  110. this.cbxInterface = new Sunny.UI.UIComboBox();
  111. this.tbSettlOption = new Sunny.UI.UITextBox();
  112. this.cbxValid = new Sunny.UI.UIComboBox();
  113. this.uiLabel5 = new Sunny.UI.UILabel();
  114. this.uiLabel4 = new Sunny.UI.UILabel();
  115. this.cbxClrType = new Sunny.UI.UIComboBox();
  116. this.uiLabel3 = new Sunny.UI.UILabel();
  117. this.cbxInsuType = new Sunny.UI.UIComboBox();
  118. this.uiLabel2 = new Sunny.UI.UILabel();
  119. this.uiLabel1 = new Sunny.UI.UILabel();
  120. this.cbgGroupSet = new Sunny.UI.UICheckBoxGroup();
  121. this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
  122. this.uiGroupBox10 = new Sunny.UI.UIGroupBox();
  123. this.uiButton4 = new Sunny.UI.UIButton();
  124. this.uiButton5 = new Sunny.UI.UIButton();
  125. this.Btn_Query = new Sunny.UI.UIButton();
  126. this.btnQuerySettlSummary = new Sunny.UI.UIButton();
  127. this.btnClose = new Sunny.UI.UIButton();
  128. this.btnBatchCheck = new Sunny.UI.UIButton();
  129. this.gbDateTime = new Sunny.UI.UIGroupBox();
  130. this.btnReduceOndDay = new Sunny.UI.UISymbolButton();
  131. this.btnAddOneDay = new Sunny.UI.UISymbolButton();
  132. this.dpED = new Sunny.UI.UIDatetimePicker();
  133. this.dpST = new Sunny.UI.UIDatetimePicker();
  134. this.tabPage10 = new System.Windows.Forms.TabPage();
  135. this.uiPanel7 = new Sunny.UI.UIPanel();
  136. this.uiTabControl6 = new Sunny.UI.UITabControl();
  137. this.tabPage14 = new System.Windows.Forms.TabPage();
  138. this.rtbOthCheckResultRecord = new Sunny.UI.UIRichTextBox();
  139. this.uiTabControl7 = new Sunny.UI.UITabControl();
  140. this.tabPage15 = new System.Windows.Forms.TabPage();
  141. this.dgvOthCheck = new Sunny.UI.UIDataGridView();
  142. this.cmdOthPlcCheck = new Sunny.UI.UIContextMenuStrip();
  143. this.tsmOthPlcCheck = new System.Windows.Forms.ToolStripMenuItem();
  144. this.uiPanel6 = new Sunny.UI.UIPanel();
  145. this.uiGroupBox7 = new Sunny.UI.UIGroupBox();
  146. this.uiTextBox1 = new Sunny.UI.UITextBox();
  147. this.cbxValid_O = new Sunny.UI.UIComboBox();
  148. this.uiLabel12 = new Sunny.UI.UILabel();
  149. this.uiLabel14 = new Sunny.UI.UILabel();
  150. this.cbxClrType_O = new Sunny.UI.UIComboBox();
  151. this.uiLabel15 = new Sunny.UI.UILabel();
  152. this.uiComboBox4 = new Sunny.UI.UIComboBox();
  153. this.uiLabel16 = new Sunny.UI.UILabel();
  154. this.uiGroupBox8 = new Sunny.UI.UIGroupBox();
  155. this.uiButton1 = new Sunny.UI.UIButton();
  156. this.uiButton2 = new Sunny.UI.UIButton();
  157. this.uiButton3 = new Sunny.UI.UIButton();
  158. this.uiGroupBox9 = new Sunny.UI.UIGroupBox();
  159. this.uiSymbolButton1 = new Sunny.UI.UISymbolButton();
  160. this.uiSymbolButton2 = new Sunny.UI.UISymbolButton();
  161. this.dpED_O = new Sunny.UI.UIDatetimePicker();
  162. this.dpST_O = new Sunny.UI.UIDatetimePicker();
  163. this.tabPage2 = new System.Windows.Forms.TabPage();
  164. this.uiPanel4 = new Sunny.UI.UIPanel();
  165. this.uiTabControl4 = new Sunny.UI.UITabControl();
  166. this.tabPage9 = new System.Windows.Forms.TabPage();
  167. this.dgvHisSettlRec_2 = new Sunny.UI.UIDataGridView();
  168. this.uiTabControl5 = new Sunny.UI.UITabControl();
  169. this.tabPage12 = new System.Windows.Forms.TabPage();
  170. this.dgvClearingSum = new Sunny.UI.UIDataGridView();
  171. this.cmsClearing = new Sunny.UI.UIContextMenuStrip();
  172. this.tmsClearing_2 = new System.Windows.Forms.ToolStripMenuItem();
  173. this.tms_Clearing2801A = new System.Windows.Forms.ToolStripMenuItem();
  174. this.tmsHisSettlRecord_2 = new System.Windows.Forms.ToolStripMenuItem();
  175. this.uiPanel3 = new Sunny.UI.UIPanel();
  176. this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
  177. this.tbInsuPlc = new Sunny.UI.UITextBox();
  178. this.uiLabel18 = new Sunny.UI.UILabel();
  179. this.cbOtherPlaceFlag = new Sunny.UI.UIComboBox();
  180. this.uiLabel19 = new Sunny.UI.UILabel();
  181. this.cbClrWay_2 = new Sunny.UI.UIComboBox();
  182. this.uiLabel11 = new Sunny.UI.UILabel();
  183. this.cbInterface_2 = new Sunny.UI.UIComboBox();
  184. this.tbSettlOption_2 = new Sunny.UI.UITextBox();
  185. this.cbValid_2 = new Sunny.UI.UIComboBox();
  186. this.uiLabel6 = new Sunny.UI.UILabel();
  187. this.uiLabel7 = new Sunny.UI.UILabel();
  188. this.cbClrType_2 = new Sunny.UI.UIComboBox();
  189. this.uiLabel8 = new Sunny.UI.UILabel();
  190. this.cbInsutype_2 = new Sunny.UI.UIComboBox();
  191. this.uiLabel9 = new Sunny.UI.UILabel();
  192. this.uiLabel10 = new Sunny.UI.UILabel();
  193. this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
  194. this.btnClose_2 = new Sunny.UI.UIButton();
  195. this.btnPatchClr = new Sunny.UI.UIButton();
  196. this.btnQueryClrSum = new Sunny.UI.UIButton();
  197. this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
  198. this.btnReduceMonth = new Sunny.UI.UISymbolButton();
  199. this.btnAddMonth = new Sunny.UI.UISymbolButton();
  200. this.dpED_2 = new Sunny.UI.UIDatetimePicker();
  201. this.dpST_2 = new Sunny.UI.UIDatetimePicker();
  202. this.tabPage3 = new System.Windows.Forms.TabPage();
  203. this.dgvClearingData = new Sunny.UI.UIDataGridView();
  204. this.uiPanel5 = new Sunny.UI.UIPanel();
  205. this.btnCancleClearing = new Sunny.UI.UIButton();
  206. this.uiGroupBox6 = new Sunny.UI.UIGroupBox();
  207. this.cbInterface_3 = new Sunny.UI.UIComboBox();
  208. this.cbValid_3 = new Sunny.UI.UIComboBox();
  209. this.uiLabel13 = new Sunny.UI.UILabel();
  210. this.uiLabel17 = new Sunny.UI.UILabel();
  211. this.rbgTimeWay = new Sunny.UI.UIRadioButtonGroup();
  212. this.btnClose_3 = new Sunny.UI.UIButton();
  213. this.btnQueryClearing = new Sunny.UI.UIButton();
  214. this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
  215. this.dpED_3 = new Sunny.UI.UIDatetimePicker();
  216. this.dpST_3 = new Sunny.UI.UIDatetimePicker();
  217. this.tabPage11 = new System.Windows.Forms.TabPage();
  218. this.tbQueryData = new Sunny.UI.UITabControl();
  219. this.tabPage13 = new System.Windows.Forms.TabPage();
  220. this.dgv_2804_A = new Sunny.UI.UIDataGridView();
  221. this.tabPage16 = new System.Windows.Forms.TabPage();
  222. this.dgv_2803_A = new Sunny.UI.UIDataGridView();
  223. this.uiPanel8 = new Sunny.UI.UIPanel();
  224. this.uiGroupBox14 = new Sunny.UI.UIGroupBox();
  225. this.cbb_ClrWay = new Sunny.UI.UIComboBox();
  226. this.uiLabel20 = new Sunny.UI.UILabel();
  227. this.tb_Admdvs = new Sunny.UI.UITextBox();
  228. this.uiLabel21 = new Sunny.UI.UILabel();
  229. this.uiComboBox3 = new Sunny.UI.UIComboBox();
  230. this.uiLabel23 = new Sunny.UI.UILabel();
  231. this.rbg_QueryType = new Sunny.UI.UIRadioButtonGroup();
  232. this.uiGroupBox12 = new Sunny.UI.UIGroupBox();
  233. this.uiButton6 = new Sunny.UI.UIButton();
  234. this.btbQuery = new Sunny.UI.UIButton();
  235. this.uiGroupBox13 = new Sunny.UI.UIGroupBox();
  236. this.dt_DateYM = new Sunny.UI.UIDatetimePicker();
  237. this.uiContextMenuStrip1 = new Sunny.UI.UIContextMenuStrip();
  238. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  239. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
  240. this.uiTabControl1.SuspendLayout();
  241. this.tabPage1.SuspendLayout();
  242. this.uiPanel2.SuspendLayout();
  243. this.uiTabControl3.SuspendLayout();
  244. this.tabPage6.SuspendLayout();
  245. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).BeginInit();
  246. this.tabPage7.SuspendLayout();
  247. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).BeginInit();
  248. this.tabPage8.SuspendLayout();
  249. this.uiTabControl2.SuspendLayout();
  250. this.tabPage4.SuspendLayout();
  251. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).BeginInit();
  252. this.cmsCheck.SuspendLayout();
  253. this.tabPage5.SuspendLayout();
  254. this.uiPanel1.SuspendLayout();
  255. this.gbConditionSet.SuspendLayout();
  256. this.uiGroupBox1.SuspendLayout();
  257. this.uiGroupBox10.SuspendLayout();
  258. this.gbDateTime.SuspendLayout();
  259. this.tabPage10.SuspendLayout();
  260. this.uiPanel7.SuspendLayout();
  261. this.uiTabControl6.SuspendLayout();
  262. this.tabPage14.SuspendLayout();
  263. this.uiTabControl7.SuspendLayout();
  264. this.tabPage15.SuspendLayout();
  265. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).BeginInit();
  266. this.cmdOthPlcCheck.SuspendLayout();
  267. this.uiPanel6.SuspendLayout();
  268. this.uiGroupBox7.SuspendLayout();
  269. this.uiGroupBox8.SuspendLayout();
  270. this.uiGroupBox9.SuspendLayout();
  271. this.tabPage2.SuspendLayout();
  272. this.uiPanel4.SuspendLayout();
  273. this.uiTabControl4.SuspendLayout();
  274. this.tabPage9.SuspendLayout();
  275. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).BeginInit();
  276. this.uiTabControl5.SuspendLayout();
  277. this.tabPage12.SuspendLayout();
  278. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).BeginInit();
  279. this.cmsClearing.SuspendLayout();
  280. this.uiPanel3.SuspendLayout();
  281. this.uiGroupBox2.SuspendLayout();
  282. this.uiGroupBox3.SuspendLayout();
  283. this.uiGroupBox4.SuspendLayout();
  284. this.tabPage3.SuspendLayout();
  285. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).BeginInit();
  286. this.uiPanel5.SuspendLayout();
  287. this.uiGroupBox6.SuspendLayout();
  288. this.uiGroupBox5.SuspendLayout();
  289. this.tabPage11.SuspendLayout();
  290. this.tbQueryData.SuspendLayout();
  291. this.tabPage13.SuspendLayout();
  292. ((System.ComponentModel.ISupportInitialize)(this.dgv_2804_A)).BeginInit();
  293. this.tabPage16.SuspendLayout();
  294. ((System.ComponentModel.ISupportInitialize)(this.dgv_2803_A)).BeginInit();
  295. this.uiPanel8.SuspendLayout();
  296. this.uiGroupBox14.SuspendLayout();
  297. this.uiGroupBox12.SuspendLayout();
  298. this.uiGroupBox13.SuspendLayout();
  299. this.uiContextMenuStrip1.SuspendLayout();
  300. this.SuspendLayout();
  301. //
  302. // uiTabControl1
  303. //
  304. this.uiTabControl1.Controls.Add(this.tabPage1);
  305. this.uiTabControl1.Controls.Add(this.tabPage10);
  306. this.uiTabControl1.Controls.Add(this.tabPage2);
  307. this.uiTabControl1.Controls.Add(this.tabPage3);
  308. this.uiTabControl1.Controls.Add(this.tabPage11);
  309. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  310. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  311. this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  312. this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 30);
  313. this.uiTabControl1.Location = new System.Drawing.Point(0, 0);
  314. this.uiTabControl1.MainPage = "";
  315. this.uiTabControl1.Name = "uiTabControl1";
  316. this.uiTabControl1.SelectedIndex = 0;
  317. this.uiTabControl1.Size = new System.Drawing.Size(1200, 751);
  318. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  319. this.uiTabControl1.TabIndex = 0;
  320. this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  321. this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  322. //
  323. // tabPage1
  324. //
  325. this.tabPage1.Controls.Add(this.uiPanel2);
  326. this.tabPage1.Controls.Add(this.uiPanel1);
  327. this.tabPage1.Location = new System.Drawing.Point(0, 30);
  328. this.tabPage1.Name = "tabPage1";
  329. this.tabPage1.Size = new System.Drawing.Size(1200, 721);
  330. this.tabPage1.TabIndex = 0;
  331. this.tabPage1.Text = "本地对账";
  332. this.tabPage1.UseVisualStyleBackColor = true;
  333. //
  334. // uiPanel2
  335. //
  336. this.uiPanel2.Controls.Add(this.uiTabControl3);
  337. this.uiPanel2.Controls.Add(this.uiTabControl2);
  338. this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  339. this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  340. this.uiPanel2.Location = new System.Drawing.Point(228, 0);
  341. this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  342. this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
  343. this.uiPanel2.Name = "uiPanel2";
  344. this.uiPanel2.Size = new System.Drawing.Size(972, 721);
  345. this.uiPanel2.TabIndex = 3;
  346. this.uiPanel2.Text = null;
  347. this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  348. this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  349. //
  350. // uiTabControl3
  351. //
  352. this.uiTabControl3.Controls.Add(this.tabPage6);
  353. this.uiTabControl3.Controls.Add(this.tabPage7);
  354. this.uiTabControl3.Controls.Add(this.tabPage8);
  355. this.uiTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
  356. this.uiTabControl3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  357. this.uiTabControl3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  358. this.uiTabControl3.ItemSize = new System.Drawing.Size(150, 25);
  359. this.uiTabControl3.Location = new System.Drawing.Point(0, 424);
  360. this.uiTabControl3.MainPage = "";
  361. this.uiTabControl3.Name = "uiTabControl3";
  362. this.uiTabControl3.SelectedIndex = 0;
  363. this.uiTabControl3.Size = new System.Drawing.Size(972, 297);
  364. this.uiTabControl3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  365. this.uiTabControl3.TabIndex = 1;
  366. this.uiTabControl3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  367. this.uiTabControl3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  368. //
  369. // tabPage6
  370. //
  371. this.tabPage6.Controls.Add(this.dgvHisSettlRec);
  372. this.tabPage6.Location = new System.Drawing.Point(0, 25);
  373. this.tabPage6.Name = "tabPage6";
  374. this.tabPage6.Size = new System.Drawing.Size(972, 272);
  375. this.tabPage6.TabIndex = 0;
  376. this.tabPage6.Text = "HIS结算记录";
  377. this.tabPage6.UseVisualStyleBackColor = true;
  378. //
  379. // dgvHisSettlRec
  380. //
  381. this.dgvHisSettlRec.AllowUserToAddRows = false;
  382. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  383. this.dgvHisSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  384. this.dgvHisSettlRec.BackgroundColor = System.Drawing.Color.White;
  385. this.dgvHisSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  386. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  387. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  388. dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  389. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  390. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  391. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  392. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  393. this.dgvHisSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  394. this.dgvHisSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  395. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  396. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
  397. dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  398. dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  399. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  400. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  401. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  402. this.dgvHisSettlRec.DefaultCellStyle = dataGridViewCellStyle3;
  403. this.dgvHisSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  404. this.dgvHisSettlRec.EnableHeadersVisualStyles = false;
  405. this.dgvHisSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  406. this.dgvHisSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  407. this.dgvHisSettlRec.Location = new System.Drawing.Point(0, 0);
  408. this.dgvHisSettlRec.Name = "dgvHisSettlRec";
  409. this.dgvHisSettlRec.ReadOnly = true;
  410. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  411. dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  412. dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  413. dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  414. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  415. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
  416. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  417. this.dgvHisSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  418. this.dgvHisSettlRec.RowHeadersWidth = 51;
  419. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  420. dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  421. this.dgvHisSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle5;
  422. this.dgvHisSettlRec.RowTemplate.Height = 23;
  423. this.dgvHisSettlRec.SelectedIndex = -1;
  424. this.dgvHisSettlRec.Size = new System.Drawing.Size(972, 272);
  425. this.dgvHisSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  426. this.dgvHisSettlRec.TabIndex = 1;
  427. this.dgvHisSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  428. this.dgvHisSettlRec.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvHisSettlRec_RowStateChanged);
  429. //
  430. // tabPage7
  431. //
  432. this.tabPage7.Controls.Add(this.dgvCenterSettlRec);
  433. this.tabPage7.Location = new System.Drawing.Point(0, 25);
  434. this.tabPage7.Name = "tabPage7";
  435. this.tabPage7.Size = new System.Drawing.Size(972, 272);
  436. this.tabPage7.TabIndex = 1;
  437. this.tabPage7.Text = "中心结算记录";
  438. this.tabPage7.UseVisualStyleBackColor = true;
  439. //
  440. // dgvCenterSettlRec
  441. //
  442. this.dgvCenterSettlRec.AllowUserToAddRows = false;
  443. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  444. this.dgvCenterSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
  445. this.dgvCenterSettlRec.BackgroundColor = System.Drawing.Color.White;
  446. this.dgvCenterSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  447. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  448. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  449. dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  450. dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
  451. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  452. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  453. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  454. this.dgvCenterSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
  455. this.dgvCenterSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  456. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  457. dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
  458. dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  459. dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  460. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  461. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  462. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  463. this.dgvCenterSettlRec.DefaultCellStyle = dataGridViewCellStyle8;
  464. this.dgvCenterSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
  465. this.dgvCenterSettlRec.EnableHeadersVisualStyles = false;
  466. this.dgvCenterSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  467. this.dgvCenterSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  468. this.dgvCenterSettlRec.Location = new System.Drawing.Point(0, 0);
  469. this.dgvCenterSettlRec.Name = "dgvCenterSettlRec";
  470. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  471. dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  472. dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  473. dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  474. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  475. dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.White;
  476. dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  477. this.dgvCenterSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
  478. this.dgvCenterSettlRec.RowHeadersWidth = 51;
  479. dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
  480. dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  481. this.dgvCenterSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle10;
  482. this.dgvCenterSettlRec.RowTemplate.Height = 23;
  483. this.dgvCenterSettlRec.SelectedIndex = -1;
  484. this.dgvCenterSettlRec.Size = new System.Drawing.Size(972, 272);
  485. this.dgvCenterSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  486. this.dgvCenterSettlRec.TabIndex = 1;
  487. this.dgvCenterSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  488. //
  489. // tabPage8
  490. //
  491. this.tabPage8.Controls.Add(this.rtbCheckDetailLog);
  492. this.tabPage8.Location = new System.Drawing.Point(0, 25);
  493. this.tabPage8.Name = "tabPage8";
  494. this.tabPage8.Size = new System.Drawing.Size(972, 272);
  495. this.tabPage8.TabIndex = 2;
  496. this.tabPage8.Text = "对明细账结果记录";
  497. this.tabPage8.UseVisualStyleBackColor = true;
  498. //
  499. // rtbCheckDetailLog
  500. //
  501. this.rtbCheckDetailLog.Dock = System.Windows.Forms.DockStyle.Fill;
  502. this.rtbCheckDetailLog.FillColor = System.Drawing.Color.White;
  503. this.rtbCheckDetailLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  504. this.rtbCheckDetailLog.Location = new System.Drawing.Point(0, 0);
  505. this.rtbCheckDetailLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  506. this.rtbCheckDetailLog.MinimumSize = new System.Drawing.Size(1, 1);
  507. this.rtbCheckDetailLog.Name = "rtbCheckDetailLog";
  508. this.rtbCheckDetailLog.Padding = new System.Windows.Forms.Padding(2);
  509. this.rtbCheckDetailLog.ShowText = false;
  510. this.rtbCheckDetailLog.Size = new System.Drawing.Size(972, 272);
  511. this.rtbCheckDetailLog.Style = Sunny.UI.UIStyle.Custom;
  512. this.rtbCheckDetailLog.TabIndex = 0;
  513. this.rtbCheckDetailLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  514. this.rtbCheckDetailLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  515. //
  516. // uiTabControl2
  517. //
  518. this.uiTabControl2.Controls.Add(this.tabPage4);
  519. this.uiTabControl2.Controls.Add(this.tabPage5);
  520. this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Top;
  521. this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  522. this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  523. this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 25);
  524. this.uiTabControl2.Location = new System.Drawing.Point(0, 0);
  525. this.uiTabControl2.MainPage = "";
  526. this.uiTabControl2.Name = "uiTabControl2";
  527. this.uiTabControl2.SelectedIndex = 0;
  528. this.uiTabControl2.Size = new System.Drawing.Size(972, 424);
  529. this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  530. this.uiTabControl2.TabIndex = 0;
  531. this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  532. this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  533. //
  534. // tabPage4
  535. //
  536. this.tabPage4.Controls.Add(this.dgvSettlSummary);
  537. this.tabPage4.Location = new System.Drawing.Point(0, 25);
  538. this.tabPage4.Name = "tabPage4";
  539. this.tabPage4.Size = new System.Drawing.Size(972, 399);
  540. this.tabPage4.TabIndex = 0;
  541. this.tabPage4.Text = "结算汇总数据";
  542. this.tabPage4.UseVisualStyleBackColor = true;
  543. //
  544. // dgvSettlSummary
  545. //
  546. this.dgvSettlSummary.AllowUserToAddRows = false;
  547. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  548. this.dgvSettlSummary.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle11;
  549. this.dgvSettlSummary.BackgroundColor = System.Drawing.Color.White;
  550. this.dgvSettlSummary.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  551. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  552. dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  553. dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  554. dataGridViewCellStyle12.ForeColor = System.Drawing.Color.White;
  555. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  556. dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  557. dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  558. this.dgvSettlSummary.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
  559. this.dgvSettlSummary.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  560. this.dgvSettlSummary.ContextMenuStrip = this.cmsCheck;
  561. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  562. dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
  563. dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  564. dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  565. dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  566. dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  567. dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  568. this.dgvSettlSummary.DefaultCellStyle = dataGridViewCellStyle13;
  569. this.dgvSettlSummary.Dock = System.Windows.Forms.DockStyle.Fill;
  570. this.dgvSettlSummary.EnableHeadersVisualStyles = false;
  571. this.dgvSettlSummary.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  572. this.dgvSettlSummary.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  573. this.dgvSettlSummary.Location = new System.Drawing.Point(0, 0);
  574. this.dgvSettlSummary.Name = "dgvSettlSummary";
  575. this.dgvSettlSummary.ReadOnly = true;
  576. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  577. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  578. dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  579. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  580. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  581. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.White;
  582. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  583. this.dgvSettlSummary.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
  584. this.dgvSettlSummary.RowHeadersWidth = 30;
  585. this.dgvSettlSummary.RowHeight = 30;
  586. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  587. dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  588. this.dgvSettlSummary.RowsDefaultCellStyle = dataGridViewCellStyle15;
  589. this.dgvSettlSummary.RowTemplate.Height = 30;
  590. this.dgvSettlSummary.SelectedIndex = -1;
  591. this.dgvSettlSummary.Size = new System.Drawing.Size(972, 399);
  592. this.dgvSettlSummary.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  593. this.dgvSettlSummary.TabIndex = 0;
  594. this.dgvSettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  595. this.dgvSettlSummary.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvSettlSummary_RowStateChanged);
  596. //
  597. // cmsCheck
  598. //
  599. this.cmsCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  600. this.cmsCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  601. this.cmsCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  602. this.cmsCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  603. this.tsmCheck_Single,
  604. this.tsmCheckDetail_Single,
  605. this.tsmCheck_Batch,
  606. this.tsmCheckDetail_Batch,
  607. this.tsmHisRecord,
  608. this.toolStripMenuItem1,
  609. this.tsmAICheck,
  610. this.导出TXTToolStripMenuItem});
  611. this.cmsCheck.Name = "cmsCheck";
  612. this.cmsCheck.Size = new System.Drawing.Size(235, 212);
  613. this.cmsCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  614. this.cmsCheck.Opening += new System.ComponentModel.CancelEventHandler(this.cmsCheck_Opening);
  615. //
  616. // tsmCheck_Single
  617. //
  618. this.tsmCheck_Single.Name = "tsmCheck_Single";
  619. this.tsmCheck_Single.Size = new System.Drawing.Size(234, 26);
  620. this.tsmCheck_Single.Text = "单条对总账";
  621. this.tsmCheck_Single.Click += new System.EventHandler(this.tsmCheck_Single_Click);
  622. //
  623. // tsmCheckDetail_Single
  624. //
  625. this.tsmCheckDetail_Single.Name = "tsmCheckDetail_Single";
  626. this.tsmCheckDetail_Single.Size = new System.Drawing.Size(234, 26);
  627. this.tsmCheckDetail_Single.Text = "单条对明细账";
  628. this.tsmCheckDetail_Single.Click += new System.EventHandler(this.tsmCheckDetail_Single_Click);
  629. //
  630. // tsmCheck_Batch
  631. //
  632. this.tsmCheck_Batch.Name = "tsmCheck_Batch";
  633. this.tsmCheck_Batch.Size = new System.Drawing.Size(234, 26);
  634. this.tsmCheck_Batch.Text = "批量对总账";
  635. //
  636. // tsmCheckDetail_Batch
  637. //
  638. this.tsmCheckDetail_Batch.Name = "tsmCheckDetail_Batch";
  639. this.tsmCheckDetail_Batch.Size = new System.Drawing.Size(234, 26);
  640. this.tsmCheckDetail_Batch.Text = "批量对明细账";
  641. this.tsmCheckDetail_Batch.Click += new System.EventHandler(this.tsmCheckDetail_Batch_Click);
  642. //
  643. // tsmHisRecord
  644. //
  645. this.tsmHisRecord.Name = "tsmHisRecord";
  646. this.tsmHisRecord.Size = new System.Drawing.Size(234, 26);
  647. this.tsmHisRecord.Text = "查看HIS记录明细 ";
  648. this.tsmHisRecord.Click += new System.EventHandler(this.tsmHisRecord_Click);
  649. //
  650. // toolStripMenuItem1
  651. //
  652. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  653. this.toolStripMenuItem1.Size = new System.Drawing.Size(234, 26);
  654. this.toolStripMenuItem1.Text = "toolStripMenuItem1";
  655. this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
  656. //
  657. // tsmAICheck
  658. //
  659. this.tsmAICheck.Name = "tsmAICheck";
  660. this.tsmAICheck.Size = new System.Drawing.Size(234, 26);
  661. this.tsmAICheck.Text = "智能比对";
  662. this.tsmAICheck.Click += new System.EventHandler(this.tsmAICheck_Click);
  663. //
  664. // 导出TXTToolStripMenuItem
  665. //
  666. this.导出TXTToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  667. this.tsmExport,
  668. this.tsmCompress,
  669. this.tsmZIPToSDec,
  670. this.tsmUploadZIP,
  671. this.tsm3202,
  672. this.tsmDownload,
  673. this.tsmUnCompress,
  674. this.tsmImport,
  675. this.tsmHandCheck});
  676. this.导出TXTToolStripMenuItem.Name = "导出TXTToolStripMenuItem";
  677. this.导出TXTToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
  678. this.导出TXTToolStripMenuItem.Text = "附属功能";
  679. //
  680. // tsmExport
  681. //
  682. this.tsmExport.Name = "tsmExport";
  683. this.tsmExport.Size = new System.Drawing.Size(217, 26);
  684. this.tsmExport.Text = "导出TXT";
  685. this.tsmExport.Click += new System.EventHandler(this.tsmExport_Click);
  686. //
  687. // tsmCompress
  688. //
  689. this.tsmCompress.Name = "tsmCompress";
  690. this.tsmCompress.Size = new System.Drawing.Size(217, 26);
  691. this.tsmCompress.Text = "TXT压缩为ZIP";
  692. this.tsmCompress.Click += new System.EventHandler(this.tsmCompress_Click);
  693. //
  694. // tsmZIPToSDec
  695. //
  696. this.tsmZIPToSDec.Name = "tsmZIPToSDec";
  697. this.tsmZIPToSDec.Size = new System.Drawing.Size(217, 26);
  698. this.tsmZIPToSDec.Text = "ZIP转为有符号整数";
  699. this.tsmZIPToSDec.Click += new System.EventHandler(this.tsmZIPToSDec_Click);
  700. //
  701. // tsmUploadZIP
  702. //
  703. this.tsmUploadZIP.Name = "tsmUploadZIP";
  704. this.tsmUploadZIP.Size = new System.Drawing.Size(217, 26);
  705. this.tsmUploadZIP.Text = "上传ZIP";
  706. this.tsmUploadZIP.Click += new System.EventHandler(this.tsmUploadZIP_Click);
  707. //
  708. // tsm3202
  709. //
  710. this.tsm3202.Name = "tsm3202";
  711. this.tsm3202.Size = new System.Drawing.Size(217, 26);
  712. this.tsm3202.Text = "明细对账(3202)";
  713. this.tsm3202.Click += new System.EventHandler(this.tsm3202_Click);
  714. //
  715. // tsmDownload
  716. //
  717. this.tsmDownload.Name = "tsmDownload";
  718. this.tsmDownload.Size = new System.Drawing.Size(217, 26);
  719. this.tsmDownload.Text = "下载文件";
  720. this.tsmDownload.Click += new System.EventHandler(this.tsmDownload_Click);
  721. //
  722. // tsmUnCompress
  723. //
  724. this.tsmUnCompress.Name = "tsmUnCompress";
  725. this.tsmUnCompress.Size = new System.Drawing.Size(217, 26);
  726. this.tsmUnCompress.Text = "解压文件";
  727. this.tsmUnCompress.Click += new System.EventHandler(this.tsmUnCompress_Click);
  728. //
  729. // tsmImport
  730. //
  731. this.tsmImport.Name = "tsmImport";
  732. this.tsmImport.Size = new System.Drawing.Size(217, 26);
  733. this.tsmImport.Text = "导入文件";
  734. this.tsmImport.Click += new System.EventHandler(this.tsmImport_Click);
  735. //
  736. // tsmHandCheck
  737. //
  738. this.tsmHandCheck.Name = "tsmHandCheck";
  739. this.tsmHandCheck.Size = new System.Drawing.Size(217, 26);
  740. this.tsmHandCheck.Text = "手工对账";
  741. this.tsmHandCheck.Click += new System.EventHandler(this.tsmHandCheck_Click);
  742. //
  743. // tabPage5
  744. //
  745. this.tabPage5.Controls.Add(this.rtbCheckLog);
  746. this.tabPage5.Location = new System.Drawing.Point(0, 25);
  747. this.tabPage5.Name = "tabPage5";
  748. this.tabPage5.Size = new System.Drawing.Size(972, 399);
  749. this.tabPage5.TabIndex = 1;
  750. this.tabPage5.Text = "对总账结果记录";
  751. this.tabPage5.UseVisualStyleBackColor = true;
  752. //
  753. // rtbCheckLog
  754. //
  755. this.rtbCheckLog.Dock = System.Windows.Forms.DockStyle.Fill;
  756. this.rtbCheckLog.FillColor = System.Drawing.Color.White;
  757. this.rtbCheckLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  758. this.rtbCheckLog.Location = new System.Drawing.Point(0, 0);
  759. this.rtbCheckLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  760. this.rtbCheckLog.MinimumSize = new System.Drawing.Size(1, 1);
  761. this.rtbCheckLog.Name = "rtbCheckLog";
  762. this.rtbCheckLog.Padding = new System.Windows.Forms.Padding(2);
  763. this.rtbCheckLog.ShowText = false;
  764. this.rtbCheckLog.Size = new System.Drawing.Size(972, 399);
  765. this.rtbCheckLog.Style = Sunny.UI.UIStyle.Custom;
  766. this.rtbCheckLog.TabIndex = 1;
  767. this.rtbCheckLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  768. this.rtbCheckLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  769. //
  770. // uiPanel1
  771. //
  772. this.uiPanel1.Controls.Add(this.tbTmp);
  773. this.uiPanel1.Controls.Add(this.gbConditionSet);
  774. this.uiPanel1.Controls.Add(this.cbgGroupSet);
  775. this.uiPanel1.Controls.Add(this.uiGroupBox1);
  776. this.uiPanel1.Controls.Add(this.gbDateTime);
  777. this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
  778. this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  779. this.uiPanel1.Location = new System.Drawing.Point(0, 0);
  780. this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  781. this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
  782. this.uiPanel1.Name = "uiPanel1";
  783. this.uiPanel1.Size = new System.Drawing.Size(228, 721);
  784. this.uiPanel1.TabIndex = 2;
  785. this.uiPanel1.Text = null;
  786. this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  787. this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  788. //
  789. // tbTmp
  790. //
  791. this.tbTmp.Dock = System.Windows.Forms.DockStyle.Top;
  792. this.tbTmp.Location = new System.Drawing.Point(0, 493);
  793. this.tbTmp.Name = "tbTmp";
  794. this.tbTmp.Size = new System.Drawing.Size(228, 107);
  795. this.tbTmp.TabIndex = 31;
  796. this.tbTmp.Text = "";
  797. //
  798. // gbConditionSet
  799. //
  800. this.gbConditionSet.Controls.Add(this.cbxInterface);
  801. this.gbConditionSet.Controls.Add(this.tbSettlOption);
  802. this.gbConditionSet.Controls.Add(this.cbxValid);
  803. this.gbConditionSet.Controls.Add(this.uiLabel5);
  804. this.gbConditionSet.Controls.Add(this.uiLabel4);
  805. this.gbConditionSet.Controls.Add(this.cbxClrType);
  806. this.gbConditionSet.Controls.Add(this.uiLabel3);
  807. this.gbConditionSet.Controls.Add(this.cbxInsuType);
  808. this.gbConditionSet.Controls.Add(this.uiLabel2);
  809. this.gbConditionSet.Controls.Add(this.uiLabel1);
  810. this.gbConditionSet.Dock = System.Windows.Forms.DockStyle.Top;
  811. this.gbConditionSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  812. this.gbConditionSet.Location = new System.Drawing.Point(0, 267);
  813. this.gbConditionSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  814. this.gbConditionSet.MinimumSize = new System.Drawing.Size(1, 1);
  815. this.gbConditionSet.Name = "gbConditionSet";
  816. this.gbConditionSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  817. this.gbConditionSet.Size = new System.Drawing.Size(228, 226);
  818. this.gbConditionSet.TabIndex = 24;
  819. this.gbConditionSet.TabStop = false;
  820. this.gbConditionSet.Text = "条件设置";
  821. this.gbConditionSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  822. this.gbConditionSet.TitleTop = 10;
  823. this.gbConditionSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  824. //
  825. // cbxInterface
  826. //
  827. this.cbxInterface.DataSource = null;
  828. this.cbxInterface.FillColor = System.Drawing.Color.White;
  829. this.cbxInterface.FilterMaxCount = 50;
  830. this.cbxInterface.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  831. this.cbxInterface.ItemHeight = 20;
  832. this.cbxInterface.Items.AddRange(new object[] {
  833. "1",
  834. "2"});
  835. this.cbxInterface.Location = new System.Drawing.Point(67, 30);
  836. this.cbxInterface.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  837. this.cbxInterface.MinimumSize = new System.Drawing.Size(63, 0);
  838. this.cbxInterface.Name = "cbxInterface";
  839. this.cbxInterface.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  840. this.cbxInterface.Size = new System.Drawing.Size(153, 25);
  841. this.cbxInterface.TabIndex = 11;
  842. this.cbxInterface.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  843. this.cbxInterface.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  844. //
  845. // tbSettlOption
  846. //
  847. this.tbSettlOption.Cursor = System.Windows.Forms.Cursors.IBeam;
  848. this.tbSettlOption.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  849. this.tbSettlOption.Location = new System.Drawing.Point(67, 144);
  850. this.tbSettlOption.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  851. this.tbSettlOption.MinimumSize = new System.Drawing.Size(1, 16);
  852. this.tbSettlOption.Name = "tbSettlOption";
  853. this.tbSettlOption.ShowText = false;
  854. this.tbSettlOption.Size = new System.Drawing.Size(153, 25);
  855. this.tbSettlOption.TabIndex = 10;
  856. this.tbSettlOption.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  857. this.tbSettlOption.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  858. //
  859. // cbxValid
  860. //
  861. this.cbxValid.DataSource = null;
  862. this.cbxValid.FillColor = System.Drawing.Color.White;
  863. this.cbxValid.FilterMaxCount = 50;
  864. this.cbxValid.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  865. this.cbxValid.ItemHeight = 20;
  866. this.cbxValid.Items.AddRange(new object[] {
  867. "全部",
  868. "有效",
  869. "无效"});
  870. this.cbxValid.Location = new System.Drawing.Point(67, 182);
  871. this.cbxValid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  872. this.cbxValid.MinimumSize = new System.Drawing.Size(63, 0);
  873. this.cbxValid.Name = "cbxValid";
  874. this.cbxValid.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  875. this.cbxValid.Size = new System.Drawing.Size(153, 25);
  876. this.cbxValid.TabIndex = 9;
  877. this.cbxValid.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  878. this.cbxValid.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  879. //
  880. // uiLabel5
  881. //
  882. this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  883. this.uiLabel5.Location = new System.Drawing.Point(4, 185);
  884. this.uiLabel5.Name = "uiLabel5";
  885. this.uiLabel5.Size = new System.Drawing.Size(78, 23);
  886. this.uiLabel5.TabIndex = 8;
  887. this.uiLabel5.Text = "有效标志";
  888. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  889. this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  890. //
  891. // uiLabel4
  892. //
  893. this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  894. this.uiLabel4.Location = new System.Drawing.Point(4, 147);
  895. this.uiLabel4.Name = "uiLabel4";
  896. this.uiLabel4.Size = new System.Drawing.Size(78, 23);
  897. this.uiLabel4.TabIndex = 6;
  898. this.uiLabel4.Text = "经办机构";
  899. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  900. this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  901. //
  902. // cbxClrType
  903. //
  904. this.cbxClrType.DataSource = null;
  905. this.cbxClrType.FillColor = System.Drawing.Color.White;
  906. this.cbxClrType.FilterMaxCount = 50;
  907. this.cbxClrType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  908. this.cbxClrType.ItemHeight = 20;
  909. this.cbxClrType.Items.AddRange(new object[] {
  910. "1",
  911. "2"});
  912. this.cbxClrType.Location = new System.Drawing.Point(67, 106);
  913. this.cbxClrType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  914. this.cbxClrType.MinimumSize = new System.Drawing.Size(63, 0);
  915. this.cbxClrType.Name = "cbxClrType";
  916. this.cbxClrType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  917. this.cbxClrType.Size = new System.Drawing.Size(153, 25);
  918. this.cbxClrType.TabIndex = 5;
  919. this.cbxClrType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  920. this.cbxClrType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  921. //
  922. // uiLabel3
  923. //
  924. this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  925. this.uiLabel3.Location = new System.Drawing.Point(4, 109);
  926. this.uiLabel3.Name = "uiLabel3";
  927. this.uiLabel3.Size = new System.Drawing.Size(78, 23);
  928. this.uiLabel3.TabIndex = 4;
  929. this.uiLabel3.Text = "清算类别";
  930. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  931. this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  932. //
  933. // cbxInsuType
  934. //
  935. this.cbxInsuType.DataSource = null;
  936. this.cbxInsuType.FillColor = System.Drawing.Color.White;
  937. this.cbxInsuType.FilterMaxCount = 50;
  938. this.cbxInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  939. this.cbxInsuType.ItemHeight = 20;
  940. this.cbxInsuType.Items.AddRange(new object[] {
  941. "1",
  942. "2"});
  943. this.cbxInsuType.Location = new System.Drawing.Point(67, 68);
  944. this.cbxInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  945. this.cbxInsuType.MinimumSize = new System.Drawing.Size(63, 0);
  946. this.cbxInsuType.Name = "cbxInsuType";
  947. this.cbxInsuType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  948. this.cbxInsuType.Size = new System.Drawing.Size(153, 25);
  949. this.cbxInsuType.TabIndex = 3;
  950. this.cbxInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  951. this.cbxInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  952. //
  953. // uiLabel2
  954. //
  955. this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  956. this.uiLabel2.Location = new System.Drawing.Point(4, 71);
  957. this.uiLabel2.Name = "uiLabel2";
  958. this.uiLabel2.Size = new System.Drawing.Size(78, 23);
  959. this.uiLabel2.TabIndex = 2;
  960. this.uiLabel2.Text = "险种类型";
  961. this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  962. this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  963. //
  964. // uiLabel1
  965. //
  966. this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  967. this.uiLabel1.Location = new System.Drawing.Point(4, 33);
  968. this.uiLabel1.Name = "uiLabel1";
  969. this.uiLabel1.Size = new System.Drawing.Size(78, 23);
  970. this.uiLabel1.TabIndex = 0;
  971. this.uiLabel1.Text = "接口目录";
  972. this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  973. this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  974. //
  975. // cbgGroupSet
  976. //
  977. this.cbgGroupSet.Dock = System.Windows.Forms.DockStyle.Top;
  978. this.cbgGroupSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  979. this.cbgGroupSet.Items.AddRange(new object[] {
  980. "接 口",
  981. "险 种 类 型",
  982. "清 算 类 别",
  983. "经 办 机 构",
  984. "单 据 类 型"});
  985. this.cbgGroupSet.ItemSize = new System.Drawing.Size(150, 25);
  986. this.cbgGroupSet.Location = new System.Drawing.Point(0, 112);
  987. this.cbgGroupSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  988. this.cbgGroupSet.MinimumSize = new System.Drawing.Size(1, 1);
  989. this.cbgGroupSet.Name = "cbgGroupSet";
  990. this.cbgGroupSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  991. this.cbgGroupSet.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Top;
  992. this.cbgGroupSet.SelectedIndexes = ((System.Collections.Generic.List<int>)(resources.GetObject("cbgGroupSet.SelectedIndexes")));
  993. this.cbgGroupSet.Size = new System.Drawing.Size(228, 155);
  994. this.cbgGroupSet.TabIndex = 25;
  995. this.cbgGroupSet.Text = "分组设置";
  996. this.cbgGroupSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  997. this.cbgGroupSet.TitleTop = 10;
  998. this.cbgGroupSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  999. //
  1000. // uiGroupBox1
  1001. //
  1002. this.uiGroupBox1.Controls.Add(this.uiGroupBox10);
  1003. this.uiGroupBox1.Controls.Add(this.btnQuerySettlSummary);
  1004. this.uiGroupBox1.Controls.Add(this.btnClose);
  1005. this.uiGroupBox1.Controls.Add(this.btnBatchCheck);
  1006. this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1007. this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1008. this.uiGroupBox1.Location = new System.Drawing.Point(0, 112);
  1009. this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1010. this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
  1011. this.uiGroupBox1.Name = "uiGroupBox1";
  1012. this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1013. this.uiGroupBox1.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1014. this.uiGroupBox1.RectSize = 2;
  1015. this.uiGroupBox1.Size = new System.Drawing.Size(228, 609);
  1016. this.uiGroupBox1.TabIndex = 22;
  1017. this.uiGroupBox1.Text = null;
  1018. this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1019. this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1020. //
  1021. // uiGroupBox10
  1022. //
  1023. this.uiGroupBox10.Controls.Add(this.uiButton4);
  1024. this.uiGroupBox10.Controls.Add(this.uiButton5);
  1025. this.uiGroupBox10.Controls.Add(this.Btn_Query);
  1026. this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Bottom;
  1027. this.uiGroupBox10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1028. this.uiGroupBox10.Location = new System.Drawing.Point(0, 496);
  1029. this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1030. this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
  1031. this.uiGroupBox10.Name = "uiGroupBox10";
  1032. this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1033. this.uiGroupBox10.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1034. this.uiGroupBox10.RectSize = 2;
  1035. this.uiGroupBox10.Size = new System.Drawing.Size(228, 113);
  1036. this.uiGroupBox10.TabIndex = 34;
  1037. this.uiGroupBox10.Text = null;
  1038. this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1039. this.uiGroupBox10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1040. //
  1041. // uiButton4
  1042. //
  1043. this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1044. | System.Windows.Forms.AnchorStyles.Right)));
  1045. this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
  1046. this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1047. this.uiButton4.Location = new System.Drawing.Point(30, 75);
  1048. this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
  1049. this.uiButton4.Name = "uiButton4";
  1050. this.uiButton4.Size = new System.Drawing.Size(164, 33);
  1051. this.uiButton4.TabIndex = 2;
  1052. this.uiButton4.Text = "退出";
  1053. this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1054. this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1055. this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
  1056. //
  1057. // uiButton5
  1058. //
  1059. this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1060. | System.Windows.Forms.AnchorStyles.Right)));
  1061. this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
  1062. this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1063. this.uiButton5.Location = new System.Drawing.Point(30, 39);
  1064. this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
  1065. this.uiButton5.Name = "uiButton5";
  1066. this.uiButton5.Size = new System.Drawing.Size(164, 33);
  1067. this.uiButton5.TabIndex = 1;
  1068. this.uiButton5.Text = "批量对总账";
  1069. this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1070. this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1071. //
  1072. // Btn_Query
  1073. //
  1074. this.Btn_Query.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1075. | System.Windows.Forms.AnchorStyles.Right)));
  1076. this.Btn_Query.Cursor = System.Windows.Forms.Cursors.Hand;
  1077. this.Btn_Query.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1078. this.Btn_Query.Location = new System.Drawing.Point(30, 3);
  1079. this.Btn_Query.MinimumSize = new System.Drawing.Size(1, 1);
  1080. this.Btn_Query.Name = "Btn_Query";
  1081. this.Btn_Query.Size = new System.Drawing.Size(164, 33);
  1082. this.Btn_Query.TabIndex = 0;
  1083. this.Btn_Query.Text = "查询汇总数据";
  1084. this.Btn_Query.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1085. this.Btn_Query.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1086. this.Btn_Query.Click += new System.EventHandler(this.Btn_Query_Click);
  1087. //
  1088. // btnQuerySettlSummary
  1089. //
  1090. this.btnQuerySettlSummary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1091. this.btnQuerySettlSummary.Cursor = System.Windows.Forms.Cursors.Hand;
  1092. this.btnQuerySettlSummary.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1093. this.btnQuerySettlSummary.Location = new System.Drawing.Point(34, 674);
  1094. this.btnQuerySettlSummary.MinimumSize = new System.Drawing.Size(1, 1);
  1095. this.btnQuerySettlSummary.Name = "btnQuerySettlSummary";
  1096. this.btnQuerySettlSummary.Size = new System.Drawing.Size(168, 27);
  1097. this.btnQuerySettlSummary.TabIndex = 33;
  1098. this.btnQuerySettlSummary.Text = "查询汇总数据";
  1099. this.btnQuerySettlSummary.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1100. this.btnQuerySettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1101. //
  1102. // btnClose
  1103. //
  1104. this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1105. this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
  1106. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1107. this.btnClose.Location = new System.Drawing.Point(34, 783);
  1108. this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
  1109. this.btnClose.Name = "btnClose";
  1110. this.btnClose.Size = new System.Drawing.Size(168, 27);
  1111. this.btnClose.TabIndex = 2;
  1112. this.btnClose.Text = "退 出";
  1113. this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1114. this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1115. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  1116. //
  1117. // btnBatchCheck
  1118. //
  1119. this.btnBatchCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  1120. this.btnBatchCheck.Cursor = System.Windows.Forms.Cursors.Hand;
  1121. this.btnBatchCheck.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1122. this.btnBatchCheck.Location = new System.Drawing.Point(34, 734);
  1123. this.btnBatchCheck.MinimumSize = new System.Drawing.Size(1, 1);
  1124. this.btnBatchCheck.Name = "btnBatchCheck";
  1125. this.btnBatchCheck.Size = new System.Drawing.Size(168, 27);
  1126. this.btnBatchCheck.TabIndex = 1;
  1127. this.btnBatchCheck.Text = "批量对总账";
  1128. this.btnBatchCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1129. this.btnBatchCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1130. this.btnBatchCheck.Click += new System.EventHandler(this.btnBatchCheck_Click);
  1131. //
  1132. // gbDateTime
  1133. //
  1134. this.gbDateTime.Controls.Add(this.btnReduceOndDay);
  1135. this.gbDateTime.Controls.Add(this.btnAddOneDay);
  1136. this.gbDateTime.Controls.Add(this.dpED);
  1137. this.gbDateTime.Controls.Add(this.dpST);
  1138. this.gbDateTime.Dock = System.Windows.Forms.DockStyle.Top;
  1139. this.gbDateTime.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1140. this.gbDateTime.Location = new System.Drawing.Point(0, 0);
  1141. this.gbDateTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1142. this.gbDateTime.MinimumSize = new System.Drawing.Size(1, 1);
  1143. this.gbDateTime.Name = "gbDateTime";
  1144. this.gbDateTime.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1145. this.gbDateTime.Size = new System.Drawing.Size(228, 112);
  1146. this.gbDateTime.TabIndex = 21;
  1147. this.gbDateTime.Text = "起止时间";
  1148. this.gbDateTime.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1149. this.gbDateTime.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1150. //
  1151. // btnReduceOndDay
  1152. //
  1153. this.btnReduceOndDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1154. this.btnReduceOndDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1155. this.btnReduceOndDay.Location = new System.Drawing.Point(160, 3);
  1156. this.btnReduceOndDay.MinimumSize = new System.Drawing.Size(1, 1);
  1157. this.btnReduceOndDay.Name = "btnReduceOndDay";
  1158. this.btnReduceOndDay.Size = new System.Drawing.Size(38, 23);
  1159. this.btnReduceOndDay.Symbol = 61544;
  1160. this.btnReduceOndDay.TabIndex = 3;
  1161. this.btnReduceOndDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1162. this.btnReduceOndDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1163. this.btnReduceOndDay.Click += new System.EventHandler(this.btnReduceOndDay_Click);
  1164. //
  1165. // btnAddOneDay
  1166. //
  1167. this.btnAddOneDay.Cursor = System.Windows.Forms.Cursors.Hand;
  1168. this.btnAddOneDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1169. this.btnAddOneDay.Location = new System.Drawing.Point(116, 3);
  1170. this.btnAddOneDay.MinimumSize = new System.Drawing.Size(1, 1);
  1171. this.btnAddOneDay.Name = "btnAddOneDay";
  1172. this.btnAddOneDay.Size = new System.Drawing.Size(38, 23);
  1173. this.btnAddOneDay.Symbol = 61543;
  1174. this.btnAddOneDay.TabIndex = 2;
  1175. this.btnAddOneDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1176. this.btnAddOneDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1177. this.btnAddOneDay.Click += new System.EventHandler(this.btnAddOneDay_Click);
  1178. //
  1179. // dpED
  1180. //
  1181. this.dpED.FillColor = System.Drawing.Color.White;
  1182. this.dpED.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1183. this.dpED.Location = new System.Drawing.Point(17, 70);
  1184. this.dpED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1185. this.dpED.MaxLength = 19;
  1186. this.dpED.MinimumSize = new System.Drawing.Size(63, 0);
  1187. this.dpED.Name = "dpED";
  1188. this.dpED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1189. this.dpED.Size = new System.Drawing.Size(185, 29);
  1190. this.dpED.SymbolDropDown = 61555;
  1191. this.dpED.SymbolNormal = 61555;
  1192. this.dpED.TabIndex = 1;
  1193. this.dpED.Text = "2022-11-01 23:59:59";
  1194. this.dpED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1195. this.dpED.Value = new System.DateTime(2022, 11, 1, 23, 59, 59, 0);
  1196. this.dpED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1197. //
  1198. // dpST
  1199. //
  1200. this.dpST.FillColor = System.Drawing.Color.White;
  1201. this.dpST.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1202. this.dpST.Location = new System.Drawing.Point(17, 31);
  1203. this.dpST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1204. this.dpST.MaxLength = 19;
  1205. this.dpST.MinimumSize = new System.Drawing.Size(63, 0);
  1206. this.dpST.Name = "dpST";
  1207. this.dpST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1208. this.dpST.Size = new System.Drawing.Size(185, 29);
  1209. this.dpST.SymbolDropDown = 61555;
  1210. this.dpST.SymbolNormal = 61555;
  1211. this.dpST.TabIndex = 0;
  1212. this.dpST.Text = "2022-06-01 00:00:00";
  1213. this.dpST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1214. this.dpST.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1215. this.dpST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1216. //
  1217. // tabPage10
  1218. //
  1219. this.tabPage10.Controls.Add(this.uiPanel7);
  1220. this.tabPage10.Controls.Add(this.uiPanel6);
  1221. this.tabPage10.Location = new System.Drawing.Point(0, 30);
  1222. this.tabPage10.Name = "tabPage10";
  1223. this.tabPage10.Size = new System.Drawing.Size(1200, 721);
  1224. this.tabPage10.TabIndex = 3;
  1225. this.tabPage10.Text = "异地对账";
  1226. this.tabPage10.UseVisualStyleBackColor = true;
  1227. //
  1228. // uiPanel7
  1229. //
  1230. this.uiPanel7.Controls.Add(this.uiTabControl6);
  1231. this.uiPanel7.Controls.Add(this.uiTabControl7);
  1232. this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
  1233. this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1234. this.uiPanel7.Location = new System.Drawing.Point(217, 0);
  1235. this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1236. this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
  1237. this.uiPanel7.Name = "uiPanel7";
  1238. this.uiPanel7.Size = new System.Drawing.Size(983, 721);
  1239. this.uiPanel7.TabIndex = 4;
  1240. this.uiPanel7.Text = null;
  1241. this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1242. this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1243. //
  1244. // uiTabControl6
  1245. //
  1246. this.uiTabControl6.Controls.Add(this.tabPage14);
  1247. this.uiTabControl6.Dock = System.Windows.Forms.DockStyle.Fill;
  1248. this.uiTabControl6.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1249. this.uiTabControl6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1250. this.uiTabControl6.ItemSize = new System.Drawing.Size(150, 25);
  1251. this.uiTabControl6.Location = new System.Drawing.Point(0, 424);
  1252. this.uiTabControl6.MainPage = "";
  1253. this.uiTabControl6.Name = "uiTabControl6";
  1254. this.uiTabControl6.SelectedIndex = 0;
  1255. this.uiTabControl6.Size = new System.Drawing.Size(983, 297);
  1256. this.uiTabControl6.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1257. this.uiTabControl6.TabIndex = 1;
  1258. this.uiTabControl6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1259. this.uiTabControl6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1260. //
  1261. // tabPage14
  1262. //
  1263. this.tabPage14.Controls.Add(this.rtbOthCheckResultRecord);
  1264. this.tabPage14.Location = new System.Drawing.Point(0, 25);
  1265. this.tabPage14.Name = "tabPage14";
  1266. this.tabPage14.Size = new System.Drawing.Size(983, 272);
  1267. this.tabPage14.TabIndex = 2;
  1268. this.tabPage14.Text = "对账结果记录";
  1269. this.tabPage14.UseVisualStyleBackColor = true;
  1270. //
  1271. // rtbOthCheckResultRecord
  1272. //
  1273. this.rtbOthCheckResultRecord.Dock = System.Windows.Forms.DockStyle.Fill;
  1274. this.rtbOthCheckResultRecord.FillColor = System.Drawing.Color.White;
  1275. this.rtbOthCheckResultRecord.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1276. this.rtbOthCheckResultRecord.Location = new System.Drawing.Point(0, 0);
  1277. this.rtbOthCheckResultRecord.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1278. this.rtbOthCheckResultRecord.MinimumSize = new System.Drawing.Size(1, 1);
  1279. this.rtbOthCheckResultRecord.Name = "rtbOthCheckResultRecord";
  1280. this.rtbOthCheckResultRecord.Padding = new System.Windows.Forms.Padding(2);
  1281. this.rtbOthCheckResultRecord.ShowText = false;
  1282. this.rtbOthCheckResultRecord.Size = new System.Drawing.Size(983, 272);
  1283. this.rtbOthCheckResultRecord.Style = Sunny.UI.UIStyle.Custom;
  1284. this.rtbOthCheckResultRecord.TabIndex = 0;
  1285. this.rtbOthCheckResultRecord.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1286. this.rtbOthCheckResultRecord.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1287. //
  1288. // uiTabControl7
  1289. //
  1290. this.uiTabControl7.Controls.Add(this.tabPage15);
  1291. this.uiTabControl7.Dock = System.Windows.Forms.DockStyle.Top;
  1292. this.uiTabControl7.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1293. this.uiTabControl7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1294. this.uiTabControl7.ItemSize = new System.Drawing.Size(150, 25);
  1295. this.uiTabControl7.Location = new System.Drawing.Point(0, 0);
  1296. this.uiTabControl7.MainPage = "";
  1297. this.uiTabControl7.Name = "uiTabControl7";
  1298. this.uiTabControl7.SelectedIndex = 0;
  1299. this.uiTabControl7.Size = new System.Drawing.Size(983, 424);
  1300. this.uiTabControl7.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1301. this.uiTabControl7.TabIndex = 0;
  1302. this.uiTabControl7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1303. this.uiTabControl7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1304. //
  1305. // tabPage15
  1306. //
  1307. this.tabPage15.Controls.Add(this.dgvOthCheck);
  1308. this.tabPage15.Location = new System.Drawing.Point(0, 25);
  1309. this.tabPage15.Name = "tabPage15";
  1310. this.tabPage15.Size = new System.Drawing.Size(983, 399);
  1311. this.tabPage15.TabIndex = 0;
  1312. this.tabPage15.Text = "结算汇总数据";
  1313. this.tabPage15.UseVisualStyleBackColor = true;
  1314. //
  1315. // dgvOthCheck
  1316. //
  1317. this.dgvOthCheck.AllowUserToAddRows = false;
  1318. dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1319. this.dgvOthCheck.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle16;
  1320. this.dgvOthCheck.BackgroundColor = System.Drawing.Color.White;
  1321. this.dgvOthCheck.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1322. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1323. dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1324. dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1325. dataGridViewCellStyle17.ForeColor = System.Drawing.Color.White;
  1326. dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1327. dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1328. dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1329. this.dgvOthCheck.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle17;
  1330. this.dgvOthCheck.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1331. this.dgvOthCheck.ContextMenuStrip = this.cmdOthPlcCheck;
  1332. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1333. dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
  1334. dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1335. dataGridViewCellStyle18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1336. dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1337. dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1338. dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1339. this.dgvOthCheck.DefaultCellStyle = dataGridViewCellStyle18;
  1340. this.dgvOthCheck.Dock = System.Windows.Forms.DockStyle.Fill;
  1341. this.dgvOthCheck.EnableHeadersVisualStyles = false;
  1342. this.dgvOthCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1343. this.dgvOthCheck.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1344. this.dgvOthCheck.Location = new System.Drawing.Point(0, 0);
  1345. this.dgvOthCheck.Name = "dgvOthCheck";
  1346. this.dgvOthCheck.ReadOnly = true;
  1347. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1348. dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1349. dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1350. dataGridViewCellStyle19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1351. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1352. dataGridViewCellStyle19.SelectionForeColor = System.Drawing.Color.White;
  1353. dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1354. this.dgvOthCheck.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
  1355. this.dgvOthCheck.RowHeadersWidth = 30;
  1356. this.dgvOthCheck.RowHeight = 30;
  1357. dataGridViewCellStyle20.BackColor = System.Drawing.Color.White;
  1358. dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1359. this.dgvOthCheck.RowsDefaultCellStyle = dataGridViewCellStyle20;
  1360. this.dgvOthCheck.RowTemplate.Height = 30;
  1361. this.dgvOthCheck.SelectedIndex = -1;
  1362. this.dgvOthCheck.Size = new System.Drawing.Size(983, 399);
  1363. this.dgvOthCheck.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1364. this.dgvOthCheck.TabIndex = 0;
  1365. this.dgvOthCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1366. this.dgvOthCheck.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvRowStateChanged);
  1367. //
  1368. // cmdOthPlcCheck
  1369. //
  1370. this.cmdOthPlcCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1371. this.cmdOthPlcCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1372. this.cmdOthPlcCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
  1373. this.cmdOthPlcCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1374. this.tsmOthPlcCheck});
  1375. this.cmdOthPlcCheck.Name = "cmsCheck";
  1376. this.cmdOthPlcCheck.Size = new System.Drawing.Size(187, 30);
  1377. this.cmdOthPlcCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1378. //
  1379. // tsmOthPlcCheck
  1380. //
  1381. this.tsmOthPlcCheck.Name = "tsmOthPlcCheck";
  1382. this.tsmOthPlcCheck.Size = new System.Drawing.Size(186, 26);
  1383. this.tsmOthPlcCheck.Text = "单条对账(异地)";
  1384. this.tsmOthPlcCheck.Click += new System.EventHandler(this.tsmOthPlcCheck_Click);
  1385. //
  1386. // uiPanel6
  1387. //
  1388. this.uiPanel6.Controls.Add(this.uiGroupBox7);
  1389. this.uiPanel6.Controls.Add(this.uiGroupBox8);
  1390. this.uiPanel6.Controls.Add(this.uiGroupBox9);
  1391. this.uiPanel6.Dock = System.Windows.Forms.DockStyle.Left;
  1392. this.uiPanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1393. this.uiPanel6.Location = new System.Drawing.Point(0, 0);
  1394. this.uiPanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1395. this.uiPanel6.MinimumSize = new System.Drawing.Size(1, 1);
  1396. this.uiPanel6.Name = "uiPanel6";
  1397. this.uiPanel6.Size = new System.Drawing.Size(217, 721);
  1398. this.uiPanel6.TabIndex = 3;
  1399. this.uiPanel6.Text = null;
  1400. this.uiPanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1401. this.uiPanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1402. //
  1403. // uiGroupBox7
  1404. //
  1405. this.uiGroupBox7.Controls.Add(this.uiTextBox1);
  1406. this.uiGroupBox7.Controls.Add(this.cbxValid_O);
  1407. this.uiGroupBox7.Controls.Add(this.uiLabel12);
  1408. this.uiGroupBox7.Controls.Add(this.uiLabel14);
  1409. this.uiGroupBox7.Controls.Add(this.cbxClrType_O);
  1410. this.uiGroupBox7.Controls.Add(this.uiLabel15);
  1411. this.uiGroupBox7.Controls.Add(this.uiComboBox4);
  1412. this.uiGroupBox7.Controls.Add(this.uiLabel16);
  1413. this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Top;
  1414. this.uiGroupBox7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1415. this.uiGroupBox7.Location = new System.Drawing.Point(0, 112);
  1416. this.uiGroupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1417. this.uiGroupBox7.MinimumSize = new System.Drawing.Size(1, 1);
  1418. this.uiGroupBox7.Name = "uiGroupBox7";
  1419. this.uiGroupBox7.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1420. this.uiGroupBox7.Size = new System.Drawing.Size(217, 198);
  1421. this.uiGroupBox7.TabIndex = 24;
  1422. this.uiGroupBox7.TabStop = false;
  1423. this.uiGroupBox7.Text = "条件设置";
  1424. this.uiGroupBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1425. this.uiGroupBox7.TitleTop = 10;
  1426. this.uiGroupBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1427. //
  1428. // uiTextBox1
  1429. //
  1430. this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
  1431. this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1432. this.uiTextBox1.Location = new System.Drawing.Point(79, 124);
  1433. this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1434. this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
  1435. this.uiTextBox1.Name = "uiTextBox1";
  1436. this.uiTextBox1.ShowText = false;
  1437. this.uiTextBox1.Size = new System.Drawing.Size(130, 25);
  1438. this.uiTextBox1.TabIndex = 10;
  1439. this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1440. this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1441. //
  1442. // cbxValid_O
  1443. //
  1444. this.cbxValid_O.DataSource = null;
  1445. this.cbxValid_O.FillColor = System.Drawing.Color.White;
  1446. this.cbxValid_O.FilterMaxCount = 50;
  1447. this.cbxValid_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1448. this.cbxValid_O.ItemHeight = 20;
  1449. this.cbxValid_O.Items.AddRange(new object[] {
  1450. "全部",
  1451. "有效",
  1452. "无效"});
  1453. this.cbxValid_O.Location = new System.Drawing.Point(79, 157);
  1454. this.cbxValid_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1455. this.cbxValid_O.MinimumSize = new System.Drawing.Size(63, 0);
  1456. this.cbxValid_O.Name = "cbxValid_O";
  1457. this.cbxValid_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1458. this.cbxValid_O.Size = new System.Drawing.Size(130, 25);
  1459. this.cbxValid_O.TabIndex = 9;
  1460. this.cbxValid_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1461. this.cbxValid_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1462. //
  1463. // uiLabel12
  1464. //
  1465. this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1466. this.uiLabel12.Location = new System.Drawing.Point(9, 158);
  1467. this.uiLabel12.Name = "uiLabel12";
  1468. this.uiLabel12.Size = new System.Drawing.Size(63, 23);
  1469. this.uiLabel12.TabIndex = 8;
  1470. this.uiLabel12.Text = "有效标志";
  1471. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1472. this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1473. //
  1474. // uiLabel14
  1475. //
  1476. this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1477. this.uiLabel14.Location = new System.Drawing.Point(9, 125);
  1478. this.uiLabel14.Name = "uiLabel14";
  1479. this.uiLabel14.Size = new System.Drawing.Size(63, 23);
  1480. this.uiLabel14.TabIndex = 6;
  1481. this.uiLabel14.Text = "经办机构";
  1482. this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1483. this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1484. //
  1485. // cbxClrType_O
  1486. //
  1487. this.cbxClrType_O.DataSource = null;
  1488. this.cbxClrType_O.FillColor = System.Drawing.Color.White;
  1489. this.cbxClrType_O.FilterMaxCount = 50;
  1490. this.cbxClrType_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1491. this.cbxClrType_O.ItemHeight = 20;
  1492. this.cbxClrType_O.Items.AddRange(new object[] {
  1493. "1",
  1494. "2"});
  1495. this.cbxClrType_O.Location = new System.Drawing.Point(79, 91);
  1496. this.cbxClrType_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1497. this.cbxClrType_O.MinimumSize = new System.Drawing.Size(63, 0);
  1498. this.cbxClrType_O.Name = "cbxClrType_O";
  1499. this.cbxClrType_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1500. this.cbxClrType_O.Size = new System.Drawing.Size(130, 25);
  1501. this.cbxClrType_O.TabIndex = 5;
  1502. this.cbxClrType_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1503. this.cbxClrType_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1504. //
  1505. // uiLabel15
  1506. //
  1507. this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1508. this.uiLabel15.Location = new System.Drawing.Point(9, 92);
  1509. this.uiLabel15.Name = "uiLabel15";
  1510. this.uiLabel15.Size = new System.Drawing.Size(63, 23);
  1511. this.uiLabel15.TabIndex = 4;
  1512. this.uiLabel15.Text = "清算类别";
  1513. this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1514. this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1515. //
  1516. // uiComboBox4
  1517. //
  1518. this.uiComboBox4.DataSource = null;
  1519. this.uiComboBox4.FillColor = System.Drawing.Color.White;
  1520. this.uiComboBox4.FilterMaxCount = 50;
  1521. this.uiComboBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1522. this.uiComboBox4.ItemHeight = 20;
  1523. this.uiComboBox4.Items.AddRange(new object[] {
  1524. "1",
  1525. "2"});
  1526. this.uiComboBox4.Location = new System.Drawing.Point(79, 58);
  1527. this.uiComboBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1528. this.uiComboBox4.MinimumSize = new System.Drawing.Size(63, 0);
  1529. this.uiComboBox4.Name = "uiComboBox4";
  1530. this.uiComboBox4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1531. this.uiComboBox4.Size = new System.Drawing.Size(130, 25);
  1532. this.uiComboBox4.TabIndex = 3;
  1533. this.uiComboBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1534. this.uiComboBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1535. //
  1536. // uiLabel16
  1537. //
  1538. this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1539. this.uiLabel16.Location = new System.Drawing.Point(9, 59);
  1540. this.uiLabel16.Name = "uiLabel16";
  1541. this.uiLabel16.Size = new System.Drawing.Size(63, 23);
  1542. this.uiLabel16.TabIndex = 2;
  1543. this.uiLabel16.Text = "险种类型";
  1544. this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1545. this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1546. //
  1547. // uiGroupBox8
  1548. //
  1549. this.uiGroupBox8.Controls.Add(this.uiButton1);
  1550. this.uiGroupBox8.Controls.Add(this.uiButton2);
  1551. this.uiGroupBox8.Controls.Add(this.uiButton3);
  1552. this.uiGroupBox8.Dock = System.Windows.Forms.DockStyle.Bottom;
  1553. this.uiGroupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1554. this.uiGroupBox8.Location = new System.Drawing.Point(0, 608);
  1555. this.uiGroupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1556. this.uiGroupBox8.MinimumSize = new System.Drawing.Size(1, 1);
  1557. this.uiGroupBox8.Name = "uiGroupBox8";
  1558. this.uiGroupBox8.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1559. this.uiGroupBox8.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  1560. this.uiGroupBox8.RectSize = 2;
  1561. this.uiGroupBox8.Size = new System.Drawing.Size(217, 113);
  1562. this.uiGroupBox8.TabIndex = 22;
  1563. this.uiGroupBox8.Text = null;
  1564. this.uiGroupBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1565. this.uiGroupBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1566. //
  1567. // uiButton1
  1568. //
  1569. this.uiButton1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1570. | System.Windows.Forms.AnchorStyles.Right)));
  1571. this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1572. this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1573. this.uiButton1.Location = new System.Drawing.Point(19, 77);
  1574. this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1575. this.uiButton1.Name = "uiButton1";
  1576. this.uiButton1.Size = new System.Drawing.Size(177, 33);
  1577. this.uiButton1.TabIndex = 2;
  1578. this.uiButton1.Text = "退出";
  1579. this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1580. this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1581. this.uiButton1.Click += new System.EventHandler(this.btnClose_Click);
  1582. //
  1583. // uiButton2
  1584. //
  1585. this.uiButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1586. | System.Windows.Forms.AnchorStyles.Right)));
  1587. this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1588. this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1589. this.uiButton2.Location = new System.Drawing.Point(19, 42);
  1590. this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1591. this.uiButton2.Name = "uiButton2";
  1592. this.uiButton2.Size = new System.Drawing.Size(177, 33);
  1593. this.uiButton2.TabIndex = 1;
  1594. this.uiButton2.Text = "批量对账";
  1595. this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1596. this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1597. this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
  1598. //
  1599. // uiButton3
  1600. //
  1601. this.uiButton3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  1602. | System.Windows.Forms.AnchorStyles.Right)));
  1603. this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
  1604. this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1605. this.uiButton3.Location = new System.Drawing.Point(19, 7);
  1606. this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
  1607. this.uiButton3.Name = "uiButton3";
  1608. this.uiButton3.Size = new System.Drawing.Size(177, 33);
  1609. this.uiButton3.TabIndex = 0;
  1610. this.uiButton3.Text = "查询结算数据";
  1611. this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1612. this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1613. this.uiButton3.Click += new System.EventHandler(this.uiButton3_Click);
  1614. //
  1615. // uiGroupBox9
  1616. //
  1617. this.uiGroupBox9.Controls.Add(this.uiSymbolButton1);
  1618. this.uiGroupBox9.Controls.Add(this.uiSymbolButton2);
  1619. this.uiGroupBox9.Controls.Add(this.dpED_O);
  1620. this.uiGroupBox9.Controls.Add(this.dpST_O);
  1621. this.uiGroupBox9.Dock = System.Windows.Forms.DockStyle.Top;
  1622. this.uiGroupBox9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1623. this.uiGroupBox9.Location = new System.Drawing.Point(0, 0);
  1624. this.uiGroupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1625. this.uiGroupBox9.MinimumSize = new System.Drawing.Size(1, 1);
  1626. this.uiGroupBox9.Name = "uiGroupBox9";
  1627. this.uiGroupBox9.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  1628. this.uiGroupBox9.Size = new System.Drawing.Size(217, 112);
  1629. this.uiGroupBox9.TabIndex = 21;
  1630. this.uiGroupBox9.Text = "起止时间";
  1631. this.uiGroupBox9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1632. this.uiGroupBox9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1633. //
  1634. // uiSymbolButton1
  1635. //
  1636. this.uiSymbolButton1.Cursor = System.Windows.Forms.Cursors.Hand;
  1637. this.uiSymbolButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1638. this.uiSymbolButton1.Location = new System.Drawing.Point(160, 3);
  1639. this.uiSymbolButton1.MinimumSize = new System.Drawing.Size(1, 1);
  1640. this.uiSymbolButton1.Name = "uiSymbolButton1";
  1641. this.uiSymbolButton1.Size = new System.Drawing.Size(38, 23);
  1642. this.uiSymbolButton1.Symbol = 61544;
  1643. this.uiSymbolButton1.TabIndex = 3;
  1644. this.uiSymbolButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1645. this.uiSymbolButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1646. //
  1647. // uiSymbolButton2
  1648. //
  1649. this.uiSymbolButton2.Cursor = System.Windows.Forms.Cursors.Hand;
  1650. this.uiSymbolButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1651. this.uiSymbolButton2.Location = new System.Drawing.Point(116, 3);
  1652. this.uiSymbolButton2.MinimumSize = new System.Drawing.Size(1, 1);
  1653. this.uiSymbolButton2.Name = "uiSymbolButton2";
  1654. this.uiSymbolButton2.Size = new System.Drawing.Size(38, 23);
  1655. this.uiSymbolButton2.Symbol = 61543;
  1656. this.uiSymbolButton2.TabIndex = 2;
  1657. this.uiSymbolButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1658. this.uiSymbolButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1659. this.uiSymbolButton2.Click += new System.EventHandler(this.uiSymbolButton2_Click);
  1660. //
  1661. // dpED_O
  1662. //
  1663. this.dpED_O.FillColor = System.Drawing.Color.White;
  1664. this.dpED_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1665. this.dpED_O.Location = new System.Drawing.Point(13, 70);
  1666. this.dpED_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1667. this.dpED_O.MaxLength = 19;
  1668. this.dpED_O.MinimumSize = new System.Drawing.Size(63, 0);
  1669. this.dpED_O.Name = "dpED_O";
  1670. this.dpED_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1671. this.dpED_O.Size = new System.Drawing.Size(200, 29);
  1672. this.dpED_O.SymbolDropDown = 61555;
  1673. this.dpED_O.SymbolNormal = 61555;
  1674. this.dpED_O.TabIndex = 1;
  1675. this.dpED_O.Text = "2022-06-01 23:59:59";
  1676. this.dpED_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1677. this.dpED_O.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  1678. this.dpED_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1679. //
  1680. // dpST_O
  1681. //
  1682. this.dpST_O.FillColor = System.Drawing.Color.White;
  1683. this.dpST_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1684. this.dpST_O.Location = new System.Drawing.Point(13, 31);
  1685. this.dpST_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1686. this.dpST_O.MaxLength = 19;
  1687. this.dpST_O.MinimumSize = new System.Drawing.Size(63, 0);
  1688. this.dpST_O.Name = "dpST_O";
  1689. this.dpST_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1690. this.dpST_O.Size = new System.Drawing.Size(200, 29);
  1691. this.dpST_O.SymbolDropDown = 61555;
  1692. this.dpST_O.SymbolNormal = 61555;
  1693. this.dpST_O.TabIndex = 0;
  1694. this.dpST_O.Text = "2022-06-01 00:00:00";
  1695. this.dpST_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1696. this.dpST_O.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  1697. this.dpST_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1698. //
  1699. // tabPage2
  1700. //
  1701. this.tabPage2.Controls.Add(this.uiPanel4);
  1702. this.tabPage2.Controls.Add(this.uiPanel3);
  1703. this.tabPage2.Location = new System.Drawing.Point(0, 30);
  1704. this.tabPage2.Name = "tabPage2";
  1705. this.tabPage2.Size = new System.Drawing.Size(1200, 721);
  1706. this.tabPage2.TabIndex = 1;
  1707. this.tabPage2.Text = "清算汇总";
  1708. this.tabPage2.UseVisualStyleBackColor = true;
  1709. //
  1710. // uiPanel4
  1711. //
  1712. this.uiPanel4.Controls.Add(this.uiTabControl4);
  1713. this.uiPanel4.Controls.Add(this.uiTabControl5);
  1714. this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
  1715. this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1716. this.uiPanel4.Location = new System.Drawing.Point(222, 0);
  1717. this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1718. this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
  1719. this.uiPanel4.Name = "uiPanel4";
  1720. this.uiPanel4.Size = new System.Drawing.Size(978, 721);
  1721. this.uiPanel4.TabIndex = 4;
  1722. this.uiPanel4.Text = null;
  1723. this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1724. this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1725. //
  1726. // uiTabControl4
  1727. //
  1728. this.uiTabControl4.Controls.Add(this.tabPage9);
  1729. this.uiTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
  1730. this.uiTabControl4.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1731. this.uiTabControl4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1732. this.uiTabControl4.ItemSize = new System.Drawing.Size(150, 25);
  1733. this.uiTabControl4.Location = new System.Drawing.Point(0, 424);
  1734. this.uiTabControl4.MainPage = "";
  1735. this.uiTabControl4.Name = "uiTabControl4";
  1736. this.uiTabControl4.SelectedIndex = 0;
  1737. this.uiTabControl4.Size = new System.Drawing.Size(978, 297);
  1738. this.uiTabControl4.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1739. this.uiTabControl4.TabIndex = 1;
  1740. this.uiTabControl4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1741. this.uiTabControl4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1742. //
  1743. // tabPage9
  1744. //
  1745. this.tabPage9.Controls.Add(this.dgvHisSettlRec_2);
  1746. this.tabPage9.Location = new System.Drawing.Point(0, 25);
  1747. this.tabPage9.Name = "tabPage9";
  1748. this.tabPage9.Size = new System.Drawing.Size(978, 272);
  1749. this.tabPage9.TabIndex = 0;
  1750. this.tabPage9.Text = "HIS结算记录";
  1751. this.tabPage9.UseVisualStyleBackColor = true;
  1752. //
  1753. // dgvHisSettlRec_2
  1754. //
  1755. this.dgvHisSettlRec_2.AllowUserToAddRows = false;
  1756. dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1757. this.dgvHisSettlRec_2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle21;
  1758. this.dgvHisSettlRec_2.BackgroundColor = System.Drawing.Color.White;
  1759. this.dgvHisSettlRec_2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1760. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1761. dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1762. dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1763. dataGridViewCellStyle22.ForeColor = System.Drawing.Color.White;
  1764. dataGridViewCellStyle22.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1765. dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1766. dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1767. this.dgvHisSettlRec_2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle22;
  1768. this.dgvHisSettlRec_2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1769. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1770. dataGridViewCellStyle23.BackColor = System.Drawing.SystemColors.Window;
  1771. dataGridViewCellStyle23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1772. dataGridViewCellStyle23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1773. dataGridViewCellStyle23.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1774. dataGridViewCellStyle23.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1775. dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1776. this.dgvHisSettlRec_2.DefaultCellStyle = dataGridViewCellStyle23;
  1777. this.dgvHisSettlRec_2.Dock = System.Windows.Forms.DockStyle.Fill;
  1778. this.dgvHisSettlRec_2.EnableHeadersVisualStyles = false;
  1779. this.dgvHisSettlRec_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1780. this.dgvHisSettlRec_2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1781. this.dgvHisSettlRec_2.Location = new System.Drawing.Point(0, 0);
  1782. this.dgvHisSettlRec_2.Name = "dgvHisSettlRec_2";
  1783. this.dgvHisSettlRec_2.ReadOnly = true;
  1784. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1785. dataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1786. dataGridViewCellStyle24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1787. dataGridViewCellStyle24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1788. dataGridViewCellStyle24.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1789. dataGridViewCellStyle24.SelectionForeColor = System.Drawing.Color.White;
  1790. dataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1791. this.dgvHisSettlRec_2.RowHeadersDefaultCellStyle = dataGridViewCellStyle24;
  1792. this.dgvHisSettlRec_2.RowHeadersWidth = 51;
  1793. dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
  1794. dataGridViewCellStyle25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1795. this.dgvHisSettlRec_2.RowsDefaultCellStyle = dataGridViewCellStyle25;
  1796. this.dgvHisSettlRec_2.RowTemplate.Height = 23;
  1797. this.dgvHisSettlRec_2.SelectedIndex = -1;
  1798. this.dgvHisSettlRec_2.Size = new System.Drawing.Size(978, 272);
  1799. this.dgvHisSettlRec_2.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1800. this.dgvHisSettlRec_2.TabIndex = 1;
  1801. this.dgvHisSettlRec_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1802. //
  1803. // uiTabControl5
  1804. //
  1805. this.uiTabControl5.Controls.Add(this.tabPage12);
  1806. this.uiTabControl5.Dock = System.Windows.Forms.DockStyle.Top;
  1807. this.uiTabControl5.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  1808. this.uiTabControl5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1809. this.uiTabControl5.ItemSize = new System.Drawing.Size(150, 25);
  1810. this.uiTabControl5.Location = new System.Drawing.Point(0, 0);
  1811. this.uiTabControl5.MainPage = "";
  1812. this.uiTabControl5.Name = "uiTabControl5";
  1813. this.uiTabControl5.SelectedIndex = 0;
  1814. this.uiTabControl5.Size = new System.Drawing.Size(978, 424);
  1815. this.uiTabControl5.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  1816. this.uiTabControl5.TabIndex = 0;
  1817. this.uiTabControl5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1818. this.uiTabControl5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1819. //
  1820. // tabPage12
  1821. //
  1822. this.tabPage12.Controls.Add(this.dgvClearingSum);
  1823. this.tabPage12.Location = new System.Drawing.Point(0, 25);
  1824. this.tabPage12.Name = "tabPage12";
  1825. this.tabPage12.Size = new System.Drawing.Size(978, 399);
  1826. this.tabPage12.TabIndex = 0;
  1827. this.tabPage12.Text = "结算汇总数据";
  1828. this.tabPage12.UseVisualStyleBackColor = true;
  1829. //
  1830. // dgvClearingSum
  1831. //
  1832. this.dgvClearingSum.AllowUserToAddRows = false;
  1833. dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1834. this.dgvClearingSum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle26;
  1835. this.dgvClearingSum.BackgroundColor = System.Drawing.Color.White;
  1836. this.dgvClearingSum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  1837. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1838. dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1839. dataGridViewCellStyle27.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1840. dataGridViewCellStyle27.ForeColor = System.Drawing.Color.White;
  1841. dataGridViewCellStyle27.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1842. dataGridViewCellStyle27.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1843. dataGridViewCellStyle27.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1844. this.dgvClearingSum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle27;
  1845. this.dgvClearingSum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1846. this.dgvClearingSum.ContextMenuStrip = this.cmsClearing;
  1847. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1848. dataGridViewCellStyle28.BackColor = System.Drawing.SystemColors.Window;
  1849. dataGridViewCellStyle28.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1850. dataGridViewCellStyle28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1851. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1852. dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1853. dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1854. this.dgvClearingSum.DefaultCellStyle = dataGridViewCellStyle28;
  1855. this.dgvClearingSum.Dock = System.Windows.Forms.DockStyle.Fill;
  1856. this.dgvClearingSum.EnableHeadersVisualStyles = false;
  1857. this.dgvClearingSum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1858. this.dgvClearingSum.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1859. this.dgvClearingSum.Location = new System.Drawing.Point(0, 0);
  1860. this.dgvClearingSum.Name = "dgvClearingSum";
  1861. this.dgvClearingSum.ReadOnly = true;
  1862. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1863. dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1864. dataGridViewCellStyle29.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1865. dataGridViewCellStyle29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1866. dataGridViewCellStyle29.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  1867. dataGridViewCellStyle29.SelectionForeColor = System.Drawing.Color.White;
  1868. dataGridViewCellStyle29.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1869. this.dgvClearingSum.RowHeadersDefaultCellStyle = dataGridViewCellStyle29;
  1870. this.dgvClearingSum.RowHeadersWidth = 30;
  1871. this.dgvClearingSum.RowHeight = 30;
  1872. dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
  1873. dataGridViewCellStyle30.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1874. this.dgvClearingSum.RowsDefaultCellStyle = dataGridViewCellStyle30;
  1875. this.dgvClearingSum.RowTemplate.Height = 30;
  1876. this.dgvClearingSum.SelectedIndex = -1;
  1877. this.dgvClearingSum.Size = new System.Drawing.Size(978, 399);
  1878. this.dgvClearingSum.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1879. this.dgvClearingSum.TabIndex = 0;
  1880. this.dgvClearingSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1881. //
  1882. // cmsClearing
  1883. //
  1884. this.cmsClearing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  1885. this.cmsClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1886. this.cmsClearing.ImageScalingSize = new System.Drawing.Size(20, 20);
  1887. this.cmsClearing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  1888. this.tmsClearing_2,
  1889. this.tms_Clearing2801A,
  1890. this.tmsHisSettlRecord_2});
  1891. this.cmsClearing.Name = "cmsClearing";
  1892. this.cmsClearing.Size = new System.Drawing.Size(241, 82);
  1893. this.cmsClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1894. this.cmsClearing.Opening += new System.ComponentModel.CancelEventHandler(this.cmsClearing_Opening);
  1895. //
  1896. // tmsClearing_2
  1897. //
  1898. this.tmsClearing_2.Name = "tmsClearing_2";
  1899. this.tmsClearing_2.Size = new System.Drawing.Size(240, 26);
  1900. this.tmsClearing_2.Text = "单条清算(2701_A)";
  1901. this.tmsClearing_2.Click += new System.EventHandler(this.tmsClearing_2_Click);
  1902. //
  1903. // tms_Clearing2801A
  1904. //
  1905. this.tms_Clearing2801A.Name = "tms_Clearing2801A";
  1906. this.tms_Clearing2801A.Size = new System.Drawing.Size(240, 26);
  1907. this.tms_Clearing2801A.Text = "即时结算申请(2801_A)";
  1908. this.tms_Clearing2801A.Click += new System.EventHandler(this.tms_Clearing2801A_Click);
  1909. //
  1910. // tmsHisSettlRecord_2
  1911. //
  1912. this.tmsHisSettlRecord_2.Name = "tmsHisSettlRecord_2";
  1913. this.tmsHisSettlRecord_2.Size = new System.Drawing.Size(240, 26);
  1914. this.tmsHisSettlRecord_2.Text = "查看HIS结算记录";
  1915. //
  1916. // uiPanel3
  1917. //
  1918. this.uiPanel3.Controls.Add(this.uiGroupBox2);
  1919. this.uiPanel3.Controls.Add(this.uiGroupBox3);
  1920. this.uiPanel3.Controls.Add(this.uiGroupBox4);
  1921. this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
  1922. this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1923. this.uiPanel3.Location = new System.Drawing.Point(0, 0);
  1924. this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1925. this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
  1926. this.uiPanel3.Name = "uiPanel3";
  1927. this.uiPanel3.Size = new System.Drawing.Size(222, 721);
  1928. this.uiPanel3.TabIndex = 3;
  1929. this.uiPanel3.Text = null;
  1930. this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1931. this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1932. //
  1933. // uiGroupBox2
  1934. //
  1935. this.uiGroupBox2.Controls.Add(this.tbInsuPlc);
  1936. this.uiGroupBox2.Controls.Add(this.uiLabel18);
  1937. this.uiGroupBox2.Controls.Add(this.cbOtherPlaceFlag);
  1938. this.uiGroupBox2.Controls.Add(this.uiLabel19);
  1939. this.uiGroupBox2.Controls.Add(this.cbClrWay_2);
  1940. this.uiGroupBox2.Controls.Add(this.uiLabel11);
  1941. this.uiGroupBox2.Controls.Add(this.cbInterface_2);
  1942. this.uiGroupBox2.Controls.Add(this.tbSettlOption_2);
  1943. this.uiGroupBox2.Controls.Add(this.cbValid_2);
  1944. this.uiGroupBox2.Controls.Add(this.uiLabel6);
  1945. this.uiGroupBox2.Controls.Add(this.uiLabel7);
  1946. this.uiGroupBox2.Controls.Add(this.cbClrType_2);
  1947. this.uiGroupBox2.Controls.Add(this.uiLabel8);
  1948. this.uiGroupBox2.Controls.Add(this.cbInsutype_2);
  1949. this.uiGroupBox2.Controls.Add(this.uiLabel9);
  1950. this.uiGroupBox2.Controls.Add(this.uiLabel10);
  1951. this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
  1952. this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1953. this.uiGroupBox2.Location = new System.Drawing.Point(0, 112);
  1954. this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1955. this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
  1956. this.uiGroupBox2.Name = "uiGroupBox2";
  1957. this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  1958. this.uiGroupBox2.Size = new System.Drawing.Size(222, 288);
  1959. this.uiGroupBox2.TabIndex = 27;
  1960. this.uiGroupBox2.TabStop = false;
  1961. this.uiGroupBox2.Text = "条件设置";
  1962. this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1963. this.uiGroupBox2.TitleTop = 10;
  1964. this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1965. //
  1966. // tbInsuPlc
  1967. //
  1968. this.tbInsuPlc.Cursor = System.Windows.Forms.Cursors.IBeam;
  1969. this.tbInsuPlc.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1970. this.tbInsuPlc.Location = new System.Drawing.Point(80, 247);
  1971. this.tbInsuPlc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1972. this.tbInsuPlc.MinimumSize = new System.Drawing.Size(1, 16);
  1973. this.tbInsuPlc.Name = "tbInsuPlc";
  1974. this.tbInsuPlc.ShowText = false;
  1975. this.tbInsuPlc.Size = new System.Drawing.Size(130, 25);
  1976. this.tbInsuPlc.TabIndex = 17;
  1977. this.tbInsuPlc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1978. this.tbInsuPlc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1979. //
  1980. // uiLabel18
  1981. //
  1982. this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1983. this.uiLabel18.Location = new System.Drawing.Point(10, 243);
  1984. this.uiLabel18.Name = "uiLabel18";
  1985. this.uiLabel18.Size = new System.Drawing.Size(63, 23);
  1986. this.uiLabel18.TabIndex = 16;
  1987. this.uiLabel18.Text = "参保地";
  1988. this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1989. this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  1990. //
  1991. // cbOtherPlaceFlag
  1992. //
  1993. this.cbOtherPlaceFlag.DataSource = null;
  1994. this.cbOtherPlaceFlag.FillColor = System.Drawing.Color.White;
  1995. this.cbOtherPlaceFlag.FilterMaxCount = 50;
  1996. this.cbOtherPlaceFlag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1997. this.cbOtherPlaceFlag.ItemHeight = 20;
  1998. this.cbOtherPlaceFlag.Items.AddRange(new object[] {
  1999. "全部",
  2000. "是",
  2001. "否"});
  2002. this.cbOtherPlaceFlag.Location = new System.Drawing.Point(80, 215);
  2003. this.cbOtherPlaceFlag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2004. this.cbOtherPlaceFlag.MinimumSize = new System.Drawing.Size(63, 0);
  2005. this.cbOtherPlaceFlag.Name = "cbOtherPlaceFlag";
  2006. this.cbOtherPlaceFlag.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2007. this.cbOtherPlaceFlag.Size = new System.Drawing.Size(130, 25);
  2008. this.cbOtherPlaceFlag.TabIndex = 15;
  2009. this.cbOtherPlaceFlag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2010. this.cbOtherPlaceFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2011. //
  2012. // uiLabel19
  2013. //
  2014. this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2015. this.uiLabel19.Location = new System.Drawing.Point(10, 212);
  2016. this.uiLabel19.Name = "uiLabel19";
  2017. this.uiLabel19.Size = new System.Drawing.Size(63, 23);
  2018. this.uiLabel19.TabIndex = 14;
  2019. this.uiLabel19.Text = "异地标志";
  2020. this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2021. this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2022. //
  2023. // cbClrWay_2
  2024. //
  2025. this.cbClrWay_2.DataSource = null;
  2026. this.cbClrWay_2.FillColor = System.Drawing.Color.White;
  2027. this.cbClrWay_2.FilterMaxCount = 50;
  2028. this.cbClrWay_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2029. this.cbClrWay_2.ItemHeight = 20;
  2030. this.cbClrWay_2.Items.AddRange(new object[] {
  2031. "1",
  2032. "2"});
  2033. this.cbClrWay_2.Location = new System.Drawing.Point(80, 183);
  2034. this.cbClrWay_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2035. this.cbClrWay_2.MinimumSize = new System.Drawing.Size(63, 0);
  2036. this.cbClrWay_2.Name = "cbClrWay_2";
  2037. this.cbClrWay_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2038. this.cbClrWay_2.Size = new System.Drawing.Size(130, 25);
  2039. this.cbClrWay_2.TabIndex = 13;
  2040. this.cbClrWay_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2041. this.cbClrWay_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2042. //
  2043. // uiLabel11
  2044. //
  2045. this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2046. this.uiLabel11.Location = new System.Drawing.Point(10, 181);
  2047. this.uiLabel11.Name = "uiLabel11";
  2048. this.uiLabel11.Size = new System.Drawing.Size(63, 23);
  2049. this.uiLabel11.TabIndex = 12;
  2050. this.uiLabel11.Text = "清算方式";
  2051. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2052. this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2053. //
  2054. // cbInterface_2
  2055. //
  2056. this.cbInterface_2.DataSource = null;
  2057. this.cbInterface_2.FillColor = System.Drawing.Color.White;
  2058. this.cbInterface_2.FilterMaxCount = 50;
  2059. this.cbInterface_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2060. this.cbInterface_2.ItemHeight = 20;
  2061. this.cbInterface_2.Items.AddRange(new object[] {
  2062. "1",
  2063. "2"});
  2064. this.cbInterface_2.Location = new System.Drawing.Point(80, 23);
  2065. this.cbInterface_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2066. this.cbInterface_2.MinimumSize = new System.Drawing.Size(63, 0);
  2067. this.cbInterface_2.Name = "cbInterface_2";
  2068. this.cbInterface_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2069. this.cbInterface_2.Size = new System.Drawing.Size(130, 25);
  2070. this.cbInterface_2.TabIndex = 11;
  2071. this.cbInterface_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2072. this.cbInterface_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2073. //
  2074. // tbSettlOption_2
  2075. //
  2076. this.tbSettlOption_2.Cursor = System.Windows.Forms.Cursors.IBeam;
  2077. this.tbSettlOption_2.Enabled = false;
  2078. this.tbSettlOption_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2079. this.tbSettlOption_2.Location = new System.Drawing.Point(80, 119);
  2080. this.tbSettlOption_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2081. this.tbSettlOption_2.MinimumSize = new System.Drawing.Size(1, 16);
  2082. this.tbSettlOption_2.Name = "tbSettlOption_2";
  2083. this.tbSettlOption_2.ShowText = false;
  2084. this.tbSettlOption_2.Size = new System.Drawing.Size(130, 25);
  2085. this.tbSettlOption_2.TabIndex = 10;
  2086. this.tbSettlOption_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2087. this.tbSettlOption_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2088. //
  2089. // cbValid_2
  2090. //
  2091. this.cbValid_2.DataSource = null;
  2092. this.cbValid_2.FillColor = System.Drawing.Color.White;
  2093. this.cbValid_2.FilterMaxCount = 50;
  2094. this.cbValid_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2095. this.cbValid_2.ItemHeight = 20;
  2096. this.cbValid_2.Items.AddRange(new object[] {
  2097. "全部",
  2098. "有效",
  2099. "无效"});
  2100. this.cbValid_2.Location = new System.Drawing.Point(80, 151);
  2101. this.cbValid_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2102. this.cbValid_2.MinimumSize = new System.Drawing.Size(63, 0);
  2103. this.cbValid_2.Name = "cbValid_2";
  2104. this.cbValid_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2105. this.cbValid_2.Size = new System.Drawing.Size(130, 25);
  2106. this.cbValid_2.TabIndex = 9;
  2107. this.cbValid_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2108. this.cbValid_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2109. //
  2110. // uiLabel6
  2111. //
  2112. this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2113. this.uiLabel6.Location = new System.Drawing.Point(10, 150);
  2114. this.uiLabel6.Name = "uiLabel6";
  2115. this.uiLabel6.Size = new System.Drawing.Size(63, 23);
  2116. this.uiLabel6.TabIndex = 8;
  2117. this.uiLabel6.Text = "有效标志";
  2118. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2119. this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2120. //
  2121. // uiLabel7
  2122. //
  2123. this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2124. this.uiLabel7.Location = new System.Drawing.Point(10, 119);
  2125. this.uiLabel7.Name = "uiLabel7";
  2126. this.uiLabel7.Size = new System.Drawing.Size(63, 23);
  2127. this.uiLabel7.TabIndex = 6;
  2128. this.uiLabel7.Text = "经办机构";
  2129. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2130. this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2131. //
  2132. // cbClrType_2
  2133. //
  2134. this.cbClrType_2.DataSource = null;
  2135. this.cbClrType_2.FillColor = System.Drawing.Color.White;
  2136. this.cbClrType_2.FilterMaxCount = 50;
  2137. this.cbClrType_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2138. this.cbClrType_2.ItemHeight = 20;
  2139. this.cbClrType_2.Items.AddRange(new object[] {
  2140. "1",
  2141. "2"});
  2142. this.cbClrType_2.Location = new System.Drawing.Point(80, 87);
  2143. this.cbClrType_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2144. this.cbClrType_2.MinimumSize = new System.Drawing.Size(63, 0);
  2145. this.cbClrType_2.Name = "cbClrType_2";
  2146. this.cbClrType_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2147. this.cbClrType_2.Size = new System.Drawing.Size(130, 25);
  2148. this.cbClrType_2.TabIndex = 5;
  2149. this.cbClrType_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2150. this.cbClrType_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2151. //
  2152. // uiLabel8
  2153. //
  2154. this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2155. this.uiLabel8.Location = new System.Drawing.Point(10, 88);
  2156. this.uiLabel8.Name = "uiLabel8";
  2157. this.uiLabel8.Size = new System.Drawing.Size(63, 23);
  2158. this.uiLabel8.TabIndex = 4;
  2159. this.uiLabel8.Text = "清算类别";
  2160. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2161. this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2162. //
  2163. // cbInsutype_2
  2164. //
  2165. this.cbInsutype_2.DataSource = null;
  2166. this.cbInsutype_2.Enabled = false;
  2167. this.cbInsutype_2.FillColor = System.Drawing.Color.White;
  2168. this.cbInsutype_2.FilterMaxCount = 50;
  2169. this.cbInsutype_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2170. this.cbInsutype_2.ItemHeight = 20;
  2171. this.cbInsutype_2.Items.AddRange(new object[] {
  2172. "1",
  2173. "2"});
  2174. this.cbInsutype_2.Location = new System.Drawing.Point(80, 55);
  2175. this.cbInsutype_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2176. this.cbInsutype_2.MinimumSize = new System.Drawing.Size(63, 0);
  2177. this.cbInsutype_2.Name = "cbInsutype_2";
  2178. this.cbInsutype_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2179. this.cbInsutype_2.Size = new System.Drawing.Size(130, 25);
  2180. this.cbInsutype_2.TabIndex = 3;
  2181. this.cbInsutype_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2182. this.cbInsutype_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2183. //
  2184. // uiLabel9
  2185. //
  2186. this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2187. this.uiLabel9.Location = new System.Drawing.Point(10, 57);
  2188. this.uiLabel9.Name = "uiLabel9";
  2189. this.uiLabel9.Size = new System.Drawing.Size(63, 23);
  2190. this.uiLabel9.TabIndex = 2;
  2191. this.uiLabel9.Text = "险种类型";
  2192. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2193. this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2194. //
  2195. // uiLabel10
  2196. //
  2197. this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2198. this.uiLabel10.Location = new System.Drawing.Point(10, 26);
  2199. this.uiLabel10.Name = "uiLabel10";
  2200. this.uiLabel10.Size = new System.Drawing.Size(63, 23);
  2201. this.uiLabel10.TabIndex = 0;
  2202. this.uiLabel10.Text = "接口目录";
  2203. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2204. this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2205. //
  2206. // uiGroupBox3
  2207. //
  2208. this.uiGroupBox3.Controls.Add(this.btnClose_2);
  2209. this.uiGroupBox3.Controls.Add(this.btnPatchClr);
  2210. this.uiGroupBox3.Controls.Add(this.btnQueryClrSum);
  2211. this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
  2212. this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2213. this.uiGroupBox3.Location = new System.Drawing.Point(0, 587);
  2214. this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2215. this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
  2216. this.uiGroupBox3.Name = "uiGroupBox3";
  2217. this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  2218. this.uiGroupBox3.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  2219. this.uiGroupBox3.RectSize = 2;
  2220. this.uiGroupBox3.Size = new System.Drawing.Size(222, 134);
  2221. this.uiGroupBox3.TabIndex = 25;
  2222. this.uiGroupBox3.Text = null;
  2223. this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2224. this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2225. //
  2226. // btnClose_2
  2227. //
  2228. this.btnClose_2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  2229. | System.Windows.Forms.AnchorStyles.Right)));
  2230. this.btnClose_2.Cursor = System.Windows.Forms.Cursors.Hand;
  2231. this.btnClose_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2232. this.btnClose_2.Location = new System.Drawing.Point(23, 90);
  2233. this.btnClose_2.MinimumSize = new System.Drawing.Size(1, 1);
  2234. this.btnClose_2.Name = "btnClose_2";
  2235. this.btnClose_2.Size = new System.Drawing.Size(175, 37);
  2236. this.btnClose_2.TabIndex = 2;
  2237. this.btnClose_2.Text = "退出";
  2238. this.btnClose_2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2239. this.btnClose_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2240. this.btnClose_2.Click += new System.EventHandler(this.btnClose_Click);
  2241. //
  2242. // btnPatchClr
  2243. //
  2244. this.btnPatchClr.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  2245. | System.Windows.Forms.AnchorStyles.Right)));
  2246. this.btnPatchClr.Cursor = System.Windows.Forms.Cursors.Hand;
  2247. this.btnPatchClr.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2248. this.btnPatchClr.Location = new System.Drawing.Point(23, 51);
  2249. this.btnPatchClr.MinimumSize = new System.Drawing.Size(1, 1);
  2250. this.btnPatchClr.Name = "btnPatchClr";
  2251. this.btnPatchClr.Size = new System.Drawing.Size(175, 37);
  2252. this.btnPatchClr.TabIndex = 1;
  2253. this.btnPatchClr.Text = "批量清算";
  2254. this.btnPatchClr.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2255. this.btnPatchClr.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2256. //
  2257. // btnQueryClrSum
  2258. //
  2259. this.btnQueryClrSum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  2260. | System.Windows.Forms.AnchorStyles.Right)));
  2261. this.btnQueryClrSum.Cursor = System.Windows.Forms.Cursors.Hand;
  2262. this.btnQueryClrSum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2263. this.btnQueryClrSum.Location = new System.Drawing.Point(23, 12);
  2264. this.btnQueryClrSum.MinimumSize = new System.Drawing.Size(1, 1);
  2265. this.btnQueryClrSum.Name = "btnQueryClrSum";
  2266. this.btnQueryClrSum.Size = new System.Drawing.Size(175, 37);
  2267. this.btnQueryClrSum.TabIndex = 0;
  2268. this.btnQueryClrSum.Text = "查询汇总数据";
  2269. this.btnQueryClrSum.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2270. this.btnQueryClrSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2271. this.btnQueryClrSum.Click += new System.EventHandler(this.btnQueryClrSum_Click);
  2272. //
  2273. // uiGroupBox4
  2274. //
  2275. this.uiGroupBox4.Controls.Add(this.btnReduceMonth);
  2276. this.uiGroupBox4.Controls.Add(this.btnAddMonth);
  2277. this.uiGroupBox4.Controls.Add(this.dpED_2);
  2278. this.uiGroupBox4.Controls.Add(this.dpST_2);
  2279. this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
  2280. this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2281. this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
  2282. this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2283. this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
  2284. this.uiGroupBox4.Name = "uiGroupBox4";
  2285. this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2286. this.uiGroupBox4.Size = new System.Drawing.Size(222, 112);
  2287. this.uiGroupBox4.TabIndex = 21;
  2288. this.uiGroupBox4.Text = "起止时间";
  2289. this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2290. this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2291. //
  2292. // btnReduceMonth
  2293. //
  2294. this.btnReduceMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2295. this.btnReduceMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2296. this.btnReduceMonth.Location = new System.Drawing.Point(160, 3);
  2297. this.btnReduceMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2298. this.btnReduceMonth.Name = "btnReduceMonth";
  2299. this.btnReduceMonth.Size = new System.Drawing.Size(38, 23);
  2300. this.btnReduceMonth.Symbol = 61544;
  2301. this.btnReduceMonth.TabIndex = 3;
  2302. this.btnReduceMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2303. this.btnReduceMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2304. this.btnReduceMonth.Click += new System.EventHandler(this.btnReduceMonth_Click);
  2305. //
  2306. // btnAddMonth
  2307. //
  2308. this.btnAddMonth.Cursor = System.Windows.Forms.Cursors.Hand;
  2309. this.btnAddMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2310. this.btnAddMonth.Location = new System.Drawing.Point(116, 3);
  2311. this.btnAddMonth.MinimumSize = new System.Drawing.Size(1, 1);
  2312. this.btnAddMonth.Name = "btnAddMonth";
  2313. this.btnAddMonth.Size = new System.Drawing.Size(38, 23);
  2314. this.btnAddMonth.Symbol = 61543;
  2315. this.btnAddMonth.TabIndex = 2;
  2316. this.btnAddMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2317. this.btnAddMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2318. this.btnAddMonth.Click += new System.EventHandler(this.btnAddMonth_Click);
  2319. //
  2320. // dpED_2
  2321. //
  2322. this.dpED_2.FillColor = System.Drawing.Color.White;
  2323. this.dpED_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2324. this.dpED_2.Location = new System.Drawing.Point(13, 70);
  2325. this.dpED_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2326. this.dpED_2.MaxLength = 19;
  2327. this.dpED_2.MinimumSize = new System.Drawing.Size(63, 0);
  2328. this.dpED_2.Name = "dpED_2";
  2329. this.dpED_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2330. this.dpED_2.Size = new System.Drawing.Size(200, 29);
  2331. this.dpED_2.SymbolDropDown = 61555;
  2332. this.dpED_2.SymbolNormal = 61555;
  2333. this.dpED_2.TabIndex = 1;
  2334. this.dpED_2.Text = "2022-06-01 23:59:59";
  2335. this.dpED_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2336. this.dpED_2.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2337. this.dpED_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2338. //
  2339. // dpST_2
  2340. //
  2341. this.dpST_2.FillColor = System.Drawing.Color.White;
  2342. this.dpST_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2343. this.dpST_2.Location = new System.Drawing.Point(13, 31);
  2344. this.dpST_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2345. this.dpST_2.MaxLength = 19;
  2346. this.dpST_2.MinimumSize = new System.Drawing.Size(63, 0);
  2347. this.dpST_2.Name = "dpST_2";
  2348. this.dpST_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2349. this.dpST_2.Size = new System.Drawing.Size(200, 29);
  2350. this.dpST_2.SymbolDropDown = 61555;
  2351. this.dpST_2.SymbolNormal = 61555;
  2352. this.dpST_2.TabIndex = 0;
  2353. this.dpST_2.Text = "2022-06-01 00:00:00";
  2354. this.dpST_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2355. this.dpST_2.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2356. this.dpST_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2357. //
  2358. // tabPage3
  2359. //
  2360. this.tabPage3.Controls.Add(this.dgvClearingData);
  2361. this.tabPage3.Controls.Add(this.uiPanel5);
  2362. this.tabPage3.Location = new System.Drawing.Point(0, 30);
  2363. this.tabPage3.Name = "tabPage3";
  2364. this.tabPage3.Size = new System.Drawing.Size(1200, 721);
  2365. this.tabPage3.TabIndex = 2;
  2366. this.tabPage3.Text = "清算撤销";
  2367. this.tabPage3.UseVisualStyleBackColor = true;
  2368. //
  2369. // dgvClearingData
  2370. //
  2371. this.dgvClearingData.AllowUserToAddRows = false;
  2372. dataGridViewCellStyle31.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2373. this.dgvClearingData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle31;
  2374. this.dgvClearingData.BackgroundColor = System.Drawing.Color.White;
  2375. this.dgvClearingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2376. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2377. dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2378. dataGridViewCellStyle32.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2379. dataGridViewCellStyle32.ForeColor = System.Drawing.Color.White;
  2380. dataGridViewCellStyle32.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2381. dataGridViewCellStyle32.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2382. dataGridViewCellStyle32.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2383. this.dgvClearingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle32;
  2384. this.dgvClearingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2385. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2386. dataGridViewCellStyle33.BackColor = System.Drawing.SystemColors.Window;
  2387. dataGridViewCellStyle33.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2388. dataGridViewCellStyle33.ForeColor = System.Drawing.SystemColors.ControlText;
  2389. dataGridViewCellStyle33.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2390. dataGridViewCellStyle33.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2391. dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2392. this.dgvClearingData.DefaultCellStyle = dataGridViewCellStyle33;
  2393. this.dgvClearingData.Dock = System.Windows.Forms.DockStyle.Fill;
  2394. this.dgvClearingData.EnableHeadersVisualStyles = false;
  2395. this.dgvClearingData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2396. this.dgvClearingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2397. this.dgvClearingData.Location = new System.Drawing.Point(0, 0);
  2398. this.dgvClearingData.Name = "dgvClearingData";
  2399. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2400. dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2401. dataGridViewCellStyle34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2402. dataGridViewCellStyle34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2403. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2404. dataGridViewCellStyle34.SelectionForeColor = System.Drawing.Color.White;
  2405. dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2406. this.dgvClearingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle34;
  2407. this.dgvClearingData.RowHeadersWidth = 51;
  2408. dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
  2409. dataGridViewCellStyle35.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2410. this.dgvClearingData.RowsDefaultCellStyle = dataGridViewCellStyle35;
  2411. this.dgvClearingData.RowTemplate.Height = 23;
  2412. this.dgvClearingData.SelectedIndex = -1;
  2413. this.dgvClearingData.Size = new System.Drawing.Size(1200, 614);
  2414. this.dgvClearingData.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2415. this.dgvClearingData.TabIndex = 1;
  2416. this.dgvClearingData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2417. //
  2418. // uiPanel5
  2419. //
  2420. this.uiPanel5.Controls.Add(this.btnCancleClearing);
  2421. this.uiPanel5.Controls.Add(this.uiGroupBox6);
  2422. this.uiPanel5.Controls.Add(this.rbgTimeWay);
  2423. this.uiPanel5.Controls.Add(this.btnClose_3);
  2424. this.uiPanel5.Controls.Add(this.btnQueryClearing);
  2425. this.uiPanel5.Controls.Add(this.uiGroupBox5);
  2426. this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
  2427. this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2428. this.uiPanel5.Location = new System.Drawing.Point(0, 614);
  2429. this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2430. this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
  2431. this.uiPanel5.Name = "uiPanel5";
  2432. this.uiPanel5.Size = new System.Drawing.Size(1200, 107);
  2433. this.uiPanel5.TabIndex = 0;
  2434. this.uiPanel5.Text = null;
  2435. this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2436. this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2437. //
  2438. // btnCancleClearing
  2439. //
  2440. this.btnCancleClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2441. this.btnCancleClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2442. this.btnCancleClearing.Location = new System.Drawing.Point(963, 21);
  2443. this.btnCancleClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2444. this.btnCancleClearing.Name = "btnCancleClearing";
  2445. this.btnCancleClearing.Size = new System.Drawing.Size(128, 69);
  2446. this.btnCancleClearing.TabIndex = 27;
  2447. this.btnCancleClearing.Text = "撤销清算数据";
  2448. this.btnCancleClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2449. this.btnCancleClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2450. this.btnCancleClearing.Click += new System.EventHandler(this.btnCancleClearing_Click);
  2451. //
  2452. // uiGroupBox6
  2453. //
  2454. this.uiGroupBox6.Controls.Add(this.cbInterface_3);
  2455. this.uiGroupBox6.Controls.Add(this.cbValid_3);
  2456. this.uiGroupBox6.Controls.Add(this.uiLabel13);
  2457. this.uiGroupBox6.Controls.Add(this.uiLabel17);
  2458. this.uiGroupBox6.Dock = System.Windows.Forms.DockStyle.Left;
  2459. this.uiGroupBox6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2460. this.uiGroupBox6.Location = new System.Drawing.Point(312, 0);
  2461. this.uiGroupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2462. this.uiGroupBox6.MinimumSize = new System.Drawing.Size(1, 1);
  2463. this.uiGroupBox6.Name = "uiGroupBox6";
  2464. this.uiGroupBox6.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  2465. this.uiGroupBox6.Size = new System.Drawing.Size(229, 107);
  2466. this.uiGroupBox6.TabIndex = 26;
  2467. this.uiGroupBox6.TabStop = false;
  2468. this.uiGroupBox6.Text = null;
  2469. this.uiGroupBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2470. this.uiGroupBox6.TitleTop = 10;
  2471. this.uiGroupBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2472. //
  2473. // cbInterface_3
  2474. //
  2475. this.cbInterface_3.DataSource = null;
  2476. this.cbInterface_3.FillColor = System.Drawing.Color.White;
  2477. this.cbInterface_3.FilterMaxCount = 50;
  2478. this.cbInterface_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2479. this.cbInterface_3.ItemHeight = 20;
  2480. this.cbInterface_3.Items.AddRange(new object[] {
  2481. "1",
  2482. "2"});
  2483. this.cbInterface_3.Location = new System.Drawing.Point(85, 29);
  2484. this.cbInterface_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2485. this.cbInterface_3.MinimumSize = new System.Drawing.Size(63, 0);
  2486. this.cbInterface_3.Name = "cbInterface_3";
  2487. this.cbInterface_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2488. this.cbInterface_3.Size = new System.Drawing.Size(130, 25);
  2489. this.cbInterface_3.TabIndex = 11;
  2490. this.cbInterface_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2491. this.cbInterface_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2492. //
  2493. // cbValid_3
  2494. //
  2495. this.cbValid_3.DataSource = null;
  2496. this.cbValid_3.FillColor = System.Drawing.Color.White;
  2497. this.cbValid_3.FilterMaxCount = 50;
  2498. this.cbValid_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2499. this.cbValid_3.ItemHeight = 20;
  2500. this.cbValid_3.Items.AddRange(new object[] {
  2501. "全部",
  2502. "有效",
  2503. "无效"});
  2504. this.cbValid_3.Location = new System.Drawing.Point(85, 67);
  2505. this.cbValid_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2506. this.cbValid_3.MinimumSize = new System.Drawing.Size(63, 0);
  2507. this.cbValid_3.Name = "cbValid_3";
  2508. this.cbValid_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2509. this.cbValid_3.Size = new System.Drawing.Size(130, 25);
  2510. this.cbValid_3.TabIndex = 9;
  2511. this.cbValid_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2512. this.cbValid_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2513. //
  2514. // uiLabel13
  2515. //
  2516. this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2517. this.uiLabel13.Location = new System.Drawing.Point(12, 66);
  2518. this.uiLabel13.Name = "uiLabel13";
  2519. this.uiLabel13.Size = new System.Drawing.Size(63, 23);
  2520. this.uiLabel13.TabIndex = 8;
  2521. this.uiLabel13.Text = "有效标志";
  2522. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2523. this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2524. //
  2525. // uiLabel17
  2526. //
  2527. this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2528. this.uiLabel17.Location = new System.Drawing.Point(14, 30);
  2529. this.uiLabel17.Name = "uiLabel17";
  2530. this.uiLabel17.Size = new System.Drawing.Size(63, 23);
  2531. this.uiLabel17.TabIndex = 0;
  2532. this.uiLabel17.Text = "接口目录";
  2533. this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2534. this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2535. //
  2536. // rbgTimeWay
  2537. //
  2538. this.rbgTimeWay.Dock = System.Windows.Forms.DockStyle.Left;
  2539. this.rbgTimeWay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2540. this.rbgTimeWay.Items.AddRange(new object[] {
  2541. "按清算时间统计",
  2542. "按起止时间统计"});
  2543. this.rbgTimeWay.Location = new System.Drawing.Point(149, 0);
  2544. this.rbgTimeWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2545. this.rbgTimeWay.MinimumSize = new System.Drawing.Size(1, 1);
  2546. this.rbgTimeWay.Name = "rbgTimeWay";
  2547. this.rbgTimeWay.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2548. this.rbgTimeWay.Size = new System.Drawing.Size(163, 107);
  2549. this.rbgTimeWay.TabIndex = 25;
  2550. this.rbgTimeWay.Text = null;
  2551. this.rbgTimeWay.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2552. this.rbgTimeWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2553. //
  2554. // btnClose_3
  2555. //
  2556. this.btnClose_3.Cursor = System.Windows.Forms.Cursors.Hand;
  2557. this.btnClose_3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2558. this.btnClose_3.Location = new System.Drawing.Point(1094, 21);
  2559. this.btnClose_3.MinimumSize = new System.Drawing.Size(1, 1);
  2560. this.btnClose_3.Name = "btnClose_3";
  2561. this.btnClose_3.Size = new System.Drawing.Size(98, 69);
  2562. this.btnClose_3.TabIndex = 24;
  2563. this.btnClose_3.Text = "退 出";
  2564. this.btnClose_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2565. this.btnClose_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2566. this.btnClose_3.Click += new System.EventHandler(this.btnClose_3_Click);
  2567. //
  2568. // btnQueryClearing
  2569. //
  2570. this.btnQueryClearing.Cursor = System.Windows.Forms.Cursors.Hand;
  2571. this.btnQueryClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2572. this.btnQueryClearing.Location = new System.Drawing.Point(806, 21);
  2573. this.btnQueryClearing.MinimumSize = new System.Drawing.Size(1, 1);
  2574. this.btnQueryClearing.Name = "btnQueryClearing";
  2575. this.btnQueryClearing.Size = new System.Drawing.Size(154, 69);
  2576. this.btnQueryClearing.TabIndex = 23;
  2577. this.btnQueryClearing.Text = "查询清算数据";
  2578. this.btnQueryClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2579. this.btnQueryClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2580. this.btnQueryClearing.Click += new System.EventHandler(this.btnQueryClearing_Click);
  2581. //
  2582. // uiGroupBox5
  2583. //
  2584. this.uiGroupBox5.Controls.Add(this.dpED_3);
  2585. this.uiGroupBox5.Controls.Add(this.dpST_3);
  2586. this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
  2587. this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2588. this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
  2589. this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2590. this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
  2591. this.uiGroupBox5.Name = "uiGroupBox5";
  2592. this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2593. this.uiGroupBox5.Size = new System.Drawing.Size(149, 107);
  2594. this.uiGroupBox5.TabIndex = 22;
  2595. this.uiGroupBox5.Text = null;
  2596. this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2597. this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2598. //
  2599. // dpED_3
  2600. //
  2601. this.dpED_3.DateFormat = "yyyy-MM-dd";
  2602. this.dpED_3.FillColor = System.Drawing.Color.White;
  2603. this.dpED_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2604. this.dpED_3.Location = new System.Drawing.Point(14, 68);
  2605. this.dpED_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2606. this.dpED_3.MaxLength = 10;
  2607. this.dpED_3.MinimumSize = new System.Drawing.Size(63, 0);
  2608. this.dpED_3.Name = "dpED_3";
  2609. this.dpED_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2610. this.dpED_3.Size = new System.Drawing.Size(121, 29);
  2611. this.dpED_3.SymbolDropDown = 61555;
  2612. this.dpED_3.SymbolNormal = 61555;
  2613. this.dpED_3.TabIndex = 1;
  2614. this.dpED_3.Text = "2022-06-01";
  2615. this.dpED_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2616. this.dpED_3.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
  2617. this.dpED_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2618. //
  2619. // dpST_3
  2620. //
  2621. this.dpST_3.DateFormat = "yyyy-MM-dd";
  2622. this.dpST_3.FillColor = System.Drawing.Color.White;
  2623. this.dpST_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2624. this.dpST_3.Location = new System.Drawing.Point(14, 29);
  2625. this.dpST_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2626. this.dpST_3.MaxLength = 10;
  2627. this.dpST_3.MinimumSize = new System.Drawing.Size(63, 0);
  2628. this.dpST_3.Name = "dpST_3";
  2629. this.dpST_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2630. this.dpST_3.Size = new System.Drawing.Size(121, 29);
  2631. this.dpST_3.SymbolDropDown = 61555;
  2632. this.dpST_3.SymbolNormal = 61555;
  2633. this.dpST_3.TabIndex = 0;
  2634. this.dpST_3.Text = "2022-06-01";
  2635. this.dpST_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2636. this.dpST_3.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
  2637. this.dpST_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2638. //
  2639. // tabPage11
  2640. //
  2641. this.tabPage11.Controls.Add(this.tbQueryData);
  2642. this.tabPage11.Controls.Add(this.uiPanel8);
  2643. this.tabPage11.Location = new System.Drawing.Point(0, 30);
  2644. this.tabPage11.Name = "tabPage11";
  2645. this.tabPage11.Size = new System.Drawing.Size(1200, 721);
  2646. this.tabPage11.TabIndex = 4;
  2647. this.tabPage11.Text = "即时结算查询";
  2648. this.tabPage11.UseVisualStyleBackColor = true;
  2649. //
  2650. // tbQueryData
  2651. //
  2652. this.tbQueryData.Controls.Add(this.tabPage13);
  2653. this.tbQueryData.Controls.Add(this.tabPage16);
  2654. this.tbQueryData.Dock = System.Windows.Forms.DockStyle.Fill;
  2655. this.tbQueryData.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  2656. this.tbQueryData.Enabled = false;
  2657. this.tbQueryData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2658. this.tbQueryData.ItemSize = new System.Drawing.Size(150, 25);
  2659. this.tbQueryData.Location = new System.Drawing.Point(270, 0);
  2660. this.tbQueryData.MainPage = "";
  2661. this.tbQueryData.Name = "tbQueryData";
  2662. this.tbQueryData.SelectedIndex = 0;
  2663. this.tbQueryData.Size = new System.Drawing.Size(930, 721);
  2664. this.tbQueryData.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  2665. this.tbQueryData.TabIndex = 5;
  2666. this.tbQueryData.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2667. this.tbQueryData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2668. //
  2669. // tabPage13
  2670. //
  2671. this.tabPage13.Controls.Add(this.dgv_2804_A);
  2672. this.tabPage13.Location = new System.Drawing.Point(0, 25);
  2673. this.tabPage13.Name = "tabPage13";
  2674. this.tabPage13.Size = new System.Drawing.Size(930, 696);
  2675. this.tabPage13.TabIndex = 0;
  2676. this.tabPage13.Text = "即时结算申请查询";
  2677. this.tabPage13.UseVisualStyleBackColor = true;
  2678. //
  2679. // dgv_2804_A
  2680. //
  2681. this.dgv_2804_A.AllowUserToAddRows = false;
  2682. dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2683. this.dgv_2804_A.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle36;
  2684. this.dgv_2804_A.BackgroundColor = System.Drawing.Color.White;
  2685. this.dgv_2804_A.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  2686. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2687. dataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2688. dataGridViewCellStyle37.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2689. dataGridViewCellStyle37.ForeColor = System.Drawing.Color.White;
  2690. dataGridViewCellStyle37.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2691. dataGridViewCellStyle37.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2692. dataGridViewCellStyle37.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2693. this.dgv_2804_A.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle37;
  2694. this.dgv_2804_A.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2695. this.dgv_2804_A.ContextMenuStrip = this.cmsClearing;
  2696. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2697. dataGridViewCellStyle38.BackColor = System.Drawing.SystemColors.Window;
  2698. dataGridViewCellStyle38.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2699. dataGridViewCellStyle38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2700. dataGridViewCellStyle38.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2701. dataGridViewCellStyle38.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2702. dataGridViewCellStyle38.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2703. this.dgv_2804_A.DefaultCellStyle = dataGridViewCellStyle38;
  2704. this.dgv_2804_A.Dock = System.Windows.Forms.DockStyle.Fill;
  2705. this.dgv_2804_A.EnableHeadersVisualStyles = false;
  2706. this.dgv_2804_A.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2707. this.dgv_2804_A.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2708. this.dgv_2804_A.Location = new System.Drawing.Point(0, 0);
  2709. this.dgv_2804_A.Name = "dgv_2804_A";
  2710. this.dgv_2804_A.ReadOnly = true;
  2711. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2712. dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2713. dataGridViewCellStyle39.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2714. dataGridViewCellStyle39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2715. dataGridViewCellStyle39.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2716. dataGridViewCellStyle39.SelectionForeColor = System.Drawing.Color.White;
  2717. dataGridViewCellStyle39.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2718. this.dgv_2804_A.RowHeadersDefaultCellStyle = dataGridViewCellStyle39;
  2719. this.dgv_2804_A.RowHeadersWidth = 30;
  2720. this.dgv_2804_A.RowHeight = 30;
  2721. dataGridViewCellStyle40.BackColor = System.Drawing.Color.White;
  2722. dataGridViewCellStyle40.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2723. this.dgv_2804_A.RowsDefaultCellStyle = dataGridViewCellStyle40;
  2724. this.dgv_2804_A.RowTemplate.Height = 30;
  2725. this.dgv_2804_A.SelectedIndex = -1;
  2726. this.dgv_2804_A.Size = new System.Drawing.Size(930, 696);
  2727. this.dgv_2804_A.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2728. this.dgv_2804_A.TabIndex = 0;
  2729. this.dgv_2804_A.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2730. //
  2731. // tabPage16
  2732. //
  2733. this.tabPage16.Controls.Add(this.dgv_2803_A);
  2734. this.tabPage16.Location = new System.Drawing.Point(0, 25);
  2735. this.tabPage16.Name = "tabPage16";
  2736. this.tabPage16.Size = new System.Drawing.Size(0, 35);
  2737. this.tabPage16.TabIndex = 1;
  2738. this.tabPage16.Text = "即时结算模式查询";
  2739. this.tabPage16.UseVisualStyleBackColor = true;
  2740. //
  2741. // dgv_2803_A
  2742. //
  2743. this.dgv_2803_A.AllowUserToAddRows = false;
  2744. dataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2745. this.dgv_2803_A.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle41;
  2746. this.dgv_2803_A.BackgroundColor = System.Drawing.Color.White;
  2747. this.dgv_2803_A.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
  2748. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2749. dataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2750. dataGridViewCellStyle42.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2751. dataGridViewCellStyle42.ForeColor = System.Drawing.Color.White;
  2752. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2753. dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2754. dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2755. this.dgv_2803_A.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle42;
  2756. this.dgv_2803_A.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  2757. this.dgv_2803_A.ContextMenuStrip = this.cmsClearing;
  2758. dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2759. dataGridViewCellStyle43.BackColor = System.Drawing.SystemColors.Window;
  2760. dataGridViewCellStyle43.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2761. dataGridViewCellStyle43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2762. dataGridViewCellStyle43.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2763. dataGridViewCellStyle43.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2764. dataGridViewCellStyle43.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2765. this.dgv_2803_A.DefaultCellStyle = dataGridViewCellStyle43;
  2766. this.dgv_2803_A.Dock = System.Windows.Forms.DockStyle.Fill;
  2767. this.dgv_2803_A.EnableHeadersVisualStyles = false;
  2768. this.dgv_2803_A.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2769. this.dgv_2803_A.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2770. this.dgv_2803_A.Location = new System.Drawing.Point(0, 0);
  2771. this.dgv_2803_A.Name = "dgv_2803_A";
  2772. this.dgv_2803_A.ReadOnly = true;
  2773. dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2774. dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2775. dataGridViewCellStyle44.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2776. dataGridViewCellStyle44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2777. dataGridViewCellStyle44.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
  2778. dataGridViewCellStyle44.SelectionForeColor = System.Drawing.Color.White;
  2779. dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2780. this.dgv_2803_A.RowHeadersDefaultCellStyle = dataGridViewCellStyle44;
  2781. this.dgv_2803_A.RowHeadersWidth = 30;
  2782. this.dgv_2803_A.RowHeight = 30;
  2783. dataGridViewCellStyle45.BackColor = System.Drawing.Color.White;
  2784. dataGridViewCellStyle45.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2785. this.dgv_2803_A.RowsDefaultCellStyle = dataGridViewCellStyle45;
  2786. this.dgv_2803_A.RowTemplate.Height = 30;
  2787. this.dgv_2803_A.SelectedIndex = -1;
  2788. this.dgv_2803_A.Size = new System.Drawing.Size(0, 35);
  2789. this.dgv_2803_A.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2790. this.dgv_2803_A.TabIndex = 1;
  2791. this.dgv_2803_A.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2792. //
  2793. // uiPanel8
  2794. //
  2795. this.uiPanel8.Controls.Add(this.uiGroupBox14);
  2796. this.uiPanel8.Controls.Add(this.rbg_QueryType);
  2797. this.uiPanel8.Controls.Add(this.uiGroupBox12);
  2798. this.uiPanel8.Controls.Add(this.uiGroupBox13);
  2799. this.uiPanel8.Dock = System.Windows.Forms.DockStyle.Left;
  2800. this.uiPanel8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2801. this.uiPanel8.Location = new System.Drawing.Point(0, 0);
  2802. this.uiPanel8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2803. this.uiPanel8.MinimumSize = new System.Drawing.Size(1, 1);
  2804. this.uiPanel8.Name = "uiPanel8";
  2805. this.uiPanel8.Size = new System.Drawing.Size(270, 721);
  2806. this.uiPanel8.TabIndex = 4;
  2807. this.uiPanel8.Text = null;
  2808. this.uiPanel8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2809. this.uiPanel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2810. //
  2811. // uiGroupBox14
  2812. //
  2813. this.uiGroupBox14.Controls.Add(this.cbb_ClrWay);
  2814. this.uiGroupBox14.Controls.Add(this.uiLabel20);
  2815. this.uiGroupBox14.Controls.Add(this.tb_Admdvs);
  2816. this.uiGroupBox14.Controls.Add(this.uiLabel21);
  2817. this.uiGroupBox14.Controls.Add(this.uiComboBox3);
  2818. this.uiGroupBox14.Controls.Add(this.uiLabel23);
  2819. this.uiGroupBox14.Dock = System.Windows.Forms.DockStyle.Top;
  2820. this.uiGroupBox14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2821. this.uiGroupBox14.Location = new System.Drawing.Point(0, 216);
  2822. this.uiGroupBox14.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2823. this.uiGroupBox14.MinimumSize = new System.Drawing.Size(1, 1);
  2824. this.uiGroupBox14.Name = "uiGroupBox14";
  2825. this.uiGroupBox14.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
  2826. this.uiGroupBox14.Size = new System.Drawing.Size(270, 150);
  2827. this.uiGroupBox14.TabIndex = 30;
  2828. this.uiGroupBox14.TabStop = false;
  2829. this.uiGroupBox14.Text = "条件设置";
  2830. this.uiGroupBox14.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2831. this.uiGroupBox14.TitleTop = 10;
  2832. this.uiGroupBox14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2833. //
  2834. // cbb_ClrWay
  2835. //
  2836. this.cbb_ClrWay.DataSource = null;
  2837. this.cbb_ClrWay.FillColor = System.Drawing.Color.White;
  2838. this.cbb_ClrWay.FilterMaxCount = 50;
  2839. this.cbb_ClrWay.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2840. this.cbb_ClrWay.ItemHeight = 20;
  2841. this.cbb_ClrWay.Items.AddRange(new object[] {
  2842. "01-按项目",
  2843. "02-单病种",
  2844. "03-按床日",
  2845. "04-按人头",
  2846. "05-DRGs点数法",
  2847. "99-其他"});
  2848. this.cbb_ClrWay.Location = new System.Drawing.Point(91, 101);
  2849. this.cbb_ClrWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2850. this.cbb_ClrWay.MinimumSize = new System.Drawing.Size(63, 0);
  2851. this.cbb_ClrWay.Name = "cbb_ClrWay";
  2852. this.cbb_ClrWay.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2853. this.cbb_ClrWay.Size = new System.Drawing.Size(161, 25);
  2854. this.cbb_ClrWay.TabIndex = 13;
  2855. this.cbb_ClrWay.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2856. this.cbb_ClrWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2857. //
  2858. // uiLabel20
  2859. //
  2860. this.uiLabel20.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2861. this.uiLabel20.Location = new System.Drawing.Point(12, 101);
  2862. this.uiLabel20.Name = "uiLabel20";
  2863. this.uiLabel20.Size = new System.Drawing.Size(63, 23);
  2864. this.uiLabel20.TabIndex = 12;
  2865. this.uiLabel20.Text = "清算方式";
  2866. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2867. this.uiLabel20.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2868. //
  2869. // tb_Admdvs
  2870. //
  2871. this.tb_Admdvs.Cursor = System.Windows.Forms.Cursors.IBeam;
  2872. this.tb_Admdvs.Enabled = false;
  2873. this.tb_Admdvs.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2874. this.tb_Admdvs.Location = new System.Drawing.Point(91, 31);
  2875. this.tb_Admdvs.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2876. this.tb_Admdvs.MinimumSize = new System.Drawing.Size(1, 16);
  2877. this.tb_Admdvs.Name = "tb_Admdvs";
  2878. this.tb_Admdvs.ShowText = false;
  2879. this.tb_Admdvs.Size = new System.Drawing.Size(161, 25);
  2880. this.tb_Admdvs.TabIndex = 10;
  2881. this.tb_Admdvs.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2882. this.tb_Admdvs.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2883. //
  2884. // uiLabel21
  2885. //
  2886. this.uiLabel21.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2887. this.uiLabel21.Location = new System.Drawing.Point(10, 31);
  2888. this.uiLabel21.Name = "uiLabel21";
  2889. this.uiLabel21.Size = new System.Drawing.Size(63, 23);
  2890. this.uiLabel21.TabIndex = 6;
  2891. this.uiLabel21.Text = "经办机构";
  2892. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2893. this.uiLabel21.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2894. //
  2895. // uiComboBox3
  2896. //
  2897. this.uiComboBox3.DataSource = null;
  2898. this.uiComboBox3.FillColor = System.Drawing.Color.White;
  2899. this.uiComboBox3.FilterMaxCount = 50;
  2900. this.uiComboBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2901. this.uiComboBox3.ItemHeight = 20;
  2902. this.uiComboBox3.Items.AddRange(new object[] {
  2903. "1",
  2904. "2"});
  2905. this.uiComboBox3.Location = new System.Drawing.Point(91, 66);
  2906. this.uiComboBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2907. this.uiComboBox3.MinimumSize = new System.Drawing.Size(63, 0);
  2908. this.uiComboBox3.Name = "uiComboBox3";
  2909. this.uiComboBox3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2910. this.uiComboBox3.Size = new System.Drawing.Size(161, 25);
  2911. this.uiComboBox3.TabIndex = 5;
  2912. this.uiComboBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2913. this.uiComboBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2914. //
  2915. // uiLabel23
  2916. //
  2917. this.uiLabel23.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2918. this.uiLabel23.Location = new System.Drawing.Point(10, 67);
  2919. this.uiLabel23.Name = "uiLabel23";
  2920. this.uiLabel23.Size = new System.Drawing.Size(63, 23);
  2921. this.uiLabel23.TabIndex = 4;
  2922. this.uiLabel23.Text = "清算类别";
  2923. this.uiLabel23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  2924. this.uiLabel23.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2925. //
  2926. // rbg_QueryType
  2927. //
  2928. this.rbg_QueryType.Dock = System.Windows.Forms.DockStyle.Top;
  2929. this.rbg_QueryType.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2930. this.rbg_QueryType.Items.AddRange(new object[] {
  2931. "2804_A-即时结算申请查询",
  2932. "2803_A-即时结算模式查询"});
  2933. this.rbg_QueryType.ItemSize = new System.Drawing.Size(250, 45);
  2934. this.rbg_QueryType.Location = new System.Drawing.Point(0, 89);
  2935. this.rbg_QueryType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2936. this.rbg_QueryType.MinimumSize = new System.Drawing.Size(1, 1);
  2937. this.rbg_QueryType.Name = "rbg_QueryType";
  2938. this.rbg_QueryType.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  2939. this.rbg_QueryType.Size = new System.Drawing.Size(270, 127);
  2940. this.rbg_QueryType.TabIndex = 29;
  2941. this.rbg_QueryType.Text = "查询类型";
  2942. this.rbg_QueryType.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2943. this.rbg_QueryType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2944. this.rbg_QueryType.ValueChanged += new Sunny.UI.UIRadioButtonGroup.OnValueChanged(this.rbg_QueryType_ValueChanged);
  2945. //
  2946. // uiGroupBox12
  2947. //
  2948. this.uiGroupBox12.Controls.Add(this.uiButton6);
  2949. this.uiGroupBox12.Controls.Add(this.btbQuery);
  2950. this.uiGroupBox12.Dock = System.Windows.Forms.DockStyle.Bottom;
  2951. this.uiGroupBox12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2952. this.uiGroupBox12.Location = new System.Drawing.Point(0, 587);
  2953. this.uiGroupBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2954. this.uiGroupBox12.MinimumSize = new System.Drawing.Size(1, 1);
  2955. this.uiGroupBox12.Name = "uiGroupBox12";
  2956. this.uiGroupBox12.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
  2957. this.uiGroupBox12.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
  2958. this.uiGroupBox12.RectSize = 2;
  2959. this.uiGroupBox12.Size = new System.Drawing.Size(270, 134);
  2960. this.uiGroupBox12.TabIndex = 25;
  2961. this.uiGroupBox12.Text = null;
  2962. this.uiGroupBox12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2963. this.uiGroupBox12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2964. //
  2965. // uiButton6
  2966. //
  2967. this.uiButton6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  2968. | System.Windows.Forms.AnchorStyles.Right)));
  2969. this.uiButton6.Cursor = System.Windows.Forms.Cursors.Hand;
  2970. this.uiButton6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2971. this.uiButton6.Location = new System.Drawing.Point(39, 91);
  2972. this.uiButton6.MinimumSize = new System.Drawing.Size(1, 1);
  2973. this.uiButton6.Name = "uiButton6";
  2974. this.uiButton6.Size = new System.Drawing.Size(192, 37);
  2975. this.uiButton6.TabIndex = 2;
  2976. this.uiButton6.Text = "退 出";
  2977. this.uiButton6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2978. this.uiButton6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2979. this.uiButton6.Click += new System.EventHandler(this.btnClose_Click);
  2980. //
  2981. // btbQuery
  2982. //
  2983. this.btbQuery.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  2984. | System.Windows.Forms.AnchorStyles.Right)));
  2985. this.btbQuery.Cursor = System.Windows.Forms.Cursors.Hand;
  2986. this.btbQuery.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2987. this.btbQuery.Location = new System.Drawing.Point(39, 50);
  2988. this.btbQuery.MinimumSize = new System.Drawing.Size(1, 1);
  2989. this.btbQuery.Name = "btbQuery";
  2990. this.btbQuery.Size = new System.Drawing.Size(192, 37);
  2991. this.btbQuery.TabIndex = 0;
  2992. this.btbQuery.Text = "查 询";
  2993. this.btbQuery.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2994. this.btbQuery.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  2995. this.btbQuery.Click += new System.EventHandler(this.btbQuery_Click);
  2996. //
  2997. // uiGroupBox13
  2998. //
  2999. this.uiGroupBox13.Controls.Add(this.dt_DateYM);
  3000. this.uiGroupBox13.Dock = System.Windows.Forms.DockStyle.Top;
  3001. this.uiGroupBox13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3002. this.uiGroupBox13.Location = new System.Drawing.Point(0, 0);
  3003. this.uiGroupBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3004. this.uiGroupBox13.MinimumSize = new System.Drawing.Size(1, 1);
  3005. this.uiGroupBox13.Name = "uiGroupBox13";
  3006. this.uiGroupBox13.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
  3007. this.uiGroupBox13.Size = new System.Drawing.Size(270, 89);
  3008. this.uiGroupBox13.TabIndex = 21;
  3009. this.uiGroupBox13.Text = "清算年月";
  3010. this.uiGroupBox13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3011. this.uiGroupBox13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3012. //
  3013. // dt_DateYM
  3014. //
  3015. this.dt_DateYM.DateFormat = "yyyy-MM-dd";
  3016. this.dt_DateYM.FillColor = System.Drawing.Color.White;
  3017. this.dt_DateYM.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3018. this.dt_DateYM.Location = new System.Drawing.Point(16, 37);
  3019. this.dt_DateYM.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3020. this.dt_DateYM.MaxLength = 10;
  3021. this.dt_DateYM.MinimumSize = new System.Drawing.Size(63, 0);
  3022. this.dt_DateYM.Name = "dt_DateYM";
  3023. this.dt_DateYM.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3024. this.dt_DateYM.Size = new System.Drawing.Size(236, 29);
  3025. this.dt_DateYM.SymbolDropDown = 61555;
  3026. this.dt_DateYM.SymbolNormal = 61555;
  3027. this.dt_DateYM.TabIndex = 2;
  3028. this.dt_DateYM.Text = "2025-04-01";
  3029. this.dt_DateYM.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3030. this.dt_DateYM.Value = new System.DateTime(2025, 4, 1, 0, 0, 0, 0);
  3031. this.dt_DateYM.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3032. //
  3033. // uiContextMenuStrip1
  3034. //
  3035. this.uiContextMenuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
  3036. this.uiContextMenuStrip1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3037. this.uiContextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  3038. this.uiContextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  3039. this.toolStripMenuItem2,
  3040. this.toolStripMenuItem3});
  3041. this.uiContextMenuStrip1.Name = "cmsClearing";
  3042. this.uiContextMenuStrip1.Size = new System.Drawing.Size(203, 78);
  3043. this.uiContextMenuStrip1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
  3044. //
  3045. // toolStripMenuItem2
  3046. //
  3047. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  3048. this.toolStripMenuItem2.Size = new System.Drawing.Size(202, 26);
  3049. this.toolStripMenuItem2.Text = "单条清算";
  3050. this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
  3051. //
  3052. // toolStripMenuItem3
  3053. //
  3054. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  3055. this.toolStripMenuItem3.Size = new System.Drawing.Size(202, 26);
  3056. this.toolStripMenuItem3.Text = "查看HIS结算记录";
  3057. //
  3058. // Clearing
  3059. //
  3060. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  3061. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3062. this.ClientSize = new System.Drawing.Size(1200, 751);
  3063. this.Controls.Add(this.uiTabControl1);
  3064. this.Name = "Clearing";
  3065. this.Text = "对账与清算";
  3066. this.Load += new System.EventHandler(this.Clearing_Load);
  3067. this.uiTabControl1.ResumeLayout(false);
  3068. this.tabPage1.ResumeLayout(false);
  3069. this.uiPanel2.ResumeLayout(false);
  3070. this.uiTabControl3.ResumeLayout(false);
  3071. this.tabPage6.ResumeLayout(false);
  3072. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).EndInit();
  3073. this.tabPage7.ResumeLayout(false);
  3074. ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).EndInit();
  3075. this.tabPage8.ResumeLayout(false);
  3076. this.uiTabControl2.ResumeLayout(false);
  3077. this.tabPage4.ResumeLayout(false);
  3078. ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).EndInit();
  3079. this.cmsCheck.ResumeLayout(false);
  3080. this.tabPage5.ResumeLayout(false);
  3081. this.uiPanel1.ResumeLayout(false);
  3082. this.gbConditionSet.ResumeLayout(false);
  3083. this.uiGroupBox1.ResumeLayout(false);
  3084. this.uiGroupBox10.ResumeLayout(false);
  3085. this.gbDateTime.ResumeLayout(false);
  3086. this.tabPage10.ResumeLayout(false);
  3087. this.uiPanel7.ResumeLayout(false);
  3088. this.uiTabControl6.ResumeLayout(false);
  3089. this.tabPage14.ResumeLayout(false);
  3090. this.uiTabControl7.ResumeLayout(false);
  3091. this.tabPage15.ResumeLayout(false);
  3092. ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).EndInit();
  3093. this.cmdOthPlcCheck.ResumeLayout(false);
  3094. this.uiPanel6.ResumeLayout(false);
  3095. this.uiGroupBox7.ResumeLayout(false);
  3096. this.uiGroupBox8.ResumeLayout(false);
  3097. this.uiGroupBox9.ResumeLayout(false);
  3098. this.tabPage2.ResumeLayout(false);
  3099. this.uiPanel4.ResumeLayout(false);
  3100. this.uiTabControl4.ResumeLayout(false);
  3101. this.tabPage9.ResumeLayout(false);
  3102. ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).EndInit();
  3103. this.uiTabControl5.ResumeLayout(false);
  3104. this.tabPage12.ResumeLayout(false);
  3105. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).EndInit();
  3106. this.cmsClearing.ResumeLayout(false);
  3107. this.uiPanel3.ResumeLayout(false);
  3108. this.uiGroupBox2.ResumeLayout(false);
  3109. this.uiGroupBox3.ResumeLayout(false);
  3110. this.uiGroupBox4.ResumeLayout(false);
  3111. this.tabPage3.ResumeLayout(false);
  3112. ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).EndInit();
  3113. this.uiPanel5.ResumeLayout(false);
  3114. this.uiGroupBox6.ResumeLayout(false);
  3115. this.uiGroupBox5.ResumeLayout(false);
  3116. this.tabPage11.ResumeLayout(false);
  3117. this.tbQueryData.ResumeLayout(false);
  3118. this.tabPage13.ResumeLayout(false);
  3119. ((System.ComponentModel.ISupportInitialize)(this.dgv_2804_A)).EndInit();
  3120. this.tabPage16.ResumeLayout(false);
  3121. ((System.ComponentModel.ISupportInitialize)(this.dgv_2803_A)).EndInit();
  3122. this.uiPanel8.ResumeLayout(false);
  3123. this.uiGroupBox14.ResumeLayout(false);
  3124. this.uiGroupBox12.ResumeLayout(false);
  3125. this.uiGroupBox13.ResumeLayout(false);
  3126. this.uiContextMenuStrip1.ResumeLayout(false);
  3127. this.ResumeLayout(false);
  3128. }
  3129. #endregion
  3130. private Sunny.UI.UITabControl uiTabControl1;
  3131. private System.Windows.Forms.TabPage tabPage1;
  3132. private Sunny.UI.UIPanel uiPanel2;
  3133. private Sunny.UI.UIPanel uiPanel1;
  3134. private System.Windows.Forms.TabPage tabPage3;
  3135. private Sunny.UI.UITabControl uiTabControl3;
  3136. private System.Windows.Forms.TabPage tabPage6;
  3137. private System.Windows.Forms.TabPage tabPage7;
  3138. private System.Windows.Forms.TabPage tabPage8;
  3139. private Sunny.UI.UITabControl uiTabControl2;
  3140. private System.Windows.Forms.TabPage tabPage4;
  3141. private System.Windows.Forms.TabPage tabPage5;
  3142. private Sunny.UI.UIGroupBox uiGroupBox1;
  3143. private Sunny.UI.UIButton btnClose;
  3144. private Sunny.UI.UIButton btnBatchCheck;
  3145. private Sunny.UI.UIGroupBox gbDateTime;
  3146. private Sunny.UI.UIDatetimePicker dpED;
  3147. private Sunny.UI.UIDatetimePicker dpST;
  3148. private Sunny.UI.UIGroupBox gbConditionSet;
  3149. private Sunny.UI.UICheckBoxGroup cbgGroupSet;
  3150. private Sunny.UI.UILabel uiLabel1;
  3151. private Sunny.UI.UIComboBox cbxValid;
  3152. private Sunny.UI.UILabel uiLabel5;
  3153. private Sunny.UI.UILabel uiLabel4;
  3154. private Sunny.UI.UIComboBox cbxClrType;
  3155. private Sunny.UI.UILabel uiLabel3;
  3156. private Sunny.UI.UIComboBox cbxInsuType;
  3157. private Sunny.UI.UILabel uiLabel2;
  3158. private Sunny.UI.UIDataGridView dgvHisSettlRec;
  3159. private Sunny.UI.UIDataGridView dgvCenterSettlRec;
  3160. private Sunny.UI.UIDataGridView dgvSettlSummary;
  3161. private Sunny.UI.UIRichTextBox rtbCheckDetailLog;
  3162. private Sunny.UI.UIRichTextBox rtbCheckLog;
  3163. private Sunny.UI.UITextBox tbSettlOption;
  3164. private Sunny.UI.UIContextMenuStrip cmsCheck;
  3165. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Single;
  3166. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Single;
  3167. private System.Windows.Forms.ToolStripMenuItem tsmCheck_Batch;
  3168. private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Batch;
  3169. private System.Windows.Forms.ToolStripMenuItem tsmHisRecord;
  3170. private System.Windows.Forms.ToolStripMenuItem tsmAICheck;
  3171. private Sunny.UI.UIComboBox cbxInterface;
  3172. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  3173. private System.Windows.Forms.ToolStripMenuItem 导出TXTToolStripMenuItem;
  3174. private System.Windows.Forms.ToolStripMenuItem tsmExport;
  3175. private System.Windows.Forms.ToolStripMenuItem tsmCompress;
  3176. private System.Windows.Forms.ToolStripMenuItem tsmUploadZIP;
  3177. private System.Windows.Forms.ToolStripMenuItem tsm3202;
  3178. private System.Windows.Forms.ToolStripMenuItem tsmDownload;
  3179. private System.Windows.Forms.ToolStripMenuItem tsmUnCompress;
  3180. private System.Windows.Forms.ToolStripMenuItem tsmImport;
  3181. private System.Windows.Forms.ToolStripMenuItem tsmZIPToSDec;
  3182. private Sunny.UI.UISymbolButton btnReduceOndDay;
  3183. private Sunny.UI.UISymbolButton btnAddOneDay;
  3184. private System.Windows.Forms.TabPage tabPage2;
  3185. private Sunny.UI.UIPanel uiPanel4;
  3186. private Sunny.UI.UITabControl uiTabControl4;
  3187. private System.Windows.Forms.TabPage tabPage9;
  3188. private Sunny.UI.UIDataGridView dgvHisSettlRec_2;
  3189. private Sunny.UI.UITabControl uiTabControl5;
  3190. private System.Windows.Forms.TabPage tabPage12;
  3191. private Sunny.UI.UIDataGridView dgvClearingSum;
  3192. private Sunny.UI.UIPanel uiPanel3;
  3193. private Sunny.UI.UIGroupBox uiGroupBox4;
  3194. private Sunny.UI.UISymbolButton btnReduceMonth;
  3195. private Sunny.UI.UISymbolButton btnAddMonth;
  3196. private Sunny.UI.UIDatetimePicker dpED_2;
  3197. private Sunny.UI.UIDatetimePicker dpST_2;
  3198. private Sunny.UI.UIContextMenuStrip cmsClearing;
  3199. private System.Windows.Forms.ToolStripMenuItem tmsClearing_2;
  3200. private System.Windows.Forms.ToolStripMenuItem tmsHisSettlRecord_2;
  3201. private Sunny.UI.UIDataGridView dgvClearingData;
  3202. private Sunny.UI.UIPanel uiPanel5;
  3203. private Sunny.UI.UIButton btnClose_3;
  3204. private Sunny.UI.UIButton btnQueryClearing;
  3205. private Sunny.UI.UIGroupBox uiGroupBox5;
  3206. private Sunny.UI.UIDatetimePicker dpED_3;
  3207. private Sunny.UI.UIDatetimePicker dpST_3;
  3208. private Sunny.UI.UIRadioButtonGroup rbgTimeWay;
  3209. private Sunny.UI.UIGroupBox uiGroupBox6;
  3210. private Sunny.UI.UIComboBox cbInterface_3;
  3211. private Sunny.UI.UIComboBox cbValid_3;
  3212. private Sunny.UI.UILabel uiLabel13;
  3213. private Sunny.UI.UILabel uiLabel17;
  3214. private Sunny.UI.UIButton btnCancleClearing;
  3215. private System.Windows.Forms.TabPage tabPage10;
  3216. private Sunny.UI.UIPanel uiPanel7;
  3217. private Sunny.UI.UITabControl uiTabControl6;
  3218. private System.Windows.Forms.TabPage tabPage14;
  3219. private Sunny.UI.UIRichTextBox rtbOthCheckResultRecord;
  3220. private Sunny.UI.UITabControl uiTabControl7;
  3221. private System.Windows.Forms.TabPage tabPage15;
  3222. private Sunny.UI.UIDataGridView dgvOthCheck;
  3223. private Sunny.UI.UIPanel uiPanel6;
  3224. private Sunny.UI.UIGroupBox uiGroupBox7;
  3225. private Sunny.UI.UITextBox uiTextBox1;
  3226. private Sunny.UI.UIComboBox cbxValid_O;
  3227. private Sunny.UI.UILabel uiLabel12;
  3228. private Sunny.UI.UILabel uiLabel14;
  3229. private Sunny.UI.UIComboBox cbxClrType_O;
  3230. private Sunny.UI.UILabel uiLabel15;
  3231. private Sunny.UI.UIComboBox uiComboBox4;
  3232. private Sunny.UI.UILabel uiLabel16;
  3233. private Sunny.UI.UIGroupBox uiGroupBox8;
  3234. private Sunny.UI.UIButton uiButton1;
  3235. private Sunny.UI.UIButton uiButton2;
  3236. private Sunny.UI.UIButton uiButton3;
  3237. private Sunny.UI.UIGroupBox uiGroupBox9;
  3238. private Sunny.UI.UISymbolButton uiSymbolButton1;
  3239. private Sunny.UI.UISymbolButton uiSymbolButton2;
  3240. private Sunny.UI.UIDatetimePicker dpED_O;
  3241. private Sunny.UI.UIDatetimePicker dpST_O;
  3242. private Sunny.UI.UIContextMenuStrip cmdOthPlcCheck;
  3243. private System.Windows.Forms.ToolStripMenuItem tsmOthPlcCheck;
  3244. private System.Windows.Forms.ToolStripMenuItem tsmHandCheck;
  3245. private System.Windows.Forms.RichTextBox tbTmp;
  3246. private Sunny.UI.UIButton btnQuerySettlSummary;
  3247. private Sunny.UI.UIGroupBox uiGroupBox3;
  3248. private Sunny.UI.UIButton btnClose_2;
  3249. private Sunny.UI.UIButton btnPatchClr;
  3250. private Sunny.UI.UIButton btnQueryClrSum;
  3251. private Sunny.UI.UIGroupBox uiGroupBox10;
  3252. private Sunny.UI.UIButton uiButton4;
  3253. private Sunny.UI.UIButton uiButton5;
  3254. private Sunny.UI.UIButton Btn_Query;
  3255. private Sunny.UI.UIContextMenuStrip uiContextMenuStrip1;
  3256. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  3257. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
  3258. private Sunny.UI.UIGroupBox uiGroupBox2;
  3259. private Sunny.UI.UITextBox tbInsuPlc;
  3260. private Sunny.UI.UILabel uiLabel18;
  3261. private Sunny.UI.UIComboBox cbOtherPlaceFlag;
  3262. private Sunny.UI.UILabel uiLabel19;
  3263. private Sunny.UI.UIComboBox cbClrWay_2;
  3264. private Sunny.UI.UILabel uiLabel11;
  3265. private Sunny.UI.UIComboBox cbInterface_2;
  3266. private Sunny.UI.UITextBox tbSettlOption_2;
  3267. private Sunny.UI.UIComboBox cbValid_2;
  3268. private Sunny.UI.UILabel uiLabel6;
  3269. private Sunny.UI.UILabel uiLabel7;
  3270. private Sunny.UI.UIComboBox cbClrType_2;
  3271. private Sunny.UI.UILabel uiLabel8;
  3272. private Sunny.UI.UIComboBox cbInsutype_2;
  3273. private Sunny.UI.UILabel uiLabel9;
  3274. private Sunny.UI.UILabel uiLabel10;
  3275. private System.Windows.Forms.TabPage tabPage11;
  3276. private System.Windows.Forms.ToolStripMenuItem tms_Clearing2801A;
  3277. private Sunny.UI.UITabControl tbQueryData;
  3278. private System.Windows.Forms.TabPage tabPage13;
  3279. private Sunny.UI.UIDataGridView dgv_2804_A;
  3280. private Sunny.UI.UIPanel uiPanel8;
  3281. private Sunny.UI.UIGroupBox uiGroupBox12;
  3282. private Sunny.UI.UIButton uiButton6;
  3283. private Sunny.UI.UIButton btbQuery;
  3284. private Sunny.UI.UIGroupBox uiGroupBox13;
  3285. private System.Windows.Forms.TabPage tabPage16;
  3286. private Sunny.UI.UIDataGridView dgv_2803_A;
  3287. private Sunny.UI.UIGroupBox uiGroupBox14;
  3288. private Sunny.UI.UIComboBox cbb_ClrWay;
  3289. private Sunny.UI.UILabel uiLabel20;
  3290. private Sunny.UI.UITextBox tb_Admdvs;
  3291. private Sunny.UI.UILabel uiLabel21;
  3292. private Sunny.UI.UIComboBox uiComboBox3;
  3293. private Sunny.UI.UILabel uiLabel23;
  3294. private Sunny.UI.UIRadioButtonGroup rbg_QueryType;
  3295. private Sunny.UI.UIDatetimePicker dt_DateYM;
  3296. }
  3297. }