Clearing.Designer.cs 219 KB

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