Clearing.Designer.cs 185 KB

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