Clearing.designer.cs 199 KB

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