Clearing.Designer.cs 195 KB

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