123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817 |
- namespace PTMedicalInsurance.Forms
- {
- partial class Clearing
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle116 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle117 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle118 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle119 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle120 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle121 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle122 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle123 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle124 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle125 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle126 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle127 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle128 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle129 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle130 = new System.Windows.Forms.DataGridViewCellStyle();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Clearing));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle106 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle107 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle108 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle109 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle110 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle86 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle87 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle88 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle89 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle90 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle131 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle132 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle133 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle134 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle135 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle111 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle112 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle113 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle114 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle115 = new System.Windows.Forms.DataGridViewCellStyle();
- this.uiTabControl1 = new Sunny.UI.UITabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.uiPanel2 = new Sunny.UI.UIPanel();
- this.uiTabControl3 = new Sunny.UI.UITabControl();
- this.tabPage6 = new System.Windows.Forms.TabPage();
- this.dgvHisSettlRec = new Sunny.UI.UIDataGridView();
- this.tabPage7 = new System.Windows.Forms.TabPage();
- this.dgvCenterSettlRec = new Sunny.UI.UIDataGridView();
- this.tabPage8 = new System.Windows.Forms.TabPage();
- this.rtbCheckDetailLog = new Sunny.UI.UIRichTextBox();
- this.uiTabControl2 = new Sunny.UI.UITabControl();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.dgvSettlSummary = new Sunny.UI.UIDataGridView();
- this.cmsCheck = new Sunny.UI.UIContextMenuStrip();
- this.tsmCheck_Single = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmCheckDetail_Single = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmCheck_Batch = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmCheckDetail_Batch = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmHisRecord = new System.Windows.Forms.ToolStripMenuItem();
- this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmAICheck = new System.Windows.Forms.ToolStripMenuItem();
- this.导出TXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmExport = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmCompress = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmZIPToSDec = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmUploadZIP = new System.Windows.Forms.ToolStripMenuItem();
- this.tsm3202 = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmDownload = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmUnCompress = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmImport = new System.Windows.Forms.ToolStripMenuItem();
- this.tsmHandCheck = new System.Windows.Forms.ToolStripMenuItem();
- this.tabPage5 = new System.Windows.Forms.TabPage();
- this.rtbCheckLog = new Sunny.UI.UIRichTextBox();
- this.uiPanel1 = new Sunny.UI.UIPanel();
- this.tbTmp = new System.Windows.Forms.RichTextBox();
- this.gbConditionSet = new Sunny.UI.UIGroupBox();
- this.chkReverSalFlag = new Sunny.UI.UICheckBox();
- this.cbxInterface = new Sunny.UI.UIComboBox();
- this.tbSettlOption = new Sunny.UI.UITextBox();
- this.cbxValid = new Sunny.UI.UIComboBox();
- this.uiLabel5 = new Sunny.UI.UILabel();
- this.uiLabel4 = new Sunny.UI.UILabel();
- this.cbxClrType = new Sunny.UI.UIComboBox();
- this.uiLabel3 = new Sunny.UI.UILabel();
- this.cbxInsuType = new Sunny.UI.UIComboBox();
- this.uiLabel2 = new Sunny.UI.UILabel();
- this.uiLabel1 = new Sunny.UI.UILabel();
- this.cbgGroupSet = new Sunny.UI.UICheckBoxGroup();
- this.uiGroupBox1 = new Sunny.UI.UIGroupBox();
- this.uiGroupBox10 = new Sunny.UI.UIGroupBox();
- this.uiButton4 = new Sunny.UI.UIButton();
- this.uiButton5 = new Sunny.UI.UIButton();
- this.Btn_Query = new Sunny.UI.UIButton();
- this.btnQuerySettlSummary = new Sunny.UI.UIButton();
- this.btnClose = new Sunny.UI.UIButton();
- this.btnBatchCheck = new Sunny.UI.UIButton();
- this.gbDateTime = new Sunny.UI.UIGroupBox();
- this.btnReduceOndDay = new Sunny.UI.UISymbolButton();
- this.btnAddOneDay = new Sunny.UI.UISymbolButton();
- this.dpED = new Sunny.UI.UIDatetimePicker();
- this.dpST = new Sunny.UI.UIDatetimePicker();
- this.tabPage10 = new System.Windows.Forms.TabPage();
- this.uiPanel7 = new Sunny.UI.UIPanel();
- this.uiTabControl6 = new Sunny.UI.UITabControl();
- this.tabPage14 = new System.Windows.Forms.TabPage();
- this.rtbOthCheckResultRecord = new Sunny.UI.UIRichTextBox();
- this.uiTabControl7 = new Sunny.UI.UITabControl();
- this.tabPage15 = new System.Windows.Forms.TabPage();
- this.dgvOthCheck = new Sunny.UI.UIDataGridView();
- this.cmdOthPlcCheck = new Sunny.UI.UIContextMenuStrip();
- this.tsmOthPlcCheck = new System.Windows.Forms.ToolStripMenuItem();
- this.uiPanel6 = new Sunny.UI.UIPanel();
- this.uiGroupBox7 = new Sunny.UI.UIGroupBox();
- this.uiTextBox1 = new Sunny.UI.UITextBox();
- this.cbxValid_O = new Sunny.UI.UIComboBox();
- this.uiLabel12 = new Sunny.UI.UILabel();
- this.uiLabel14 = new Sunny.UI.UILabel();
- this.cbxClrType_O = new Sunny.UI.UIComboBox();
- this.uiLabel15 = new Sunny.UI.UILabel();
- this.uiComboBox4 = new Sunny.UI.UIComboBox();
- this.uiLabel16 = new Sunny.UI.UILabel();
- this.uiGroupBox8 = new Sunny.UI.UIGroupBox();
- this.uiButton1 = new Sunny.UI.UIButton();
- this.uiButton2 = new Sunny.UI.UIButton();
- this.uiButton3 = new Sunny.UI.UIButton();
- this.uiGroupBox9 = new Sunny.UI.UIGroupBox();
- this.uiSymbolButton1 = new Sunny.UI.UISymbolButton();
- this.uiSymbolButton2 = new Sunny.UI.UISymbolButton();
- this.dpED_O = new Sunny.UI.UIDatetimePicker();
- this.dpST_O = new Sunny.UI.UIDatetimePicker();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.uiPanel4 = new Sunny.UI.UIPanel();
- this.uiTabControl4 = new Sunny.UI.UITabControl();
- this.tabPage9 = new System.Windows.Forms.TabPage();
- this.dgvHisSettlRec_2 = new Sunny.UI.UIDataGridView();
- this.uiTabControl5 = new Sunny.UI.UITabControl();
- this.tabPage12 = new System.Windows.Forms.TabPage();
- this.dgvClearingSum = new Sunny.UI.UIDataGridView();
- this.cmsClearing = new Sunny.UI.UIContextMenuStrip();
- this.tmsClearing_2 = new System.Windows.Forms.ToolStripMenuItem();
- this.tmsHisSettlRecord_2 = new System.Windows.Forms.ToolStripMenuItem();
- this.uiPanel3 = new Sunny.UI.UIPanel();
- this.uiGroupBox3 = new Sunny.UI.UIGroupBox();
- this.btnClose_2 = new Sunny.UI.UIButton();
- this.btnPatchClr = new Sunny.UI.UIButton();
- this.btnQueryClrSum = new Sunny.UI.UIButton();
- this.uiGroupBox2 = new Sunny.UI.UIGroupBox();
- this.tbInsuPlc = new Sunny.UI.UITextBox();
- this.uiLabel18 = new Sunny.UI.UILabel();
- this.cbOtherPlaceFlag = new Sunny.UI.UIComboBox();
- this.uiLabel19 = new Sunny.UI.UILabel();
- this.cbClrWay_2 = new Sunny.UI.UIComboBox();
- this.uiLabel11 = new Sunny.UI.UILabel();
- this.cbInterface_2 = new Sunny.UI.UIComboBox();
- this.tbSettlOption_2 = new Sunny.UI.UITextBox();
- this.cbValid_2 = new Sunny.UI.UIComboBox();
- this.uiLabel6 = new Sunny.UI.UILabel();
- this.uiLabel7 = new Sunny.UI.UILabel();
- this.cbClrType_2 = new Sunny.UI.UIComboBox();
- this.uiLabel8 = new Sunny.UI.UILabel();
- this.cbInsutype_2 = new Sunny.UI.UIComboBox();
- this.uiLabel9 = new Sunny.UI.UILabel();
- this.uiLabel10 = new Sunny.UI.UILabel();
- this.uiGroupBox4 = new Sunny.UI.UIGroupBox();
- this.btnReduceMonth = new Sunny.UI.UISymbolButton();
- this.btnAddMonth = new Sunny.UI.UISymbolButton();
- this.dpED_2 = new Sunny.UI.UIDatetimePicker();
- this.dpST_2 = new Sunny.UI.UIDatetimePicker();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.dgvClearingData = new Sunny.UI.UIDataGridView();
- this.uiPanel5 = new Sunny.UI.UIPanel();
- this.btnCancleClearing = new Sunny.UI.UIButton();
- this.uiGroupBox6 = new Sunny.UI.UIGroupBox();
- this.cbInterface_3 = new Sunny.UI.UIComboBox();
- this.cbValid_3 = new Sunny.UI.UIComboBox();
- this.uiLabel13 = new Sunny.UI.UILabel();
- this.uiLabel17 = new Sunny.UI.UILabel();
- this.rbgTimeWay = new Sunny.UI.UIRadioButtonGroup();
- this.btnClose_3 = new Sunny.UI.UIButton();
- this.btnQueryClearing = new Sunny.UI.UIButton();
- this.uiGroupBox5 = new Sunny.UI.UIGroupBox();
- this.dpED_3 = new Sunny.UI.UIDatetimePicker();
- this.dpST_3 = new Sunny.UI.UIDatetimePicker();
- this.uiCheckBox1 = new Sunny.UI.UICheckBox();
- this.uiTabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- this.uiPanel2.SuspendLayout();
- this.uiTabControl3.SuspendLayout();
- this.tabPage6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).BeginInit();
- this.tabPage7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).BeginInit();
- this.tabPage8.SuspendLayout();
- this.uiTabControl2.SuspendLayout();
- this.tabPage4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).BeginInit();
- this.cmsCheck.SuspendLayout();
- this.tabPage5.SuspendLayout();
- this.uiPanel1.SuspendLayout();
- this.gbConditionSet.SuspendLayout();
- this.uiGroupBox1.SuspendLayout();
- this.uiGroupBox10.SuspendLayout();
- this.gbDateTime.SuspendLayout();
- this.tabPage10.SuspendLayout();
- this.uiPanel7.SuspendLayout();
- this.uiTabControl6.SuspendLayout();
- this.tabPage14.SuspendLayout();
- this.uiTabControl7.SuspendLayout();
- this.tabPage15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).BeginInit();
- this.cmdOthPlcCheck.SuspendLayout();
- this.uiPanel6.SuspendLayout();
- this.uiGroupBox7.SuspendLayout();
- this.uiGroupBox8.SuspendLayout();
- this.uiGroupBox9.SuspendLayout();
- this.tabPage2.SuspendLayout();
- this.uiPanel4.SuspendLayout();
- this.uiTabControl4.SuspendLayout();
- this.tabPage9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).BeginInit();
- this.uiTabControl5.SuspendLayout();
- this.tabPage12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).BeginInit();
- this.cmsClearing.SuspendLayout();
- this.uiPanel3.SuspendLayout();
- this.uiGroupBox3.SuspendLayout();
- this.uiGroupBox2.SuspendLayout();
- this.uiGroupBox4.SuspendLayout();
- this.tabPage3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).BeginInit();
- this.uiPanel5.SuspendLayout();
- this.uiGroupBox6.SuspendLayout();
- this.uiGroupBox5.SuspendLayout();
- this.SuspendLayout();
- //
- // uiTabControl1
- //
- this.uiTabControl1.Controls.Add(this.tabPage1);
- this.uiTabControl1.Controls.Add(this.tabPage10);
- this.uiTabControl1.Controls.Add(this.tabPage2);
- this.uiTabControl1.Controls.Add(this.tabPage3);
- this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ItemSize = new System.Drawing.Size(150, 30);
- this.uiTabControl1.Location = new System.Drawing.Point(0, 0);
- this.uiTabControl1.MainPage = "";
- this.uiTabControl1.Name = "uiTabControl1";
- this.uiTabControl1.SelectedIndex = 0;
- this.uiTabControl1.Size = new System.Drawing.Size(1200, 796);
- this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl1.TabIndex = 0;
- this.uiTabControl1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.uiPanel2);
- this.tabPage1.Controls.Add(this.uiPanel1);
- this.tabPage1.Location = new System.Drawing.Point(0, 30);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1200, 766);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "本地对账";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // uiPanel2
- //
- this.uiPanel2.Controls.Add(this.uiTabControl3);
- this.uiPanel2.Controls.Add(this.uiTabControl2);
- this.uiPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiPanel2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel2.Location = new System.Drawing.Point(228, 0);
- this.uiPanel2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel2.Name = "uiPanel2";
- this.uiPanel2.Size = new System.Drawing.Size(972, 766);
- this.uiPanel2.TabIndex = 3;
- this.uiPanel2.Text = null;
- this.uiPanel2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl3
- //
- this.uiTabControl3.Controls.Add(this.tabPage6);
- this.uiTabControl3.Controls.Add(this.tabPage7);
- this.uiTabControl3.Controls.Add(this.tabPage8);
- this.uiTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl3.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl3.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl3.Location = new System.Drawing.Point(0, 424);
- this.uiTabControl3.MainPage = "";
- this.uiTabControl3.Name = "uiTabControl3";
- this.uiTabControl3.SelectedIndex = 0;
- this.uiTabControl3.Size = new System.Drawing.Size(972, 342);
- this.uiTabControl3.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl3.TabIndex = 1;
- this.uiTabControl3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage6
- //
- this.tabPage6.Controls.Add(this.dgvHisSettlRec);
- this.tabPage6.Location = new System.Drawing.Point(0, 25);
- this.tabPage6.Name = "tabPage6";
- this.tabPage6.Size = new System.Drawing.Size(972, 317);
- this.tabPage6.TabIndex = 0;
- this.tabPage6.Text = "HIS结算记录";
- this.tabPage6.UseVisualStyleBackColor = true;
- //
- // dgvHisSettlRec
- //
- this.dgvHisSettlRec.AllowUserToAddRows = false;
- dataGridViewCellStyle116.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle116;
- this.dgvHisSettlRec.BackgroundColor = System.Drawing.Color.White;
- this.dgvHisSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle117.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle117.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle117.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle117.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle117.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle117.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle117.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvHisSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle117;
- this.dgvHisSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle118.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle118.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle118.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle118.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle118.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle118.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle118.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvHisSettlRec.DefaultCellStyle = dataGridViewCellStyle118;
- this.dgvHisSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvHisSettlRec.EnableHeadersVisualStyles = false;
- this.dgvHisSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvHisSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec.Location = new System.Drawing.Point(0, 0);
- this.dgvHisSettlRec.Name = "dgvHisSettlRec";
- this.dgvHisSettlRec.ReadOnly = true;
- dataGridViewCellStyle119.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle119.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle119.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle119.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle119.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle119.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle119.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvHisSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle119;
- this.dgvHisSettlRec.RowHeadersWidth = 51;
- dataGridViewCellStyle120.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle120.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvHisSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle120;
- this.dgvHisSettlRec.RowTemplate.Height = 23;
- this.dgvHisSettlRec.SelectedIndex = -1;
- this.dgvHisSettlRec.Size = new System.Drawing.Size(972, 317);
- this.dgvHisSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec.TabIndex = 1;
- this.dgvHisSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgvHisSettlRec.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvHisSettlRec_RowStateChanged);
- //
- // tabPage7
- //
- this.tabPage7.Controls.Add(this.dgvCenterSettlRec);
- this.tabPage7.Location = new System.Drawing.Point(0, 25);
- this.tabPage7.Name = "tabPage7";
- this.tabPage7.Size = new System.Drawing.Size(972, 317);
- this.tabPage7.TabIndex = 1;
- this.tabPage7.Text = "中心结算记录";
- this.tabPage7.UseVisualStyleBackColor = true;
- //
- // dgvCenterSettlRec
- //
- this.dgvCenterSettlRec.AllowUserToAddRows = false;
- dataGridViewCellStyle121.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvCenterSettlRec.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle121;
- this.dgvCenterSettlRec.BackgroundColor = System.Drawing.Color.White;
- this.dgvCenterSettlRec.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle122.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle122.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle122.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle122.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle122.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle122.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle122.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvCenterSettlRec.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle122;
- this.dgvCenterSettlRec.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle123.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle123.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle123.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle123.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle123.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle123.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle123.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvCenterSettlRec.DefaultCellStyle = dataGridViewCellStyle123;
- this.dgvCenterSettlRec.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvCenterSettlRec.EnableHeadersVisualStyles = false;
- this.dgvCenterSettlRec.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvCenterSettlRec.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvCenterSettlRec.Location = new System.Drawing.Point(0, 0);
- this.dgvCenterSettlRec.Name = "dgvCenterSettlRec";
- dataGridViewCellStyle124.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle124.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle124.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle124.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle124.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle124.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle124.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvCenterSettlRec.RowHeadersDefaultCellStyle = dataGridViewCellStyle124;
- this.dgvCenterSettlRec.RowHeadersWidth = 51;
- dataGridViewCellStyle125.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle125.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvCenterSettlRec.RowsDefaultCellStyle = dataGridViewCellStyle125;
- this.dgvCenterSettlRec.RowTemplate.Height = 23;
- this.dgvCenterSettlRec.SelectedIndex = -1;
- this.dgvCenterSettlRec.Size = new System.Drawing.Size(972, 317);
- this.dgvCenterSettlRec.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvCenterSettlRec.TabIndex = 1;
- this.dgvCenterSettlRec.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage8
- //
- this.tabPage8.Controls.Add(this.rtbCheckDetailLog);
- this.tabPage8.Location = new System.Drawing.Point(0, 25);
- this.tabPage8.Name = "tabPage8";
- this.tabPage8.Size = new System.Drawing.Size(972, 317);
- this.tabPage8.TabIndex = 2;
- this.tabPage8.Text = "对明细账结果记录";
- this.tabPage8.UseVisualStyleBackColor = true;
- //
- // rtbCheckDetailLog
- //
- this.rtbCheckDetailLog.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rtbCheckDetailLog.FillColor = System.Drawing.Color.White;
- this.rtbCheckDetailLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rtbCheckDetailLog.Location = new System.Drawing.Point(0, 0);
- this.rtbCheckDetailLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rtbCheckDetailLog.MinimumSize = new System.Drawing.Size(1, 1);
- this.rtbCheckDetailLog.Name = "rtbCheckDetailLog";
- this.rtbCheckDetailLog.Padding = new System.Windows.Forms.Padding(2);
- this.rtbCheckDetailLog.ShowText = false;
- this.rtbCheckDetailLog.Size = new System.Drawing.Size(972, 317);
- this.rtbCheckDetailLog.Style = Sunny.UI.UIStyle.Custom;
- this.rtbCheckDetailLog.TabIndex = 0;
- this.rtbCheckDetailLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rtbCheckDetailLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl2
- //
- this.uiTabControl2.Controls.Add(this.tabPage4);
- this.uiTabControl2.Controls.Add(this.tabPage5);
- this.uiTabControl2.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTabControl2.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl2.Location = new System.Drawing.Point(0, 0);
- this.uiTabControl2.MainPage = "";
- this.uiTabControl2.Name = "uiTabControl2";
- this.uiTabControl2.SelectedIndex = 0;
- this.uiTabControl2.Size = new System.Drawing.Size(972, 424);
- this.uiTabControl2.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl2.TabIndex = 0;
- this.uiTabControl2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.dgvSettlSummary);
- this.tabPage4.Location = new System.Drawing.Point(0, 25);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(972, 399);
- this.tabPage4.TabIndex = 0;
- this.tabPage4.Text = "结算汇总数据";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // dgvSettlSummary
- //
- this.dgvSettlSummary.AllowUserToAddRows = false;
- dataGridViewCellStyle126.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvSettlSummary.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle126;
- this.dgvSettlSummary.BackgroundColor = System.Drawing.Color.White;
- this.dgvSettlSummary.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
- dataGridViewCellStyle127.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle127.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle127.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle127.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle127.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle127.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle127.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettlSummary.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle127;
- this.dgvSettlSummary.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvSettlSummary.ContextMenuStrip = this.cmsCheck;
- dataGridViewCellStyle128.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle128.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle128.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle128.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle128.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle128.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle128.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvSettlSummary.DefaultCellStyle = dataGridViewCellStyle128;
- this.dgvSettlSummary.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvSettlSummary.EnableHeadersVisualStyles = false;
- this.dgvSettlSummary.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvSettlSummary.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvSettlSummary.Location = new System.Drawing.Point(0, 0);
- this.dgvSettlSummary.Name = "dgvSettlSummary";
- this.dgvSettlSummary.ReadOnly = true;
- dataGridViewCellStyle129.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle129.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle129.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle129.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle129.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle129.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle129.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvSettlSummary.RowHeadersDefaultCellStyle = dataGridViewCellStyle129;
- this.dgvSettlSummary.RowHeadersWidth = 30;
- this.dgvSettlSummary.RowHeight = 30;
- dataGridViewCellStyle130.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle130.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvSettlSummary.RowsDefaultCellStyle = dataGridViewCellStyle130;
- this.dgvSettlSummary.RowTemplate.Height = 30;
- this.dgvSettlSummary.SelectedIndex = -1;
- this.dgvSettlSummary.Size = new System.Drawing.Size(972, 399);
- this.dgvSettlSummary.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvSettlSummary.TabIndex = 0;
- this.dgvSettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgvSettlSummary.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvSettlSummary_RowStateChanged);
- //
- // cmsCheck
- //
- this.cmsCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.cmsCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmsCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.cmsCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsmCheck_Single,
- this.tsmCheckDetail_Single,
- this.tsmCheck_Batch,
- this.tsmCheckDetail_Batch,
- this.tsmHisRecord,
- this.toolStripMenuItem1,
- this.tsmAICheck,
- this.导出TXTToolStripMenuItem});
- this.cmsCheck.Name = "cmsCheck";
- this.cmsCheck.Size = new System.Drawing.Size(235, 212);
- this.cmsCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.cmsCheck.Opening += new System.ComponentModel.CancelEventHandler(this.cmsCheck_Opening);
- //
- // tsmCheck_Single
- //
- this.tsmCheck_Single.Name = "tsmCheck_Single";
- this.tsmCheck_Single.Size = new System.Drawing.Size(234, 26);
- this.tsmCheck_Single.Text = "单条对总账";
- this.tsmCheck_Single.Click += new System.EventHandler(this.tsmCheck_Single_Click);
- //
- // tsmCheckDetail_Single
- //
- this.tsmCheckDetail_Single.Name = "tsmCheckDetail_Single";
- this.tsmCheckDetail_Single.Size = new System.Drawing.Size(234, 26);
- this.tsmCheckDetail_Single.Text = "单条对明细账";
- this.tsmCheckDetail_Single.Click += new System.EventHandler(this.tsmCheckDetail_Single_Click);
- //
- // tsmCheck_Batch
- //
- this.tsmCheck_Batch.Name = "tsmCheck_Batch";
- this.tsmCheck_Batch.Size = new System.Drawing.Size(234, 26);
- this.tsmCheck_Batch.Text = "批量对总账";
- this.tsmCheck_Batch.Click += new System.EventHandler(this.tsmCheck_Batch_Click);
- //
- // tsmCheckDetail_Batch
- //
- this.tsmCheckDetail_Batch.Name = "tsmCheckDetail_Batch";
- this.tsmCheckDetail_Batch.Size = new System.Drawing.Size(234, 26);
- this.tsmCheckDetail_Batch.Text = "批量对明细账";
- this.tsmCheckDetail_Batch.Click += new System.EventHandler(this.tsmCheckDetail_Batch_Click);
- //
- // tsmHisRecord
- //
- this.tsmHisRecord.Name = "tsmHisRecord";
- this.tsmHisRecord.Size = new System.Drawing.Size(234, 26);
- this.tsmHisRecord.Text = "查看HIS记录明细 ";
- this.tsmHisRecord.Click += new System.EventHandler(this.tsmHisRecord_Click);
- //
- // toolStripMenuItem1
- //
- this.toolStripMenuItem1.Name = "toolStripMenuItem1";
- this.toolStripMenuItem1.Size = new System.Drawing.Size(234, 26);
- this.toolStripMenuItem1.Text = "toolStripMenuItem1";
- this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
- //
- // tsmAICheck
- //
- this.tsmAICheck.Name = "tsmAICheck";
- this.tsmAICheck.Size = new System.Drawing.Size(234, 26);
- this.tsmAICheck.Text = "智能比对";
- this.tsmAICheck.Click += new System.EventHandler(this.tsmAICheck_Click);
- //
- // 导出TXTToolStripMenuItem
- //
- this.导出TXTToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsmExport,
- this.tsmCompress,
- this.tsmZIPToSDec,
- this.tsmUploadZIP,
- this.tsm3202,
- this.tsmDownload,
- this.tsmUnCompress,
- this.tsmImport,
- this.tsmHandCheck});
- this.导出TXTToolStripMenuItem.Name = "导出TXTToolStripMenuItem";
- this.导出TXTToolStripMenuItem.Size = new System.Drawing.Size(234, 26);
- this.导出TXTToolStripMenuItem.Text = "附属功能";
- //
- // tsmExport
- //
- this.tsmExport.Name = "tsmExport";
- this.tsmExport.Size = new System.Drawing.Size(217, 26);
- this.tsmExport.Text = "导出TXT";
- this.tsmExport.Click += new System.EventHandler(this.tsmExport_Click);
- //
- // tsmCompress
- //
- this.tsmCompress.Name = "tsmCompress";
- this.tsmCompress.Size = new System.Drawing.Size(217, 26);
- this.tsmCompress.Text = "TXT压缩为ZIP";
- this.tsmCompress.Click += new System.EventHandler(this.tsmCompress_Click);
- //
- // tsmZIPToSDec
- //
- this.tsmZIPToSDec.Name = "tsmZIPToSDec";
- this.tsmZIPToSDec.Size = new System.Drawing.Size(217, 26);
- this.tsmZIPToSDec.Text = "ZIP转为有符号整数";
- this.tsmZIPToSDec.Click += new System.EventHandler(this.tsmZIPToSDec_Click);
- //
- // tsmUploadZIP
- //
- this.tsmUploadZIP.Name = "tsmUploadZIP";
- this.tsmUploadZIP.Size = new System.Drawing.Size(217, 26);
- this.tsmUploadZIP.Text = "上传ZIP";
- this.tsmUploadZIP.Click += new System.EventHandler(this.tsmUploadZIP_Click);
- //
- // tsm3202
- //
- this.tsm3202.Name = "tsm3202";
- this.tsm3202.Size = new System.Drawing.Size(217, 26);
- this.tsm3202.Text = "明细对账(3202)";
- this.tsm3202.Click += new System.EventHandler(this.tsm3202_Click);
- //
- // tsmDownload
- //
- this.tsmDownload.Name = "tsmDownload";
- this.tsmDownload.Size = new System.Drawing.Size(217, 26);
- this.tsmDownload.Text = "下载文件";
- this.tsmDownload.Click += new System.EventHandler(this.tsmDownload_Click);
- //
- // tsmUnCompress
- //
- this.tsmUnCompress.Name = "tsmUnCompress";
- this.tsmUnCompress.Size = new System.Drawing.Size(217, 26);
- this.tsmUnCompress.Text = "解压文件";
- this.tsmUnCompress.Click += new System.EventHandler(this.tsmUnCompress_Click);
- //
- // tsmImport
- //
- this.tsmImport.Name = "tsmImport";
- this.tsmImport.Size = new System.Drawing.Size(217, 26);
- this.tsmImport.Text = "导入文件";
- this.tsmImport.Click += new System.EventHandler(this.tsmImport_Click);
- //
- // tsmHandCheck
- //
- this.tsmHandCheck.Name = "tsmHandCheck";
- this.tsmHandCheck.Size = new System.Drawing.Size(217, 26);
- this.tsmHandCheck.Text = "手工对账";
- this.tsmHandCheck.Click += new System.EventHandler(this.tsmHandCheck_Click);
- //
- // tabPage5
- //
- this.tabPage5.Controls.Add(this.rtbCheckLog);
- this.tabPage5.Location = new System.Drawing.Point(0, 25);
- this.tabPage5.Name = "tabPage5";
- this.tabPage5.Size = new System.Drawing.Size(972, 399);
- this.tabPage5.TabIndex = 1;
- this.tabPage5.Text = "对总账结果记录";
- this.tabPage5.UseVisualStyleBackColor = true;
- //
- // rtbCheckLog
- //
- this.rtbCheckLog.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rtbCheckLog.FillColor = System.Drawing.Color.White;
- this.rtbCheckLog.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rtbCheckLog.Location = new System.Drawing.Point(0, 0);
- this.rtbCheckLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rtbCheckLog.MinimumSize = new System.Drawing.Size(1, 1);
- this.rtbCheckLog.Name = "rtbCheckLog";
- this.rtbCheckLog.Padding = new System.Windows.Forms.Padding(2);
- this.rtbCheckLog.ShowText = false;
- this.rtbCheckLog.Size = new System.Drawing.Size(972, 399);
- this.rtbCheckLog.Style = Sunny.UI.UIStyle.Custom;
- this.rtbCheckLog.TabIndex = 1;
- this.rtbCheckLog.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rtbCheckLog.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel1
- //
- this.uiPanel1.Controls.Add(this.tbTmp);
- this.uiPanel1.Controls.Add(this.gbConditionSet);
- this.uiPanel1.Controls.Add(this.cbgGroupSet);
- this.uiPanel1.Controls.Add(this.uiGroupBox1);
- this.uiPanel1.Controls.Add(this.gbDateTime);
- this.uiPanel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiPanel1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel1.Location = new System.Drawing.Point(0, 0);
- this.uiPanel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel1.Name = "uiPanel1";
- this.uiPanel1.Size = new System.Drawing.Size(228, 766);
- this.uiPanel1.TabIndex = 2;
- this.uiPanel1.Text = null;
- this.uiPanel1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbTmp
- //
- this.tbTmp.Dock = System.Windows.Forms.DockStyle.Top;
- this.tbTmp.Location = new System.Drawing.Point(0, 531);
- this.tbTmp.Name = "tbTmp";
- this.tbTmp.Size = new System.Drawing.Size(228, 113);
- this.tbTmp.TabIndex = 31;
- this.tbTmp.Text = "E:\\GHSF\\SCYBDownLoad\\result.txt";
- //
- // gbConditionSet
- //
- this.gbConditionSet.Controls.Add(this.chkReverSalFlag);
- this.gbConditionSet.Controls.Add(this.cbxInterface);
- this.gbConditionSet.Controls.Add(this.tbSettlOption);
- this.gbConditionSet.Controls.Add(this.cbxValid);
- this.gbConditionSet.Controls.Add(this.uiLabel5);
- this.gbConditionSet.Controls.Add(this.uiLabel4);
- this.gbConditionSet.Controls.Add(this.cbxClrType);
- this.gbConditionSet.Controls.Add(this.uiLabel3);
- this.gbConditionSet.Controls.Add(this.cbxInsuType);
- this.gbConditionSet.Controls.Add(this.uiLabel2);
- this.gbConditionSet.Controls.Add(this.uiLabel1);
- this.gbConditionSet.Dock = System.Windows.Forms.DockStyle.Top;
- this.gbConditionSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbConditionSet.Location = new System.Drawing.Point(0, 267);
- this.gbConditionSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gbConditionSet.MinimumSize = new System.Drawing.Size(1, 1);
- this.gbConditionSet.Name = "gbConditionSet";
- this.gbConditionSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
- this.gbConditionSet.Size = new System.Drawing.Size(228, 264);
- this.gbConditionSet.TabIndex = 24;
- this.gbConditionSet.TabStop = false;
- this.gbConditionSet.Text = "条件设置";
- this.gbConditionSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gbConditionSet.TitleTop = 10;
- this.gbConditionSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.gbConditionSet.Click += new System.EventHandler(this.gbConditionSet_Click);
- //
- // chkReverSalFlag
- //
- this.chkReverSalFlag.Cursor = System.Windows.Forms.Cursors.Hand;
- this.chkReverSalFlag.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkReverSalFlag.Location = new System.Drawing.Point(11, 223);
- this.chkReverSalFlag.MinimumSize = new System.Drawing.Size(1, 1);
- this.chkReverSalFlag.Name = "chkReverSalFlag";
- this.chkReverSalFlag.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
- this.chkReverSalFlag.Size = new System.Drawing.Size(143, 29);
- this.chkReverSalFlag.TabIndex = 12;
- this.chkReverSalFlag.Text = "包含冲正记录";
- this.chkReverSalFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxInterface
- //
- this.cbxInterface.DataSource = null;
- this.cbxInterface.FillColor = System.Drawing.Color.White;
- this.cbxInterface.FilterMaxCount = 50;
- this.cbxInterface.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxInterface.ItemHeight = 20;
- this.cbxInterface.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbxInterface.Location = new System.Drawing.Point(67, 30);
- this.cbxInterface.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxInterface.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxInterface.Name = "cbxInterface";
- this.cbxInterface.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxInterface.Size = new System.Drawing.Size(153, 25);
- this.cbxInterface.TabIndex = 11;
- this.cbxInterface.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxInterface.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbSettlOption
- //
- this.tbSettlOption.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbSettlOption.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbSettlOption.Location = new System.Drawing.Point(67, 144);
- this.tbSettlOption.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbSettlOption.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbSettlOption.Name = "tbSettlOption";
- this.tbSettlOption.ShowText = false;
- this.tbSettlOption.Size = new System.Drawing.Size(153, 25);
- this.tbSettlOption.TabIndex = 10;
- this.tbSettlOption.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbSettlOption.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxValid
- //
- this.cbxValid.DataSource = null;
- this.cbxValid.FillColor = System.Drawing.Color.White;
- this.cbxValid.FilterMaxCount = 50;
- this.cbxValid.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxValid.ItemHeight = 20;
- this.cbxValid.Items.AddRange(new object[] {
- "全部",
- "有效",
- "无效"});
- this.cbxValid.Location = new System.Drawing.Point(67, 182);
- this.cbxValid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxValid.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxValid.Name = "cbxValid";
- this.cbxValid.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxValid.Size = new System.Drawing.Size(153, 25);
- this.cbxValid.TabIndex = 9;
- this.cbxValid.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxValid.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel5
- //
- this.uiLabel5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel5.Location = new System.Drawing.Point(4, 185);
- this.uiLabel5.Name = "uiLabel5";
- this.uiLabel5.Size = new System.Drawing.Size(78, 23);
- this.uiLabel5.TabIndex = 8;
- this.uiLabel5.Text = "有效标志";
- this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel4
- //
- this.uiLabel4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel4.Location = new System.Drawing.Point(4, 147);
- this.uiLabel4.Name = "uiLabel4";
- this.uiLabel4.Size = new System.Drawing.Size(78, 23);
- this.uiLabel4.TabIndex = 6;
- this.uiLabel4.Text = "经办机构";
- this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxClrType
- //
- this.cbxClrType.DataSource = null;
- this.cbxClrType.FillColor = System.Drawing.Color.White;
- this.cbxClrType.FilterMaxCount = 50;
- this.cbxClrType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxClrType.ItemHeight = 20;
- this.cbxClrType.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbxClrType.Location = new System.Drawing.Point(67, 106);
- this.cbxClrType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxClrType.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxClrType.Name = "cbxClrType";
- this.cbxClrType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxClrType.Size = new System.Drawing.Size(153, 25);
- this.cbxClrType.TabIndex = 5;
- this.cbxClrType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxClrType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel3
- //
- this.uiLabel3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel3.Location = new System.Drawing.Point(4, 109);
- this.uiLabel3.Name = "uiLabel3";
- this.uiLabel3.Size = new System.Drawing.Size(78, 23);
- this.uiLabel3.TabIndex = 4;
- this.uiLabel3.Text = "清算类别";
- this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxInsuType
- //
- this.cbxInsuType.DataSource = null;
- this.cbxInsuType.FillColor = System.Drawing.Color.White;
- this.cbxInsuType.FilterMaxCount = 50;
- this.cbxInsuType.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxInsuType.ItemHeight = 20;
- this.cbxInsuType.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbxInsuType.Location = new System.Drawing.Point(67, 68);
- this.cbxInsuType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxInsuType.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxInsuType.Name = "cbxInsuType";
- this.cbxInsuType.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxInsuType.Size = new System.Drawing.Size(153, 25);
- this.cbxInsuType.TabIndex = 3;
- this.cbxInsuType.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxInsuType.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel2
- //
- this.uiLabel2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel2.Location = new System.Drawing.Point(4, 71);
- this.uiLabel2.Name = "uiLabel2";
- this.uiLabel2.Size = new System.Drawing.Size(78, 23);
- this.uiLabel2.TabIndex = 2;
- this.uiLabel2.Text = "险种类型";
- this.uiLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel1
- //
- this.uiLabel1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel1.Location = new System.Drawing.Point(4, 33);
- this.uiLabel1.Name = "uiLabel1";
- this.uiLabel1.Size = new System.Drawing.Size(78, 23);
- this.uiLabel1.TabIndex = 0;
- this.uiLabel1.Text = "接口目录";
- this.uiLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbgGroupSet
- //
- this.cbgGroupSet.Dock = System.Windows.Forms.DockStyle.Top;
- this.cbgGroupSet.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbgGroupSet.Items.AddRange(new object[] {
- "接 口",
- "险 种 类 型",
- "清 算 类 别",
- "经 办 机 构",
- "单 据 类 型"});
- this.cbgGroupSet.ItemSize = new System.Drawing.Size(150, 25);
- this.cbgGroupSet.Location = new System.Drawing.Point(0, 112);
- this.cbgGroupSet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbgGroupSet.MinimumSize = new System.Drawing.Size(1, 1);
- this.cbgGroupSet.Name = "cbgGroupSet";
- this.cbgGroupSet.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
- this.cbgGroupSet.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Top;
- this.cbgGroupSet.SelectedIndexes = ((System.Collections.Generic.List<int>)(resources.GetObject("cbgGroupSet.SelectedIndexes")));
- this.cbgGroupSet.Size = new System.Drawing.Size(228, 155);
- this.cbgGroupSet.TabIndex = 25;
- this.cbgGroupSet.Text = "分组设置";
- this.cbgGroupSet.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.cbgGroupSet.TitleTop = 10;
- this.cbgGroupSet.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox1
- //
- this.uiGroupBox1.Controls.Add(this.uiGroupBox10);
- this.uiGroupBox1.Controls.Add(this.btnQuerySettlSummary);
- this.uiGroupBox1.Controls.Add(this.btnClose);
- this.uiGroupBox1.Controls.Add(this.btnBatchCheck);
- this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiGroupBox1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox1.Location = new System.Drawing.Point(0, 112);
- this.uiGroupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox1.Name = "uiGroupBox1";
- this.uiGroupBox1.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
- this.uiGroupBox1.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
- this.uiGroupBox1.RectSize = 2;
- this.uiGroupBox1.Size = new System.Drawing.Size(228, 654);
- this.uiGroupBox1.TabIndex = 22;
- this.uiGroupBox1.Text = null;
- this.uiGroupBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox10
- //
- this.uiGroupBox10.Controls.Add(this.uiButton4);
- this.uiGroupBox10.Controls.Add(this.uiButton5);
- this.uiGroupBox10.Controls.Add(this.Btn_Query);
- this.uiGroupBox10.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiGroupBox10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox10.Location = new System.Drawing.Point(0, 541);
- this.uiGroupBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox10.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox10.Name = "uiGroupBox10";
- this.uiGroupBox10.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
- this.uiGroupBox10.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
- this.uiGroupBox10.RectSize = 2;
- this.uiGroupBox10.Size = new System.Drawing.Size(228, 113);
- this.uiGroupBox10.TabIndex = 34;
- this.uiGroupBox10.Text = null;
- this.uiGroupBox10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton4
- //
- this.uiButton4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton4.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.Location = new System.Drawing.Point(31, 72);
- this.uiButton4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton4.Name = "uiButton4";
- this.uiButton4.Size = new System.Drawing.Size(165, 33);
- this.uiButton4.TabIndex = 2;
- this.uiButton4.Text = "退出";
- this.uiButton4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton4.Click += new System.EventHandler(this.btnClose_Click);
- //
- // uiButton5
- //
- this.uiButton5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.uiButton5.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.Location = new System.Drawing.Point(31, 36);
- this.uiButton5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton5.Name = "uiButton5";
- this.uiButton5.Size = new System.Drawing.Size(165, 33);
- this.uiButton5.TabIndex = 1;
- this.uiButton5.Text = "批量对总账";
- this.uiButton5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton5.Click += new System.EventHandler(this.tsmCheck_Batch_Click);
- //
- // Btn_Query
- //
- this.Btn_Query.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.Btn_Query.Cursor = System.Windows.Forms.Cursors.Hand;
- this.Btn_Query.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Btn_Query.Location = new System.Drawing.Point(31, 0);
- this.Btn_Query.MinimumSize = new System.Drawing.Size(1, 1);
- this.Btn_Query.Name = "Btn_Query";
- this.Btn_Query.Size = new System.Drawing.Size(165, 33);
- this.Btn_Query.TabIndex = 0;
- this.Btn_Query.Text = "查询汇总数据";
- this.Btn_Query.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.Btn_Query.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.Btn_Query.Click += new System.EventHandler(this.Btn_Query_Click);
- //
- // btnQuerySettlSummary
- //
- this.btnQuerySettlSummary.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnQuerySettlSummary.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQuerySettlSummary.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuerySettlSummary.Location = new System.Drawing.Point(34, 719);
- this.btnQuerySettlSummary.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQuerySettlSummary.Name = "btnQuerySettlSummary";
- this.btnQuerySettlSummary.Size = new System.Drawing.Size(168, 27);
- this.btnQuerySettlSummary.TabIndex = 33;
- this.btnQuerySettlSummary.Text = "查询汇总数据";
- this.btnQuerySettlSummary.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQuerySettlSummary.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnClose
- //
- this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnClose.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.Location = new System.Drawing.Point(34, 828);
- this.btnClose.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose.Name = "btnClose";
- this.btnClose.Size = new System.Drawing.Size(168, 27);
- this.btnClose.TabIndex = 2;
- this.btnClose.Text = "退 出";
- this.btnClose.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
- //
- // btnBatchCheck
- //
- this.btnBatchCheck.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnBatchCheck.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnBatchCheck.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnBatchCheck.Location = new System.Drawing.Point(34, 779);
- this.btnBatchCheck.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnBatchCheck.Name = "btnBatchCheck";
- this.btnBatchCheck.Size = new System.Drawing.Size(168, 27);
- this.btnBatchCheck.TabIndex = 1;
- this.btnBatchCheck.Text = "批量对总账";
- this.btnBatchCheck.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnBatchCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnBatchCheck.Click += new System.EventHandler(this.btnBatchCheck_Click);
- //
- // gbDateTime
- //
- this.gbDateTime.Controls.Add(this.btnReduceOndDay);
- this.gbDateTime.Controls.Add(this.btnAddOneDay);
- this.gbDateTime.Controls.Add(this.dpED);
- this.gbDateTime.Controls.Add(this.dpST);
- this.gbDateTime.Dock = System.Windows.Forms.DockStyle.Top;
- this.gbDateTime.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbDateTime.Location = new System.Drawing.Point(0, 0);
- this.gbDateTime.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.gbDateTime.MinimumSize = new System.Drawing.Size(1, 1);
- this.gbDateTime.Name = "gbDateTime";
- this.gbDateTime.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.gbDateTime.Size = new System.Drawing.Size(228, 112);
- this.gbDateTime.TabIndex = 21;
- this.gbDateTime.Text = "起止时间";
- this.gbDateTime.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.gbDateTime.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnReduceOndDay
- //
- this.btnReduceOndDay.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnReduceOndDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReduceOndDay.Location = new System.Drawing.Point(160, 3);
- this.btnReduceOndDay.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnReduceOndDay.Name = "btnReduceOndDay";
- this.btnReduceOndDay.Size = new System.Drawing.Size(38, 23);
- this.btnReduceOndDay.Symbol = 61544;
- this.btnReduceOndDay.TabIndex = 3;
- this.btnReduceOndDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReduceOndDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnReduceOndDay.Click += new System.EventHandler(this.btnReduceOndDay_Click);
- //
- // btnAddOneDay
- //
- this.btnAddOneDay.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAddOneDay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAddOneDay.Location = new System.Drawing.Point(116, 3);
- this.btnAddOneDay.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnAddOneDay.Name = "btnAddOneDay";
- this.btnAddOneDay.Size = new System.Drawing.Size(38, 23);
- this.btnAddOneDay.Symbol = 61543;
- this.btnAddOneDay.TabIndex = 2;
- this.btnAddOneDay.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAddOneDay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnAddOneDay.Click += new System.EventHandler(this.btnAddOneDay_Click);
- //
- // dpED
- //
- this.dpED.FillColor = System.Drawing.Color.White;
- this.dpED.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpED.Location = new System.Drawing.Point(17, 70);
- this.dpED.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpED.MaxLength = 19;
- this.dpED.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpED.Name = "dpED";
- this.dpED.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpED.Size = new System.Drawing.Size(185, 29);
- this.dpED.SymbolDropDown = 61555;
- this.dpED.SymbolNormal = 61555;
- this.dpED.TabIndex = 1;
- this.dpED.Text = "2022-11-01 23:59:59";
- this.dpED.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpED.Value = new System.DateTime(2022, 11, 1, 23, 59, 59, 0);
- this.dpED.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpST
- //
- this.dpST.FillColor = System.Drawing.Color.White;
- this.dpST.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpST.Location = new System.Drawing.Point(17, 31);
- this.dpST.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpST.MaxLength = 19;
- this.dpST.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpST.Name = "dpST";
- this.dpST.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpST.Size = new System.Drawing.Size(185, 29);
- this.dpST.SymbolDropDown = 61555;
- this.dpST.SymbolNormal = 61555;
- this.dpST.TabIndex = 0;
- this.dpST.Text = "2022-06-01 00:00:00";
- this.dpST.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpST.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
- this.dpST.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage10
- //
- this.tabPage10.Controls.Add(this.uiPanel7);
- this.tabPage10.Controls.Add(this.uiPanel6);
- this.tabPage10.Location = new System.Drawing.Point(0, 30);
- this.tabPage10.Name = "tabPage10";
- this.tabPage10.Size = new System.Drawing.Size(1200, 766);
- this.tabPage10.TabIndex = 3;
- this.tabPage10.Text = "异地对账";
- this.tabPage10.UseVisualStyleBackColor = true;
- //
- // uiPanel7
- //
- this.uiPanel7.Controls.Add(this.uiTabControl6);
- this.uiPanel7.Controls.Add(this.uiTabControl7);
- this.uiPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiPanel7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel7.Location = new System.Drawing.Point(217, 0);
- this.uiPanel7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel7.Name = "uiPanel7";
- this.uiPanel7.Size = new System.Drawing.Size(983, 766);
- this.uiPanel7.TabIndex = 4;
- this.uiPanel7.Text = null;
- this.uiPanel7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl6
- //
- this.uiTabControl6.Controls.Add(this.tabPage14);
- this.uiTabControl6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl6.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl6.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl6.Location = new System.Drawing.Point(0, 424);
- this.uiTabControl6.MainPage = "";
- this.uiTabControl6.Name = "uiTabControl6";
- this.uiTabControl6.SelectedIndex = 0;
- this.uiTabControl6.Size = new System.Drawing.Size(983, 342);
- this.uiTabControl6.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl6.TabIndex = 1;
- this.uiTabControl6.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage14
- //
- this.tabPage14.Controls.Add(this.rtbOthCheckResultRecord);
- this.tabPage14.Location = new System.Drawing.Point(0, 25);
- this.tabPage14.Name = "tabPage14";
- this.tabPage14.Size = new System.Drawing.Size(983, 317);
- this.tabPage14.TabIndex = 2;
- this.tabPage14.Text = "对账结果记录";
- this.tabPage14.UseVisualStyleBackColor = true;
- //
- // rtbOthCheckResultRecord
- //
- this.rtbOthCheckResultRecord.Dock = System.Windows.Forms.DockStyle.Fill;
- this.rtbOthCheckResultRecord.FillColor = System.Drawing.Color.White;
- this.rtbOthCheckResultRecord.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rtbOthCheckResultRecord.Location = new System.Drawing.Point(0, 0);
- this.rtbOthCheckResultRecord.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rtbOthCheckResultRecord.MinimumSize = new System.Drawing.Size(1, 1);
- this.rtbOthCheckResultRecord.Name = "rtbOthCheckResultRecord";
- this.rtbOthCheckResultRecord.Padding = new System.Windows.Forms.Padding(2);
- this.rtbOthCheckResultRecord.ShowText = false;
- this.rtbOthCheckResultRecord.Size = new System.Drawing.Size(983, 317);
- this.rtbOthCheckResultRecord.Style = Sunny.UI.UIStyle.Custom;
- this.rtbOthCheckResultRecord.TabIndex = 0;
- this.rtbOthCheckResultRecord.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rtbOthCheckResultRecord.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl7
- //
- this.uiTabControl7.Controls.Add(this.tabPage15);
- this.uiTabControl7.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTabControl7.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl7.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl7.Location = new System.Drawing.Point(0, 0);
- this.uiTabControl7.MainPage = "";
- this.uiTabControl7.Name = "uiTabControl7";
- this.uiTabControl7.SelectedIndex = 0;
- this.uiTabControl7.Size = new System.Drawing.Size(983, 424);
- this.uiTabControl7.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl7.TabIndex = 0;
- this.uiTabControl7.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage15
- //
- this.tabPage15.Controls.Add(this.dgvOthCheck);
- this.tabPage15.Location = new System.Drawing.Point(0, 25);
- this.tabPage15.Name = "tabPage15";
- this.tabPage15.Size = new System.Drawing.Size(983, 399);
- this.tabPage15.TabIndex = 0;
- this.tabPage15.Text = "结算汇总数据";
- this.tabPage15.UseVisualStyleBackColor = true;
- //
- // dgvOthCheck
- //
- this.dgvOthCheck.AllowUserToAddRows = false;
- dataGridViewCellStyle106.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvOthCheck.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle106;
- this.dgvOthCheck.BackgroundColor = System.Drawing.Color.White;
- this.dgvOthCheck.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
- dataGridViewCellStyle107.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle107.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle107.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle107.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle107.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle107.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle107.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvOthCheck.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle107;
- this.dgvOthCheck.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvOthCheck.ContextMenuStrip = this.cmdOthPlcCheck;
- dataGridViewCellStyle108.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle108.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle108.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle108.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle108.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle108.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle108.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvOthCheck.DefaultCellStyle = dataGridViewCellStyle108;
- this.dgvOthCheck.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvOthCheck.EnableHeadersVisualStyles = false;
- this.dgvOthCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvOthCheck.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvOthCheck.Location = new System.Drawing.Point(0, 0);
- this.dgvOthCheck.Name = "dgvOthCheck";
- this.dgvOthCheck.ReadOnly = true;
- dataGridViewCellStyle109.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle109.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle109.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle109.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle109.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle109.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle109.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvOthCheck.RowHeadersDefaultCellStyle = dataGridViewCellStyle109;
- this.dgvOthCheck.RowHeadersWidth = 30;
- this.dgvOthCheck.RowHeight = 30;
- dataGridViewCellStyle110.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle110.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvOthCheck.RowsDefaultCellStyle = dataGridViewCellStyle110;
- this.dgvOthCheck.RowTemplate.Height = 30;
- this.dgvOthCheck.SelectedIndex = -1;
- this.dgvOthCheck.Size = new System.Drawing.Size(983, 399);
- this.dgvOthCheck.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvOthCheck.TabIndex = 0;
- this.dgvOthCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.dgvOthCheck.RowStateChanged += new System.Windows.Forms.DataGridViewRowStateChangedEventHandler(this.dgvRowStateChanged);
- //
- // cmdOthPlcCheck
- //
- this.cmdOthPlcCheck.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.cmdOthPlcCheck.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmdOthPlcCheck.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.cmdOthPlcCheck.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsmOthPlcCheck});
- this.cmdOthPlcCheck.Name = "cmsCheck";
- this.cmdOthPlcCheck.Size = new System.Drawing.Size(187, 30);
- this.cmdOthPlcCheck.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tsmOthPlcCheck
- //
- this.tsmOthPlcCheck.Name = "tsmOthPlcCheck";
- this.tsmOthPlcCheck.Size = new System.Drawing.Size(186, 26);
- this.tsmOthPlcCheck.Text = "单条对账(异地)";
- this.tsmOthPlcCheck.Click += new System.EventHandler(this.tsmOthPlcCheck_Click);
- //
- // uiPanel6
- //
- this.uiPanel6.Controls.Add(this.uiGroupBox7);
- this.uiPanel6.Controls.Add(this.uiGroupBox8);
- this.uiPanel6.Controls.Add(this.uiGroupBox9);
- this.uiPanel6.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiPanel6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel6.Location = new System.Drawing.Point(0, 0);
- this.uiPanel6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel6.Name = "uiPanel6";
- this.uiPanel6.Size = new System.Drawing.Size(217, 766);
- this.uiPanel6.TabIndex = 3;
- this.uiPanel6.Text = null;
- this.uiPanel6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox7
- //
- this.uiGroupBox7.Controls.Add(this.uiTextBox1);
- this.uiGroupBox7.Controls.Add(this.cbxValid_O);
- this.uiGroupBox7.Controls.Add(this.uiLabel12);
- this.uiGroupBox7.Controls.Add(this.uiLabel14);
- this.uiGroupBox7.Controls.Add(this.cbxClrType_O);
- this.uiGroupBox7.Controls.Add(this.uiLabel15);
- this.uiGroupBox7.Controls.Add(this.uiComboBox4);
- this.uiGroupBox7.Controls.Add(this.uiLabel16);
- this.uiGroupBox7.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox7.Location = new System.Drawing.Point(0, 112);
- this.uiGroupBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox7.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox7.Name = "uiGroupBox7";
- this.uiGroupBox7.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
- this.uiGroupBox7.Size = new System.Drawing.Size(217, 198);
- this.uiGroupBox7.TabIndex = 24;
- this.uiGroupBox7.TabStop = false;
- this.uiGroupBox7.Text = "条件设置";
- this.uiGroupBox7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox7.TitleTop = 10;
- this.uiGroupBox7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTextBox1
- //
- this.uiTextBox1.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.uiTextBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTextBox1.Location = new System.Drawing.Point(79, 124);
- this.uiTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiTextBox1.MinimumSize = new System.Drawing.Size(1, 16);
- this.uiTextBox1.Name = "uiTextBox1";
- this.uiTextBox1.ShowText = false;
- this.uiTextBox1.Size = new System.Drawing.Size(130, 25);
- this.uiTextBox1.TabIndex = 10;
- this.uiTextBox1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiTextBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxValid_O
- //
- this.cbxValid_O.DataSource = null;
- this.cbxValid_O.FillColor = System.Drawing.Color.White;
- this.cbxValid_O.FilterMaxCount = 50;
- this.cbxValid_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxValid_O.ItemHeight = 20;
- this.cbxValid_O.Items.AddRange(new object[] {
- "全部",
- "有效",
- "无效"});
- this.cbxValid_O.Location = new System.Drawing.Point(79, 157);
- this.cbxValid_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxValid_O.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxValid_O.Name = "cbxValid_O";
- this.cbxValid_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxValid_O.Size = new System.Drawing.Size(130, 25);
- this.cbxValid_O.TabIndex = 9;
- this.cbxValid_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxValid_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel12
- //
- this.uiLabel12.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel12.Location = new System.Drawing.Point(9, 158);
- this.uiLabel12.Name = "uiLabel12";
- this.uiLabel12.Size = new System.Drawing.Size(63, 23);
- this.uiLabel12.TabIndex = 8;
- this.uiLabel12.Text = "有效标志";
- this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel12.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel14
- //
- this.uiLabel14.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel14.Location = new System.Drawing.Point(9, 125);
- this.uiLabel14.Name = "uiLabel14";
- this.uiLabel14.Size = new System.Drawing.Size(63, 23);
- this.uiLabel14.TabIndex = 6;
- this.uiLabel14.Text = "经办机构";
- this.uiLabel14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel14.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbxClrType_O
- //
- this.cbxClrType_O.DataSource = null;
- this.cbxClrType_O.FillColor = System.Drawing.Color.White;
- this.cbxClrType_O.FilterMaxCount = 50;
- this.cbxClrType_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbxClrType_O.ItemHeight = 20;
- this.cbxClrType_O.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbxClrType_O.Location = new System.Drawing.Point(79, 91);
- this.cbxClrType_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbxClrType_O.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbxClrType_O.Name = "cbxClrType_O";
- this.cbxClrType_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbxClrType_O.Size = new System.Drawing.Size(130, 25);
- this.cbxClrType_O.TabIndex = 5;
- this.cbxClrType_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbxClrType_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel15
- //
- this.uiLabel15.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel15.Location = new System.Drawing.Point(9, 92);
- this.uiLabel15.Name = "uiLabel15";
- this.uiLabel15.Size = new System.Drawing.Size(63, 23);
- this.uiLabel15.TabIndex = 4;
- this.uiLabel15.Text = "清算类别";
- this.uiLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel15.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiComboBox4
- //
- this.uiComboBox4.DataSource = null;
- this.uiComboBox4.FillColor = System.Drawing.Color.White;
- this.uiComboBox4.FilterMaxCount = 50;
- this.uiComboBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiComboBox4.ItemHeight = 20;
- this.uiComboBox4.Items.AddRange(new object[] {
- "1",
- "2"});
- this.uiComboBox4.Location = new System.Drawing.Point(79, 58);
- this.uiComboBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiComboBox4.MinimumSize = new System.Drawing.Size(63, 0);
- this.uiComboBox4.Name = "uiComboBox4";
- this.uiComboBox4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.uiComboBox4.Size = new System.Drawing.Size(130, 25);
- this.uiComboBox4.TabIndex = 3;
- this.uiComboBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiComboBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel16
- //
- this.uiLabel16.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel16.Location = new System.Drawing.Point(9, 59);
- this.uiLabel16.Name = "uiLabel16";
- this.uiLabel16.Size = new System.Drawing.Size(63, 23);
- this.uiLabel16.TabIndex = 2;
- this.uiLabel16.Text = "险种类型";
- this.uiLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel16.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox8
- //
- this.uiGroupBox8.Controls.Add(this.uiButton1);
- this.uiGroupBox8.Controls.Add(this.uiButton2);
- this.uiGroupBox8.Controls.Add(this.uiButton3);
- this.uiGroupBox8.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiGroupBox8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox8.Location = new System.Drawing.Point(0, 653);
- this.uiGroupBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox8.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox8.Name = "uiGroupBox8";
- this.uiGroupBox8.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
- this.uiGroupBox8.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
- this.uiGroupBox8.RectSize = 2;
- this.uiGroupBox8.Size = new System.Drawing.Size(217, 113);
- this.uiGroupBox8.TabIndex = 22;
- this.uiGroupBox8.Text = null;
- this.uiGroupBox8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiButton1
- //
- this.uiButton1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton1.Location = new System.Drawing.Point(45, 75);
- this.uiButton1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton1.Name = "uiButton1";
- this.uiButton1.Size = new System.Drawing.Size(100, 20);
- this.uiButton1.TabIndex = 2;
- this.uiButton1.Text = "退出";
- this.uiButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton1.Click += new System.EventHandler(this.uiButton1_Click_1);
- //
- // uiButton2
- //
- this.uiButton2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton2.Location = new System.Drawing.Point(45, 44);
- this.uiButton2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton2.Name = "uiButton2";
- this.uiButton2.Size = new System.Drawing.Size(100, 20);
- this.uiButton2.TabIndex = 1;
- this.uiButton2.Text = "批量对账";
- this.uiButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton2.Click += new System.EventHandler(this.uiButton2_Click);
- //
- // uiButton3
- //
- this.uiButton3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiButton3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.Location = new System.Drawing.Point(45, 13);
- this.uiButton3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiButton3.Name = "uiButton3";
- this.uiButton3.Size = new System.Drawing.Size(100, 20);
- this.uiButton3.TabIndex = 0;
- this.uiButton3.Text = "查询结算数据";
- this.uiButton3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiButton3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiButton3.Click += new System.EventHandler(this.uiButton3_Click);
- //
- // uiGroupBox9
- //
- this.uiGroupBox9.Controls.Add(this.uiSymbolButton1);
- this.uiGroupBox9.Controls.Add(this.uiSymbolButton2);
- this.uiGroupBox9.Controls.Add(this.dpED_O);
- this.uiGroupBox9.Controls.Add(this.dpST_O);
- this.uiGroupBox9.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox9.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox9.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox9.Name = "uiGroupBox9";
- this.uiGroupBox9.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox9.Size = new System.Drawing.Size(217, 112);
- this.uiGroupBox9.TabIndex = 21;
- this.uiGroupBox9.Text = "起止时间";
- this.uiGroupBox9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiSymbolButton1
- //
- this.uiSymbolButton1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiSymbolButton1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiSymbolButton1.Location = new System.Drawing.Point(160, 3);
- this.uiSymbolButton1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiSymbolButton1.Name = "uiSymbolButton1";
- this.uiSymbolButton1.Size = new System.Drawing.Size(38, 23);
- this.uiSymbolButton1.Symbol = 61544;
- this.uiSymbolButton1.TabIndex = 3;
- this.uiSymbolButton1.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiSymbolButton1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiSymbolButton2
- //
- this.uiSymbolButton2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiSymbolButton2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiSymbolButton2.Location = new System.Drawing.Point(116, 3);
- this.uiSymbolButton2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiSymbolButton2.Name = "uiSymbolButton2";
- this.uiSymbolButton2.Size = new System.Drawing.Size(38, 23);
- this.uiSymbolButton2.Symbol = 61543;
- this.uiSymbolButton2.TabIndex = 2;
- this.uiSymbolButton2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiSymbolButton2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.uiSymbolButton2.Click += new System.EventHandler(this.uiSymbolButton2_Click);
- //
- // dpED_O
- //
- this.dpED_O.FillColor = System.Drawing.Color.White;
- this.dpED_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpED_O.Location = new System.Drawing.Point(13, 70);
- this.dpED_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpED_O.MaxLength = 19;
- this.dpED_O.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpED_O.Name = "dpED_O";
- this.dpED_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpED_O.Size = new System.Drawing.Size(200, 29);
- this.dpED_O.SymbolDropDown = 61555;
- this.dpED_O.SymbolNormal = 61555;
- this.dpED_O.TabIndex = 1;
- this.dpED_O.Text = "2022-06-01 23:59:59";
- this.dpED_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpED_O.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
- this.dpED_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpST_O
- //
- this.dpST_O.FillColor = System.Drawing.Color.White;
- this.dpST_O.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpST_O.Location = new System.Drawing.Point(13, 31);
- this.dpST_O.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpST_O.MaxLength = 19;
- this.dpST_O.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpST_O.Name = "dpST_O";
- this.dpST_O.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpST_O.Size = new System.Drawing.Size(200, 29);
- this.dpST_O.SymbolDropDown = 61555;
- this.dpST_O.SymbolNormal = 61555;
- this.dpST_O.TabIndex = 0;
- this.dpST_O.Text = "2022-06-01 00:00:00";
- this.dpST_O.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpST_O.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
- this.dpST_O.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.uiPanel4);
- this.tabPage2.Controls.Add(this.uiPanel3);
- this.tabPage2.Location = new System.Drawing.Point(0, 30);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(1200, 766);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "清算汇总";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // uiPanel4
- //
- this.uiPanel4.Controls.Add(this.uiTabControl4);
- this.uiPanel4.Controls.Add(this.uiTabControl5);
- this.uiPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiPanel4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel4.Location = new System.Drawing.Point(217, 0);
- this.uiPanel4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel4.Name = "uiPanel4";
- this.uiPanel4.Size = new System.Drawing.Size(983, 766);
- this.uiPanel4.TabIndex = 4;
- this.uiPanel4.Text = null;
- this.uiPanel4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl4
- //
- this.uiTabControl4.Controls.Add(this.tabPage9);
- this.uiTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.uiTabControl4.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl4.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl4.Location = new System.Drawing.Point(0, 424);
- this.uiTabControl4.MainPage = "";
- this.uiTabControl4.Name = "uiTabControl4";
- this.uiTabControl4.SelectedIndex = 0;
- this.uiTabControl4.Size = new System.Drawing.Size(983, 342);
- this.uiTabControl4.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl4.TabIndex = 1;
- this.uiTabControl4.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage9
- //
- this.tabPage9.Controls.Add(this.dgvHisSettlRec_2);
- this.tabPage9.Location = new System.Drawing.Point(0, 25);
- this.tabPage9.Name = "tabPage9";
- this.tabPage9.Size = new System.Drawing.Size(983, 317);
- this.tabPage9.TabIndex = 0;
- this.tabPage9.Text = "HIS结算记录";
- this.tabPage9.UseVisualStyleBackColor = true;
- //
- // dgvHisSettlRec_2
- //
- this.dgvHisSettlRec_2.AllowUserToAddRows = false;
- dataGridViewCellStyle86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec_2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle86;
- this.dgvHisSettlRec_2.BackgroundColor = System.Drawing.Color.White;
- this.dgvHisSettlRec_2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle87.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle87.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle87.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle87.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle87.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle87.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle87.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvHisSettlRec_2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle87;
- this.dgvHisSettlRec_2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle88.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle88.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle88.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle88.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle88.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle88.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle88.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvHisSettlRec_2.DefaultCellStyle = dataGridViewCellStyle88;
- this.dgvHisSettlRec_2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvHisSettlRec_2.EnableHeadersVisualStyles = false;
- this.dgvHisSettlRec_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvHisSettlRec_2.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec_2.Location = new System.Drawing.Point(0, 0);
- this.dgvHisSettlRec_2.Name = "dgvHisSettlRec_2";
- this.dgvHisSettlRec_2.ReadOnly = true;
- dataGridViewCellStyle89.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle89.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle89.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle89.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle89.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle89.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle89.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvHisSettlRec_2.RowHeadersDefaultCellStyle = dataGridViewCellStyle89;
- this.dgvHisSettlRec_2.RowHeadersWidth = 51;
- dataGridViewCellStyle90.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle90.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvHisSettlRec_2.RowsDefaultCellStyle = dataGridViewCellStyle90;
- this.dgvHisSettlRec_2.RowTemplate.Height = 23;
- this.dgvHisSettlRec_2.SelectedIndex = -1;
- this.dgvHisSettlRec_2.Size = new System.Drawing.Size(983, 317);
- this.dgvHisSettlRec_2.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvHisSettlRec_2.TabIndex = 1;
- this.dgvHisSettlRec_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiTabControl5
- //
- this.uiTabControl5.Controls.Add(this.tabPage12);
- this.uiTabControl5.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiTabControl5.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
- this.uiTabControl5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl5.ItemSize = new System.Drawing.Size(150, 25);
- this.uiTabControl5.Location = new System.Drawing.Point(0, 0);
- this.uiTabControl5.MainPage = "";
- this.uiTabControl5.Name = "uiTabControl5";
- this.uiTabControl5.SelectedIndex = 0;
- this.uiTabControl5.Size = new System.Drawing.Size(983, 424);
- this.uiTabControl5.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
- this.uiTabControl5.TabIndex = 0;
- this.uiTabControl5.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiTabControl5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage12
- //
- this.tabPage12.Controls.Add(this.dgvClearingSum);
- this.tabPage12.Location = new System.Drawing.Point(0, 25);
- this.tabPage12.Name = "tabPage12";
- this.tabPage12.Size = new System.Drawing.Size(983, 399);
- this.tabPage12.TabIndex = 0;
- this.tabPage12.Text = "结算汇总数据";
- this.tabPage12.UseVisualStyleBackColor = true;
- //
- // dgvClearingSum
- //
- this.dgvClearingSum.AllowUserToAddRows = false;
- dataGridViewCellStyle131.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvClearingSum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle131;
- this.dgvClearingSum.BackgroundColor = System.Drawing.Color.White;
- this.dgvClearingSum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
- dataGridViewCellStyle132.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle132.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle132.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle132.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle132.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle132.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle132.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvClearingSum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle132;
- this.dgvClearingSum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvClearingSum.ContextMenuStrip = this.cmsClearing;
- dataGridViewCellStyle133.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle133.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle133.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle133.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle133.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle133.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle133.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvClearingSum.DefaultCellStyle = dataGridViewCellStyle133;
- this.dgvClearingSum.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvClearingSum.EnableHeadersVisualStyles = false;
- this.dgvClearingSum.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvClearingSum.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvClearingSum.Location = new System.Drawing.Point(0, 0);
- this.dgvClearingSum.Name = "dgvClearingSum";
- this.dgvClearingSum.ReadOnly = true;
- dataGridViewCellStyle134.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle134.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle134.Font = new System.Drawing.Font("微软雅黑", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle134.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle134.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle134.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle134.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvClearingSum.RowHeadersDefaultCellStyle = dataGridViewCellStyle134;
- this.dgvClearingSum.RowHeadersWidth = 30;
- this.dgvClearingSum.RowHeight = 30;
- dataGridViewCellStyle135.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle135.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvClearingSum.RowsDefaultCellStyle = dataGridViewCellStyle135;
- this.dgvClearingSum.RowTemplate.Height = 30;
- this.dgvClearingSum.SelectedIndex = -1;
- this.dgvClearingSum.Size = new System.Drawing.Size(983, 399);
- this.dgvClearingSum.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvClearingSum.TabIndex = 0;
- this.dgvClearingSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cmsClearing
- //
- this.cmsClearing.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(249)))), ((int)(((byte)(255)))));
- this.cmsClearing.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cmsClearing.ImageScalingSize = new System.Drawing.Size(20, 20);
- this.cmsClearing.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tmsClearing_2,
- this.tmsHisSettlRecord_2});
- this.cmsClearing.Name = "cmsClearing";
- this.cmsClearing.Size = new System.Drawing.Size(203, 56);
- this.cmsClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.cmsClearing.Opening += new System.ComponentModel.CancelEventHandler(this.cmsClearing_Opening);
- //
- // tmsClearing_2
- //
- this.tmsClearing_2.Name = "tmsClearing_2";
- this.tmsClearing_2.Size = new System.Drawing.Size(202, 26);
- this.tmsClearing_2.Text = "单条清算";
- this.tmsClearing_2.Click += new System.EventHandler(this.tmsClearing_2_Click);
- //
- // tmsHisSettlRecord_2
- //
- this.tmsHisSettlRecord_2.Name = "tmsHisSettlRecord_2";
- this.tmsHisSettlRecord_2.Size = new System.Drawing.Size(202, 26);
- this.tmsHisSettlRecord_2.Text = "查看HIS结算记录";
- //
- // uiPanel3
- //
- this.uiPanel3.Controls.Add(this.uiGroupBox3);
- this.uiPanel3.Controls.Add(this.uiGroupBox2);
- this.uiPanel3.Controls.Add(this.uiGroupBox4);
- this.uiPanel3.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiPanel3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel3.Location = new System.Drawing.Point(0, 0);
- this.uiPanel3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel3.Name = "uiPanel3";
- this.uiPanel3.Size = new System.Drawing.Size(217, 766);
- this.uiPanel3.TabIndex = 3;
- this.uiPanel3.Text = null;
- this.uiPanel3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox3
- //
- this.uiGroupBox3.Controls.Add(this.btnClose_2);
- this.uiGroupBox3.Controls.Add(this.btnPatchClr);
- this.uiGroupBox3.Controls.Add(this.btnQueryClrSum);
- this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiGroupBox3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox3.Location = new System.Drawing.Point(0, 657);
- this.uiGroupBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox3.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox3.Name = "uiGroupBox3";
- this.uiGroupBox3.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
- this.uiGroupBox3.RectSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.None;
- this.uiGroupBox3.RectSize = 2;
- this.uiGroupBox3.Size = new System.Drawing.Size(217, 109);
- this.uiGroupBox3.TabIndex = 25;
- this.uiGroupBox3.Text = null;
- this.uiGroupBox3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnClose_2
- //
- this.btnClose_2.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_2.Location = new System.Drawing.Point(26, 73);
- this.btnClose_2.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose_2.Name = "btnClose_2";
- this.btnClose_2.Size = new System.Drawing.Size(166, 32);
- this.btnClose_2.TabIndex = 2;
- this.btnClose_2.Text = "退出";
- this.btnClose_2.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnPatchClr
- //
- this.btnPatchClr.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnPatchClr.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPatchClr.Location = new System.Drawing.Point(26, 39);
- this.btnPatchClr.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnPatchClr.Name = "btnPatchClr";
- this.btnPatchClr.Size = new System.Drawing.Size(166, 32);
- this.btnPatchClr.TabIndex = 1;
- this.btnPatchClr.Text = "批量清算";
- this.btnPatchClr.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnPatchClr.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnQueryClrSum
- //
- this.btnQueryClrSum.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQueryClrSum.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryClrSum.Location = new System.Drawing.Point(26, 5);
- this.btnQueryClrSum.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQueryClrSum.Name = "btnQueryClrSum";
- this.btnQueryClrSum.Size = new System.Drawing.Size(166, 32);
- this.btnQueryClrSum.TabIndex = 0;
- this.btnQueryClrSum.Text = "查询汇总数据";
- this.btnQueryClrSum.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryClrSum.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQueryClrSum.Click += new System.EventHandler(this.btnQueryClrSum_Click);
- //
- // uiGroupBox2
- //
- this.uiGroupBox2.Controls.Add(this.uiCheckBox1);
- this.uiGroupBox2.Controls.Add(this.tbInsuPlc);
- this.uiGroupBox2.Controls.Add(this.uiLabel18);
- this.uiGroupBox2.Controls.Add(this.cbOtherPlaceFlag);
- this.uiGroupBox2.Controls.Add(this.uiLabel19);
- this.uiGroupBox2.Controls.Add(this.cbClrWay_2);
- this.uiGroupBox2.Controls.Add(this.uiLabel11);
- this.uiGroupBox2.Controls.Add(this.cbInterface_2);
- this.uiGroupBox2.Controls.Add(this.tbSettlOption_2);
- this.uiGroupBox2.Controls.Add(this.cbValid_2);
- this.uiGroupBox2.Controls.Add(this.uiLabel6);
- this.uiGroupBox2.Controls.Add(this.uiLabel7);
- this.uiGroupBox2.Controls.Add(this.cbClrType_2);
- this.uiGroupBox2.Controls.Add(this.uiLabel8);
- this.uiGroupBox2.Controls.Add(this.cbInsutype_2);
- this.uiGroupBox2.Controls.Add(this.uiLabel9);
- this.uiGroupBox2.Controls.Add(this.uiLabel10);
- this.uiGroupBox2.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox2.Location = new System.Drawing.Point(0, 112);
- this.uiGroupBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox2.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox2.Name = "uiGroupBox2";
- this.uiGroupBox2.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
- this.uiGroupBox2.Size = new System.Drawing.Size(217, 329);
- this.uiGroupBox2.TabIndex = 24;
- this.uiGroupBox2.TabStop = false;
- this.uiGroupBox2.Text = "条件设置";
- this.uiGroupBox2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox2.TitleTop = 10;
- this.uiGroupBox2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbInsuPlc
- //
- this.tbInsuPlc.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbInsuPlc.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbInsuPlc.Location = new System.Drawing.Point(80, 257);
- this.tbInsuPlc.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbInsuPlc.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbInsuPlc.Name = "tbInsuPlc";
- this.tbInsuPlc.ShowText = false;
- this.tbInsuPlc.Size = new System.Drawing.Size(130, 25);
- this.tbInsuPlc.TabIndex = 17;
- this.tbInsuPlc.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbInsuPlc.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel18
- //
- this.uiLabel18.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel18.Location = new System.Drawing.Point(10, 255);
- this.uiLabel18.Name = "uiLabel18";
- this.uiLabel18.Size = new System.Drawing.Size(63, 23);
- this.uiLabel18.TabIndex = 16;
- this.uiLabel18.Text = "参保地";
- this.uiLabel18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel18.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbOtherPlaceFlag
- //
- this.cbOtherPlaceFlag.DataSource = null;
- this.cbOtherPlaceFlag.FillColor = System.Drawing.Color.White;
- this.cbOtherPlaceFlag.FilterMaxCount = 50;
- this.cbOtherPlaceFlag.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbOtherPlaceFlag.ItemHeight = 20;
- this.cbOtherPlaceFlag.Items.AddRange(new object[] {
- "全部",
- "是",
- "否"});
- this.cbOtherPlaceFlag.Location = new System.Drawing.Point(79, 227);
- this.cbOtherPlaceFlag.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbOtherPlaceFlag.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbOtherPlaceFlag.Name = "cbOtherPlaceFlag";
- this.cbOtherPlaceFlag.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbOtherPlaceFlag.Size = new System.Drawing.Size(130, 25);
- this.cbOtherPlaceFlag.TabIndex = 15;
- this.cbOtherPlaceFlag.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbOtherPlaceFlag.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel19
- //
- this.uiLabel19.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel19.Location = new System.Drawing.Point(9, 228);
- this.uiLabel19.Name = "uiLabel19";
- this.uiLabel19.Size = new System.Drawing.Size(63, 23);
- this.uiLabel19.TabIndex = 14;
- this.uiLabel19.Text = "异地标志";
- this.uiLabel19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel19.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbClrWay_2
- //
- this.cbClrWay_2.DataSource = null;
- this.cbClrWay_2.FillColor = System.Drawing.Color.White;
- this.cbClrWay_2.FilterMaxCount = 50;
- this.cbClrWay_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbClrWay_2.ItemHeight = 20;
- this.cbClrWay_2.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbClrWay_2.Location = new System.Drawing.Point(79, 192);
- this.cbClrWay_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbClrWay_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbClrWay_2.Name = "cbClrWay_2";
- this.cbClrWay_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbClrWay_2.Size = new System.Drawing.Size(130, 25);
- this.cbClrWay_2.TabIndex = 13;
- this.cbClrWay_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbClrWay_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel11
- //
- this.uiLabel11.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel11.Location = new System.Drawing.Point(9, 193);
- this.uiLabel11.Name = "uiLabel11";
- this.uiLabel11.Size = new System.Drawing.Size(63, 23);
- this.uiLabel11.TabIndex = 12;
- this.uiLabel11.Text = "清算方式";
- this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel11.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbInterface_2
- //
- this.cbInterface_2.DataSource = null;
- this.cbInterface_2.FillColor = System.Drawing.Color.White;
- this.cbInterface_2.FilterMaxCount = 50;
- this.cbInterface_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbInterface_2.ItemHeight = 20;
- this.cbInterface_2.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbInterface_2.Location = new System.Drawing.Point(80, 23);
- this.cbInterface_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbInterface_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbInterface_2.Name = "cbInterface_2";
- this.cbInterface_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbInterface_2.Size = new System.Drawing.Size(130, 25);
- this.cbInterface_2.TabIndex = 11;
- this.cbInterface_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbInterface_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tbSettlOption_2
- //
- this.tbSettlOption_2.Cursor = System.Windows.Forms.Cursors.IBeam;
- this.tbSettlOption_2.Enabled = false;
- this.tbSettlOption_2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tbSettlOption_2.Location = new System.Drawing.Point(79, 124);
- this.tbSettlOption_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.tbSettlOption_2.MinimumSize = new System.Drawing.Size(1, 16);
- this.tbSettlOption_2.Name = "tbSettlOption_2";
- this.tbSettlOption_2.ShowText = false;
- this.tbSettlOption_2.Size = new System.Drawing.Size(130, 25);
- this.tbSettlOption_2.TabIndex = 10;
- this.tbSettlOption_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.tbSettlOption_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbValid_2
- //
- this.cbValid_2.DataSource = null;
- this.cbValid_2.FillColor = System.Drawing.Color.White;
- this.cbValid_2.FilterMaxCount = 50;
- this.cbValid_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbValid_2.ItemHeight = 20;
- this.cbValid_2.Items.AddRange(new object[] {
- "全部",
- "有效",
- "无效"});
- this.cbValid_2.Location = new System.Drawing.Point(79, 157);
- this.cbValid_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbValid_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbValid_2.Name = "cbValid_2";
- this.cbValid_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbValid_2.Size = new System.Drawing.Size(130, 25);
- this.cbValid_2.TabIndex = 9;
- this.cbValid_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbValid_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel6
- //
- this.uiLabel6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel6.Location = new System.Drawing.Point(9, 158);
- this.uiLabel6.Name = "uiLabel6";
- this.uiLabel6.Size = new System.Drawing.Size(63, 23);
- this.uiLabel6.TabIndex = 8;
- this.uiLabel6.Text = "有效标志";
- this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel7
- //
- this.uiLabel7.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel7.Location = new System.Drawing.Point(9, 125);
- this.uiLabel7.Name = "uiLabel7";
- this.uiLabel7.Size = new System.Drawing.Size(63, 23);
- this.uiLabel7.TabIndex = 6;
- this.uiLabel7.Text = "经办机构";
- this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel7.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbClrType_2
- //
- this.cbClrType_2.DataSource = null;
- this.cbClrType_2.FillColor = System.Drawing.Color.White;
- this.cbClrType_2.FilterMaxCount = 50;
- this.cbClrType_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbClrType_2.ItemHeight = 20;
- this.cbClrType_2.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbClrType_2.Location = new System.Drawing.Point(79, 91);
- this.cbClrType_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbClrType_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbClrType_2.Name = "cbClrType_2";
- this.cbClrType_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbClrType_2.Size = new System.Drawing.Size(130, 25);
- this.cbClrType_2.TabIndex = 5;
- this.cbClrType_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbClrType_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel8
- //
- this.uiLabel8.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel8.Location = new System.Drawing.Point(9, 92);
- this.uiLabel8.Name = "uiLabel8";
- this.uiLabel8.Size = new System.Drawing.Size(63, 23);
- this.uiLabel8.TabIndex = 4;
- this.uiLabel8.Text = "清算类别";
- this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel8.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbInsutype_2
- //
- this.cbInsutype_2.DataSource = null;
- this.cbInsutype_2.Enabled = false;
- this.cbInsutype_2.FillColor = System.Drawing.Color.White;
- this.cbInsutype_2.FilterMaxCount = 50;
- this.cbInsutype_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbInsutype_2.ItemHeight = 20;
- this.cbInsutype_2.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbInsutype_2.Location = new System.Drawing.Point(79, 58);
- this.cbInsutype_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbInsutype_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbInsutype_2.Name = "cbInsutype_2";
- this.cbInsutype_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbInsutype_2.Size = new System.Drawing.Size(130, 25);
- this.cbInsutype_2.TabIndex = 3;
- this.cbInsutype_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbInsutype_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel9
- //
- this.uiLabel9.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel9.Location = new System.Drawing.Point(9, 59);
- this.uiLabel9.Name = "uiLabel9";
- this.uiLabel9.Size = new System.Drawing.Size(63, 23);
- this.uiLabel9.TabIndex = 2;
- this.uiLabel9.Text = "险种类型";
- this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel9.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel10
- //
- this.uiLabel10.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel10.Location = new System.Drawing.Point(9, 26);
- this.uiLabel10.Name = "uiLabel10";
- this.uiLabel10.Size = new System.Drawing.Size(63, 23);
- this.uiLabel10.TabIndex = 0;
- this.uiLabel10.Text = "接口目录";
- this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel10.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiGroupBox4
- //
- this.uiGroupBox4.Controls.Add(this.btnReduceMonth);
- this.uiGroupBox4.Controls.Add(this.btnAddMonth);
- this.uiGroupBox4.Controls.Add(this.dpED_2);
- this.uiGroupBox4.Controls.Add(this.dpST_2);
- this.uiGroupBox4.Dock = System.Windows.Forms.DockStyle.Top;
- this.uiGroupBox4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox4.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox4.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox4.Name = "uiGroupBox4";
- this.uiGroupBox4.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox4.Size = new System.Drawing.Size(217, 112);
- this.uiGroupBox4.TabIndex = 21;
- this.uiGroupBox4.Text = "起止时间";
- this.uiGroupBox4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox4.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnReduceMonth
- //
- this.btnReduceMonth.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnReduceMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReduceMonth.Location = new System.Drawing.Point(160, 3);
- this.btnReduceMonth.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnReduceMonth.Name = "btnReduceMonth";
- this.btnReduceMonth.Size = new System.Drawing.Size(38, 23);
- this.btnReduceMonth.Symbol = 61544;
- this.btnReduceMonth.TabIndex = 3;
- this.btnReduceMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnReduceMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnReduceMonth.Click += new System.EventHandler(this.btnReduceMonth_Click);
- //
- // btnAddMonth
- //
- this.btnAddMonth.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnAddMonth.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAddMonth.Location = new System.Drawing.Point(116, 3);
- this.btnAddMonth.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnAddMonth.Name = "btnAddMonth";
- this.btnAddMonth.Size = new System.Drawing.Size(38, 23);
- this.btnAddMonth.Symbol = 61543;
- this.btnAddMonth.TabIndex = 2;
- this.btnAddMonth.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnAddMonth.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnAddMonth.Click += new System.EventHandler(this.btnAddMonth_Click);
- //
- // dpED_2
- //
- this.dpED_2.FillColor = System.Drawing.Color.White;
- this.dpED_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpED_2.Location = new System.Drawing.Point(13, 70);
- this.dpED_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpED_2.MaxLength = 19;
- this.dpED_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpED_2.Name = "dpED_2";
- this.dpED_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpED_2.Size = new System.Drawing.Size(200, 29);
- this.dpED_2.SymbolDropDown = 61555;
- this.dpED_2.SymbolNormal = 61555;
- this.dpED_2.TabIndex = 1;
- this.dpED_2.Text = "2022-06-01 23:59:59";
- this.dpED_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpED_2.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
- this.dpED_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpST_2
- //
- this.dpST_2.FillColor = System.Drawing.Color.White;
- this.dpST_2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpST_2.Location = new System.Drawing.Point(13, 31);
- this.dpST_2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpST_2.MaxLength = 19;
- this.dpST_2.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpST_2.Name = "dpST_2";
- this.dpST_2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpST_2.Size = new System.Drawing.Size(200, 29);
- this.dpST_2.SymbolDropDown = 61555;
- this.dpST_2.SymbolNormal = 61555;
- this.dpST_2.TabIndex = 0;
- this.dpST_2.Text = "2022-06-01 00:00:00";
- this.dpST_2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpST_2.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
- this.dpST_2.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.dgvClearingData);
- this.tabPage3.Controls.Add(this.uiPanel5);
- this.tabPage3.Location = new System.Drawing.Point(0, 30);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Size = new System.Drawing.Size(1200, 766);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "清算撤销";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // dgvClearingData
- //
- this.dgvClearingData.AllowUserToAddRows = false;
- dataGridViewCellStyle111.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvClearingData.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle111;
- this.dgvClearingData.BackgroundColor = System.Drawing.Color.White;
- this.dgvClearingData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle112.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle112.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle112.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle112.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle112.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle112.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle112.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvClearingData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle112;
- this.dgvClearingData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- dataGridViewCellStyle113.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle113.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle113.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle113.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle113.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle113.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle113.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvClearingData.DefaultCellStyle = dataGridViewCellStyle113;
- this.dgvClearingData.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvClearingData.EnableHeadersVisualStyles = false;
- this.dgvClearingData.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvClearingData.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- this.dgvClearingData.Location = new System.Drawing.Point(0, 0);
- this.dgvClearingData.Name = "dgvClearingData";
- dataGridViewCellStyle114.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle114.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle114.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
- dataGridViewCellStyle114.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(160)))), ((int)(((byte)(255)))));
- dataGridViewCellStyle114.SelectionForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle114.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvClearingData.RowHeadersDefaultCellStyle = dataGridViewCellStyle114;
- this.dgvClearingData.RowHeadersWidth = 51;
- dataGridViewCellStyle115.BackColor = System.Drawing.Color.White;
- dataGridViewCellStyle115.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvClearingData.RowsDefaultCellStyle = dataGridViewCellStyle115;
- this.dgvClearingData.RowTemplate.Height = 23;
- this.dgvClearingData.SelectedIndex = -1;
- this.dgvClearingData.Size = new System.Drawing.Size(1200, 659);
- this.dgvClearingData.StripeOddColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
- this.dgvClearingData.TabIndex = 1;
- this.dgvClearingData.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiPanel5
- //
- this.uiPanel5.Controls.Add(this.btnCancleClearing);
- this.uiPanel5.Controls.Add(this.uiGroupBox6);
- this.uiPanel5.Controls.Add(this.rbgTimeWay);
- this.uiPanel5.Controls.Add(this.btnClose_3);
- this.uiPanel5.Controls.Add(this.btnQueryClearing);
- this.uiPanel5.Controls.Add(this.uiGroupBox5);
- this.uiPanel5.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.uiPanel5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiPanel5.Location = new System.Drawing.Point(0, 659);
- this.uiPanel5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiPanel5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiPanel5.Name = "uiPanel5";
- this.uiPanel5.Size = new System.Drawing.Size(1200, 107);
- this.uiPanel5.TabIndex = 0;
- this.uiPanel5.Text = null;
- this.uiPanel5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiPanel5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnCancleClearing
- //
- this.btnCancleClearing.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnCancleClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCancleClearing.Location = new System.Drawing.Point(846, 14);
- this.btnCancleClearing.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnCancleClearing.Name = "btnCancleClearing";
- this.btnCancleClearing.Size = new System.Drawing.Size(100, 30);
- this.btnCancleClearing.TabIndex = 27;
- this.btnCancleClearing.Text = "撤销清算数据";
- this.btnCancleClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCancleClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnCancleClearing.Click += new System.EventHandler(this.btnCancleClearing_Click);
- //
- // uiGroupBox6
- //
- this.uiGroupBox6.Controls.Add(this.cbInterface_3);
- this.uiGroupBox6.Controls.Add(this.cbValid_3);
- this.uiGroupBox6.Controls.Add(this.uiLabel13);
- this.uiGroupBox6.Controls.Add(this.uiLabel17);
- this.uiGroupBox6.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox6.Location = new System.Drawing.Point(311, 0);
- this.uiGroupBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox6.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox6.Name = "uiGroupBox6";
- this.uiGroupBox6.Padding = new System.Windows.Forms.Padding(0, 26, 0, 0);
- this.uiGroupBox6.Size = new System.Drawing.Size(217, 107);
- this.uiGroupBox6.TabIndex = 26;
- this.uiGroupBox6.TabStop = false;
- this.uiGroupBox6.Text = null;
- this.uiGroupBox6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox6.TitleTop = 10;
- this.uiGroupBox6.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbInterface_3
- //
- this.cbInterface_3.DataSource = null;
- this.cbInterface_3.FillColor = System.Drawing.Color.White;
- this.cbInterface_3.FilterMaxCount = 50;
- this.cbInterface_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbInterface_3.ItemHeight = 20;
- this.cbInterface_3.Items.AddRange(new object[] {
- "1",
- "2"});
- this.cbInterface_3.Location = new System.Drawing.Point(80, 31);
- this.cbInterface_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbInterface_3.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbInterface_3.Name = "cbInterface_3";
- this.cbInterface_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbInterface_3.Size = new System.Drawing.Size(130, 25);
- this.cbInterface_3.TabIndex = 11;
- this.cbInterface_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbInterface_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // cbValid_3
- //
- this.cbValid_3.DataSource = null;
- this.cbValid_3.FillColor = System.Drawing.Color.White;
- this.cbValid_3.FilterMaxCount = 50;
- this.cbValid_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.cbValid_3.ItemHeight = 20;
- this.cbValid_3.Items.AddRange(new object[] {
- "全部",
- "有效",
- "无效"});
- this.cbValid_3.Location = new System.Drawing.Point(80, 67);
- this.cbValid_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.cbValid_3.MinimumSize = new System.Drawing.Size(63, 0);
- this.cbValid_3.Name = "cbValid_3";
- this.cbValid_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.cbValid_3.Size = new System.Drawing.Size(130, 25);
- this.cbValid_3.TabIndex = 9;
- this.cbValid_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.cbValid_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel13
- //
- this.uiLabel13.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel13.Location = new System.Drawing.Point(7, 64);
- this.uiLabel13.Name = "uiLabel13";
- this.uiLabel13.Size = new System.Drawing.Size(63, 23);
- this.uiLabel13.TabIndex = 8;
- this.uiLabel13.Text = "有效标志";
- this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel13.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiLabel17
- //
- this.uiLabel17.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiLabel17.Location = new System.Drawing.Point(9, 36);
- this.uiLabel17.Name = "uiLabel17";
- this.uiLabel17.Size = new System.Drawing.Size(63, 23);
- this.uiLabel17.TabIndex = 0;
- this.uiLabel17.Text = "接口目录";
- this.uiLabel17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.uiLabel17.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // rbgTimeWay
- //
- this.rbgTimeWay.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbgTimeWay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.rbgTimeWay.Items.AddRange(new object[] {
- "按清算时间统计",
- "按起止时间统计"});
- this.rbgTimeWay.Location = new System.Drawing.Point(140, 0);
- this.rbgTimeWay.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.rbgTimeWay.MinimumSize = new System.Drawing.Size(1, 1);
- this.rbgTimeWay.Name = "rbgTimeWay";
- this.rbgTimeWay.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.rbgTimeWay.Size = new System.Drawing.Size(171, 107);
- this.rbgTimeWay.TabIndex = 25;
- this.rbgTimeWay.Text = null;
- this.rbgTimeWay.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.rbgTimeWay.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // btnClose_3
- //
- this.btnClose_3.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClose_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_3.Location = new System.Drawing.Point(711, 76);
- this.btnClose_3.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnClose_3.Name = "btnClose_3";
- this.btnClose_3.Size = new System.Drawing.Size(100, 28);
- this.btnClose_3.TabIndex = 24;
- this.btnClose_3.Text = "退出";
- this.btnClose_3.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClose_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnClose_3.Click += new System.EventHandler(this.btnClose_3_Click);
- //
- // btnQueryClearing
- //
- this.btnQueryClearing.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnQueryClearing.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryClearing.Location = new System.Drawing.Point(711, 14);
- this.btnQueryClearing.MinimumSize = new System.Drawing.Size(1, 1);
- this.btnQueryClearing.Name = "btnQueryClearing";
- this.btnQueryClearing.Size = new System.Drawing.Size(100, 30);
- this.btnQueryClearing.TabIndex = 23;
- this.btnQueryClearing.Text = "查询清算数据";
- this.btnQueryClearing.TipsFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnQueryClearing.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- this.btnQueryClearing.Click += new System.EventHandler(this.btnQueryClearing_Click);
- //
- // uiGroupBox5
- //
- this.uiGroupBox5.Controls.Add(this.dpED_3);
- this.uiGroupBox5.Controls.Add(this.dpST_3);
- this.uiGroupBox5.Dock = System.Windows.Forms.DockStyle.Left;
- this.uiGroupBox5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiGroupBox5.Location = new System.Drawing.Point(0, 0);
- this.uiGroupBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.uiGroupBox5.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiGroupBox5.Name = "uiGroupBox5";
- this.uiGroupBox5.Padding = new System.Windows.Forms.Padding(0, 32, 0, 0);
- this.uiGroupBox5.Size = new System.Drawing.Size(140, 107);
- this.uiGroupBox5.TabIndex = 22;
- this.uiGroupBox5.Text = null;
- this.uiGroupBox5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
- this.uiGroupBox5.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpED_3
- //
- this.dpED_3.DateFormat = "yyyy-MM-dd";
- this.dpED_3.FillColor = System.Drawing.Color.White;
- this.dpED_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpED_3.Location = new System.Drawing.Point(13, 76);
- this.dpED_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpED_3.MaxLength = 10;
- this.dpED_3.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpED_3.Name = "dpED_3";
- this.dpED_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpED_3.Size = new System.Drawing.Size(121, 29);
- this.dpED_3.SymbolDropDown = 61555;
- this.dpED_3.SymbolNormal = 61555;
- this.dpED_3.TabIndex = 1;
- this.dpED_3.Text = "2022-06-01";
- this.dpED_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpED_3.Value = new System.DateTime(2022, 6, 1, 23, 59, 59, 0);
- this.dpED_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // dpST_3
- //
- this.dpST_3.DateFormat = "yyyy-MM-dd";
- this.dpST_3.FillColor = System.Drawing.Color.White;
- this.dpST_3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dpST_3.Location = new System.Drawing.Point(13, 37);
- this.dpST_3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
- this.dpST_3.MaxLength = 10;
- this.dpST_3.MinimumSize = new System.Drawing.Size(63, 0);
- this.dpST_3.Name = "dpST_3";
- this.dpST_3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
- this.dpST_3.Size = new System.Drawing.Size(121, 29);
- this.dpST_3.SymbolDropDown = 61555;
- this.dpST_3.SymbolNormal = 61555;
- this.dpST_3.TabIndex = 0;
- this.dpST_3.Text = "2022-06-01";
- this.dpST_3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
- this.dpST_3.Value = new System.DateTime(2022, 6, 1, 0, 0, 0, 0);
- this.dpST_3.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // uiCheckBox1
- //
- this.uiCheckBox1.Cursor = System.Windows.Forms.Cursors.Hand;
- this.uiCheckBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.uiCheckBox1.Location = new System.Drawing.Point(14, 289);
- this.uiCheckBox1.MinimumSize = new System.Drawing.Size(1, 1);
- this.uiCheckBox1.Name = "uiCheckBox1";
- this.uiCheckBox1.Padding = new System.Windows.Forms.Padding(22, 0, 0, 0);
- this.uiCheckBox1.Size = new System.Drawing.Size(127, 29);
- this.uiCheckBox1.TabIndex = 18;
- this.uiCheckBox1.Text = "包含冲正记录";
- this.uiCheckBox1.ZoomScaleRect = new System.Drawing.Rectangle(0, 0, 0, 0);
- //
- // Clearing
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1200, 796);
- this.Controls.Add(this.uiTabControl1);
- this.Name = "Clearing";
- this.Text = "对账与清算";
- this.Load += new System.EventHandler(this.Clearing_Load);
- this.uiTabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- this.uiPanel2.ResumeLayout(false);
- this.uiTabControl3.ResumeLayout(false);
- this.tabPage6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec)).EndInit();
- this.tabPage7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvCenterSettlRec)).EndInit();
- this.tabPage8.ResumeLayout(false);
- this.uiTabControl2.ResumeLayout(false);
- this.tabPage4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvSettlSummary)).EndInit();
- this.cmsCheck.ResumeLayout(false);
- this.tabPage5.ResumeLayout(false);
- this.uiPanel1.ResumeLayout(false);
- this.gbConditionSet.ResumeLayout(false);
- this.uiGroupBox1.ResumeLayout(false);
- this.uiGroupBox10.ResumeLayout(false);
- this.gbDateTime.ResumeLayout(false);
- this.tabPage10.ResumeLayout(false);
- this.uiPanel7.ResumeLayout(false);
- this.uiTabControl6.ResumeLayout(false);
- this.tabPage14.ResumeLayout(false);
- this.uiTabControl7.ResumeLayout(false);
- this.tabPage15.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvOthCheck)).EndInit();
- this.cmdOthPlcCheck.ResumeLayout(false);
- this.uiPanel6.ResumeLayout(false);
- this.uiGroupBox7.ResumeLayout(false);
- this.uiGroupBox8.ResumeLayout(false);
- this.uiGroupBox9.ResumeLayout(false);
- this.tabPage2.ResumeLayout(false);
- this.uiPanel4.ResumeLayout(false);
- this.uiTabControl4.ResumeLayout(false);
- this.tabPage9.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvHisSettlRec_2)).EndInit();
- this.uiTabControl5.ResumeLayout(false);
- this.tabPage12.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvClearingSum)).EndInit();
- this.cmsClearing.ResumeLayout(false);
- this.uiPanel3.ResumeLayout(false);
- this.uiGroupBox3.ResumeLayout(false);
- this.uiGroupBox2.ResumeLayout(false);
- this.uiGroupBox4.ResumeLayout(false);
- this.tabPage3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvClearingData)).EndInit();
- this.uiPanel5.ResumeLayout(false);
- this.uiGroupBox6.ResumeLayout(false);
- this.uiGroupBox5.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private Sunny.UI.UITabControl uiTabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private Sunny.UI.UIPanel uiPanel2;
- private Sunny.UI.UIPanel uiPanel1;
- private System.Windows.Forms.TabPage tabPage3;
- private Sunny.UI.UITabControl uiTabControl3;
- private System.Windows.Forms.TabPage tabPage6;
- private System.Windows.Forms.TabPage tabPage7;
- private System.Windows.Forms.TabPage tabPage8;
- private Sunny.UI.UITabControl uiTabControl2;
- private System.Windows.Forms.TabPage tabPage4;
- private System.Windows.Forms.TabPage tabPage5;
- private Sunny.UI.UIGroupBox uiGroupBox1;
- private Sunny.UI.UIButton btnClose;
- private Sunny.UI.UIButton btnBatchCheck;
- private Sunny.UI.UIGroupBox gbDateTime;
- private Sunny.UI.UIDatetimePicker dpED;
- private Sunny.UI.UIDatetimePicker dpST;
- private Sunny.UI.UIGroupBox gbConditionSet;
- private Sunny.UI.UICheckBoxGroup cbgGroupSet;
- private Sunny.UI.UILabel uiLabel1;
- private Sunny.UI.UIComboBox cbxValid;
- private Sunny.UI.UILabel uiLabel5;
- private Sunny.UI.UILabel uiLabel4;
- private Sunny.UI.UIComboBox cbxClrType;
- private Sunny.UI.UILabel uiLabel3;
- private Sunny.UI.UIComboBox cbxInsuType;
- private Sunny.UI.UILabel uiLabel2;
- private Sunny.UI.UIDataGridView dgvHisSettlRec;
- private Sunny.UI.UIDataGridView dgvCenterSettlRec;
- private Sunny.UI.UIDataGridView dgvSettlSummary;
- private Sunny.UI.UIRichTextBox rtbCheckDetailLog;
- private Sunny.UI.UIRichTextBox rtbCheckLog;
- private Sunny.UI.UITextBox tbSettlOption;
- private Sunny.UI.UIContextMenuStrip cmsCheck;
- private System.Windows.Forms.ToolStripMenuItem tsmCheck_Single;
- private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Single;
- private System.Windows.Forms.ToolStripMenuItem tsmCheck_Batch;
- private System.Windows.Forms.ToolStripMenuItem tsmCheckDetail_Batch;
- private System.Windows.Forms.ToolStripMenuItem tsmHisRecord;
- private System.Windows.Forms.ToolStripMenuItem tsmAICheck;
- private Sunny.UI.UIComboBox cbxInterface;
- private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
- private System.Windows.Forms.ToolStripMenuItem 导出TXTToolStripMenuItem;
- private System.Windows.Forms.ToolStripMenuItem tsmExport;
- private System.Windows.Forms.ToolStripMenuItem tsmCompress;
- private System.Windows.Forms.ToolStripMenuItem tsmUploadZIP;
- private System.Windows.Forms.ToolStripMenuItem tsm3202;
- private System.Windows.Forms.ToolStripMenuItem tsmDownload;
- private System.Windows.Forms.ToolStripMenuItem tsmUnCompress;
- private System.Windows.Forms.ToolStripMenuItem tsmImport;
- private System.Windows.Forms.ToolStripMenuItem tsmZIPToSDec;
- private Sunny.UI.UISymbolButton btnReduceOndDay;
- private Sunny.UI.UISymbolButton btnAddOneDay;
- private System.Windows.Forms.TabPage tabPage2;
- private Sunny.UI.UIPanel uiPanel4;
- private Sunny.UI.UITabControl uiTabControl4;
- private System.Windows.Forms.TabPage tabPage9;
- private Sunny.UI.UIDataGridView dgvHisSettlRec_2;
- private Sunny.UI.UITabControl uiTabControl5;
- private System.Windows.Forms.TabPage tabPage12;
- private Sunny.UI.UIDataGridView dgvClearingSum;
- private Sunny.UI.UIPanel uiPanel3;
- private Sunny.UI.UIGroupBox uiGroupBox2;
- private Sunny.UI.UIComboBox cbInterface_2;
- private Sunny.UI.UITextBox tbSettlOption_2;
- private Sunny.UI.UIComboBox cbValid_2;
- private Sunny.UI.UILabel uiLabel6;
- private Sunny.UI.UILabel uiLabel7;
- private Sunny.UI.UIComboBox cbClrType_2;
- private Sunny.UI.UILabel uiLabel8;
- private Sunny.UI.UIComboBox cbInsutype_2;
- private Sunny.UI.UILabel uiLabel9;
- private Sunny.UI.UILabel uiLabel10;
- private Sunny.UI.UIGroupBox uiGroupBox4;
- private Sunny.UI.UISymbolButton btnReduceMonth;
- private Sunny.UI.UISymbolButton btnAddMonth;
- private Sunny.UI.UIDatetimePicker dpED_2;
- private Sunny.UI.UIDatetimePicker dpST_2;
- private Sunny.UI.UIContextMenuStrip cmsClearing;
- private System.Windows.Forms.ToolStripMenuItem tmsClearing_2;
- private System.Windows.Forms.ToolStripMenuItem tmsHisSettlRecord_2;
- private Sunny.UI.UIComboBox cbClrWay_2;
- private Sunny.UI.UILabel uiLabel11;
- private Sunny.UI.UIDataGridView dgvClearingData;
- private Sunny.UI.UIPanel uiPanel5;
- private Sunny.UI.UIButton btnClose_3;
- private Sunny.UI.UIButton btnQueryClearing;
- private Sunny.UI.UIGroupBox uiGroupBox5;
- private Sunny.UI.UIDatetimePicker dpED_3;
- private Sunny.UI.UIDatetimePicker dpST_3;
- private Sunny.UI.UIRadioButtonGroup rbgTimeWay;
- private Sunny.UI.UIGroupBox uiGroupBox6;
- private Sunny.UI.UIComboBox cbInterface_3;
- private Sunny.UI.UIComboBox cbValid_3;
- private Sunny.UI.UILabel uiLabel13;
- private Sunny.UI.UILabel uiLabel17;
- private Sunny.UI.UIButton btnCancleClearing;
- private System.Windows.Forms.TabPage tabPage10;
- private Sunny.UI.UIPanel uiPanel7;
- private Sunny.UI.UITabControl uiTabControl6;
- private System.Windows.Forms.TabPage tabPage14;
- private Sunny.UI.UIRichTextBox rtbOthCheckResultRecord;
- private Sunny.UI.UITabControl uiTabControl7;
- private System.Windows.Forms.TabPage tabPage15;
- private Sunny.UI.UIDataGridView dgvOthCheck;
- private Sunny.UI.UIPanel uiPanel6;
- private Sunny.UI.UIGroupBox uiGroupBox7;
- private Sunny.UI.UITextBox uiTextBox1;
- private Sunny.UI.UIComboBox cbxValid_O;
- private Sunny.UI.UILabel uiLabel12;
- private Sunny.UI.UILabel uiLabel14;
- private Sunny.UI.UIComboBox cbxClrType_O;
- private Sunny.UI.UILabel uiLabel15;
- private Sunny.UI.UIComboBox uiComboBox4;
- private Sunny.UI.UILabel uiLabel16;
- private Sunny.UI.UIGroupBox uiGroupBox8;
- private Sunny.UI.UIButton uiButton1;
- private Sunny.UI.UIButton uiButton2;
- private Sunny.UI.UIButton uiButton3;
- private Sunny.UI.UIGroupBox uiGroupBox9;
- private Sunny.UI.UISymbolButton uiSymbolButton1;
- private Sunny.UI.UISymbolButton uiSymbolButton2;
- private Sunny.UI.UIDatetimePicker dpED_O;
- private Sunny.UI.UIDatetimePicker dpST_O;
- private Sunny.UI.UIComboBox cbOtherPlaceFlag;
- private Sunny.UI.UILabel uiLabel19;
- private Sunny.UI.UIContextMenuStrip cmdOthPlcCheck;
- private System.Windows.Forms.ToolStripMenuItem tsmOthPlcCheck;
- private Sunny.UI.UITextBox tbInsuPlc;
- private Sunny.UI.UILabel uiLabel18;
- private System.Windows.Forms.ToolStripMenuItem tsmHandCheck;
- private System.Windows.Forms.RichTextBox tbTmp;
- private Sunny.UI.UIButton btnQuerySettlSummary;
- private Sunny.UI.UIGroupBox uiGroupBox3;
- private Sunny.UI.UIButton btnClose_2;
- private Sunny.UI.UIButton btnPatchClr;
- private Sunny.UI.UIButton btnQueryClrSum;
- private Sunny.UI.UIGroupBox uiGroupBox10;
- private Sunny.UI.UIButton uiButton4;
- private Sunny.UI.UIButton uiButton5;
- private Sunny.UI.UIButton Btn_Query;
- private Sunny.UI.UICheckBox chkReverSalFlag;
- private Sunny.UI.UICheckBox uiCheckBox1;
- }
- }
|