| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403 |
- namespace Dongke.IBOSS.PRD.Client.SystemModule
- {
- partial class F_MST_0207
- {
- /// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_MST_0207));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
- this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.BrandID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.BrandName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.UserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CustomerChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CustomerCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DistrictName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CustomerChannelName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Contacts = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Telephone = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Address = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SettlementTypeChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.SettlementTypeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SettlementType = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SecondSettlementChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OriginaOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.TargetOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ChannelChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ChannelName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ControlledFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.ChannelTactics = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.StaffID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffOrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.StaffValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.FeeObjectChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.ObjectTypeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ObjectTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn7 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn8 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn9 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn10 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.btnSave = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.btnCancel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.tpgGroutingProductionLine = new System.Windows.Forms.TabPage();
- this.tvwGroutinProductionLineCK = new System.Windows.Forms.TreeView();
- this.tpgViewGroutingProductionLine = new System.Windows.Forms.TabPage();
- this.tvwGroutinProductionLine = new System.Windows.Forms.TreeView();
- this.tpgGroutingLine = new System.Windows.Forms.TabPage();
- this.dgvGroutingLine = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dgGroutingLineRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgGroutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgGroutingLineValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgGroutingLineID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgViewGroutingLine = new System.Windows.Forms.TabPage();
- this.dgvViewGroutingLine = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dgViewGroutingLineRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgViewGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgViewGrNoutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgViewGroutingLineValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgViewGroutingLineID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgViewUser = new System.Windows.Forms.TabPage();
- this.dgvViewUser = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.RightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ValueFlagText = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgvViewUserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgUser = new System.Windows.Forms.TabPage();
- this.dgvUser = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dgUserRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgUserOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgUserOrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgUserValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgUserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgViewOrganization = new System.Windows.Forms.TabPage();
- this.btnViewOrganizationExpandAll = new System.Windows.Forms.Button();
- this.btnViewOrganizationCollapseAll = new System.Windows.Forms.Button();
- this.tvwViewOrganization = new System.Windows.Forms.TreeView();
- this.tpgOperationOrganization = new System.Windows.Forms.TabPage();
- this.tvwOrganization = new System.Windows.Forms.TreeView();
- this.btnOrganizationExpandAll = new System.Windows.Forms.Button();
- this.btnOrganizationCollapseAll = new System.Windows.Forms.Button();
- this.tctlRight = new System.Windows.Forms.TabControl();
- this.tpgViewThermometer = new System.Windows.Forms.TabPage();
- this.dgvViewThermometer = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dgThermometerSelectV = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgThermometerCodeV = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgManagerNameV = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgValueFlagV = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgThermometerIDV = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgThermometer = new System.Windows.Forms.TabPage();
- this.dgvThermometer = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dgThermometerSelect = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgThermometerCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgManagerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dgThermometerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgCancelprocedure = new System.Windows.Forms.TabPage();
- this.treeViewCancel = new System.Windows.Forms.TreeView();
- this.dgvFunctionUsers = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.UserCode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.OrganizationName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserID1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.AddFlag = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Purviewid = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.PURVIEWTYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tpgGroutingProductionLine.SuspendLayout();
- this.tpgViewGroutingProductionLine.SuspendLayout();
- this.tpgGroutingLine.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).BeginInit();
- this.tpgViewGroutingLine.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewGroutingLine)).BeginInit();
- this.tpgViewUser.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewUser)).BeginInit();
- this.tpgUser.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvUser)).BeginInit();
- this.tpgViewOrganization.SuspendLayout();
- this.tpgOperationOrganization.SuspendLayout();
- this.tctlRight.SuspendLayout();
- this.tpgViewThermometer.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewThermometer)).BeginInit();
- this.tpgThermometer.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvThermometer)).BeginInit();
- this.tpgCancelprocedure.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).BeginInit();
- this.SuspendLayout();
- //
- // Choose
- //
- this.Choose.DataPropertyName = "RightFlag";
- this.Choose.HeaderText = "选择";
- this.Choose.Name = "Choose";
- this.Choose.Width = 60;
- //
- // BrandID
- //
- this.BrandID.DataPropertyName = "PurviewID";
- this.BrandID.HeaderText = "品牌ID";
- this.BrandID.Name = "BrandID";
- this.BrandID.ReadOnly = true;
- this.BrandID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.BrandID.Visible = false;
- //
- // BrandName
- //
- this.BrandName.DataPropertyName = "BrandName";
- this.BrandName.HeaderText = "品牌名称";
- this.BrandName.Name = "BrandName";
- this.BrandName.ReadOnly = true;
- this.BrandName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.BrandName.Width = 200;
- //
- // UserChoose
- //
- this.UserChoose.DataPropertyName = "RightFlag";
- this.UserChoose.HeaderText = "选择";
- this.UserChoose.Name = "UserChoose";
- this.UserChoose.Width = 40;
- //
- // UserID
- //
- this.UserID.DataPropertyName = "PurviewID";
- this.UserID.HeaderText = "用户ID";
- this.UserID.Name = "UserID";
- this.UserID.ReadOnly = true;
- this.UserID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.UserID.Visible = false;
- //
- // UserCode2
- //
- this.UserCode2.DataPropertyName = "UserCode";
- this.UserCode2.HeaderText = "用户代码";
- this.UserCode2.Name = "UserCode2";
- this.UserCode2.ReadOnly = true;
- this.UserCode2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.UserCode2.Width = 70;
- //
- // UserName
- //
- this.UserName.DataPropertyName = "UserName";
- this.UserName.HeaderText = "操作员";
- this.UserName.Name = "UserName";
- this.UserName.ReadOnly = true;
- this.UserName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.UserName.Width = 80;
- //
- // OrganizationName
- //
- this.OrganizationName.DataPropertyName = "OrganizationName";
- this.OrganizationName.HeaderText = "所属组织";
- this.OrganizationName.Name = "OrganizationName";
- this.OrganizationName.ReadOnly = true;
- this.OrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.OrganizationName.Width = 150;
- //
- // OrganizationFullName
- //
- this.OrganizationFullName.DataPropertyName = "OrganizationFullName";
- this.OrganizationFullName.HeaderText = "组织全称";
- this.OrganizationFullName.Name = "OrganizationFullName";
- this.OrganizationFullName.ReadOnly = true;
- //
- // ValueFlag
- //
- this.ValueFlag.DataPropertyName = "ValueFlag";
- this.ValueFlag.HeaderText = "有效";
- this.ValueFlag.Name = "ValueFlag";
- this.ValueFlag.ReadOnly = true;
- //
- // CustomerChoose
- //
- this.CustomerChoose.DataPropertyName = "RightFlag";
- this.CustomerChoose.HeaderText = "选择";
- this.CustomerChoose.Name = "CustomerChoose";
- this.CustomerChoose.Width = 40;
- //
- // CustomerID
- //
- this.CustomerID.DataPropertyName = "PurviewID";
- this.CustomerID.HeaderText = "客户ID";
- this.CustomerID.Name = "CustomerID";
- this.CustomerID.ReadOnly = true;
- this.CustomerID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.CustomerID.Visible = false;
- //
- // CustomerCode
- //
- this.CustomerCode.DataPropertyName = "CustomerCode";
- this.CustomerCode.HeaderText = "客户代码";
- this.CustomerCode.Name = "CustomerCode";
- this.CustomerCode.ReadOnly = true;
- this.CustomerCode.Width = 60;
- //
- // CustomerName
- //
- this.CustomerName.DataPropertyName = "CustomerName";
- this.CustomerName.HeaderText = "客户名称";
- this.CustomerName.Name = "CustomerName";
- this.CustomerName.ReadOnly = true;
- this.CustomerName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.CustomerName.Width = 80;
- //
- // DistrictName
- //
- this.DistrictName.DataPropertyName = "DistrictName";
- this.DistrictName.HeaderText = "客户区域";
- this.DistrictName.Name = "DistrictName";
- this.DistrictName.ReadOnly = true;
- this.DistrictName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.DistrictName.Width = 80;
- //
- // CustomerChannelName
- //
- this.CustomerChannelName.DataPropertyName = "ChannelName";
- this.CustomerChannelName.HeaderText = "渠道";
- this.CustomerChannelName.Name = "CustomerChannelName";
- this.CustomerChannelName.ReadOnly = true;
- this.CustomerChannelName.Width = 60;
- //
- // Contacts
- //
- this.Contacts.DataPropertyName = "Contacts";
- this.Contacts.HeaderText = "联系人";
- this.Contacts.Name = "Contacts";
- this.Contacts.ReadOnly = true;
- this.Contacts.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Contacts.Width = 60;
- //
- // Telephone
- //
- this.Telephone.DataPropertyName = "Telephone";
- this.Telephone.HeaderText = "电话";
- this.Telephone.Name = "Telephone";
- this.Telephone.ReadOnly = true;
- this.Telephone.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.Telephone.Width = 60;
- //
- // Address
- //
- this.Address.DataPropertyName = "Address";
- this.Address.HeaderText = "地址";
- this.Address.Name = "Address";
- this.Address.ReadOnly = true;
- this.Address.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // SettlementTypeChoose
- //
- this.SettlementTypeChoose.DataPropertyName = "RightFlag";
- this.SettlementTypeChoose.HeaderText = "选择";
- this.SettlementTypeChoose.Name = "SettlementTypeChoose";
- this.SettlementTypeChoose.Width = 60;
- //
- // SettlementTypeID
- //
- this.SettlementTypeID.DataPropertyName = "PurviewID";
- this.SettlementTypeID.HeaderText = "结算方式ID";
- this.SettlementTypeID.Name = "SettlementTypeID";
- this.SettlementTypeID.ReadOnly = true;
- this.SettlementTypeID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.SettlementTypeID.Visible = false;
- //
- // SettlementType
- //
- this.SettlementType.DataPropertyName = "SettlementTypeName";
- this.SettlementType.HeaderText = "结算方式";
- this.SettlementType.Name = "SettlementType";
- this.SettlementType.ReadOnly = true;
- this.SettlementType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.SettlementType.Width = 200;
- //
- // SecondSettlementChoose
- //
- this.SecondSettlementChoose.DataPropertyName = "RightFlag";
- this.SecondSettlementChoose.HeaderText = "选择";
- this.SecondSettlementChoose.Name = "SecondSettlementChoose";
- this.SecondSettlementChoose.Width = 60;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn1.HeaderText = "二级结算策略ID";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn1.Visible = false;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "SecondSettlementName";
- this.dataGridViewTextBoxColumn2.HeaderText = "二级结算策略";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn2.Width = 150;
- //
- // OriginaOrganizationName
- //
- this.OriginaOrganizationName.DataPropertyName = "OriginaOrganizationName";
- this.OriginaOrganizationName.HeaderText = "源组织机构";
- this.OriginaOrganizationName.Name = "OriginaOrganizationName";
- this.OriginaOrganizationName.ReadOnly = true;
- this.OriginaOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.OriginaOrganizationName.Width = 150;
- //
- // TargetOrganizationName
- //
- this.TargetOrganizationName.DataPropertyName = "TargetOrganizationName";
- this.TargetOrganizationName.HeaderText = "目标组织机构";
- this.TargetOrganizationName.Name = "TargetOrganizationName";
- this.TargetOrganizationName.ReadOnly = true;
- this.TargetOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.TargetOrganizationName.Width = 150;
- //
- // ChannelChoose
- //
- this.ChannelChoose.DataPropertyName = "RightFlag";
- this.ChannelChoose.HeaderText = "选择";
- this.ChannelChoose.Name = "ChannelChoose";
- this.ChannelChoose.Width = 40;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn3.HeaderText = "渠道ID";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn3.Visible = false;
- //
- // ChannelName
- //
- this.ChannelName.DataPropertyName = "ChannelName";
- this.ChannelName.HeaderText = "渠道名称";
- this.ChannelName.Name = "ChannelName";
- this.ChannelName.ReadOnly = true;
- this.ChannelName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.ChannelName.Width = 60;
- //
- // ControlledFlag
- //
- this.ControlledFlag.DataPropertyName = "ControlledFlag";
- this.ControlledFlag.HeaderText = "受控标识";
- this.ControlledFlag.Name = "ControlledFlag";
- this.ControlledFlag.ReadOnly = true;
- //
- // ChannelTactics
- //
- this.ChannelTactics.DataPropertyName = "ChannelTactics";
- this.ChannelTactics.HeaderText = "渠道策略";
- this.ChannelTactics.Name = "ChannelTactics";
- this.ChannelTactics.ReadOnly = true;
- this.ChannelTactics.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.ChannelTactics.Width = 80;
- //
- // Remarks
- //
- this.Remarks.DataPropertyName = "Remarks";
- this.Remarks.HeaderText = "备注";
- this.Remarks.Name = "Remarks";
- this.Remarks.ReadOnly = true;
- //
- // StaffChoose
- //
- this.StaffChoose.DataPropertyName = "RightFlag";
- this.StaffChoose.HeaderText = "选择";
- this.StaffChoose.Name = "StaffChoose";
- this.StaffChoose.Width = 40;
- //
- // StaffID
- //
- this.StaffID.DataPropertyName = "PurviewID";
- this.StaffID.HeaderText = "业务员ID";
- this.StaffID.Name = "StaffID";
- this.StaffID.ReadOnly = true;
- this.StaffID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.StaffID.Visible = false;
- //
- // StaffCode
- //
- this.StaffCode.DataPropertyName = "StaffCode";
- this.StaffCode.HeaderText = "员工工号";
- this.StaffCode.Name = "StaffCode";
- this.StaffCode.ReadOnly = true;
- this.StaffCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.StaffCode.Width = 70;
- //
- // StaffName
- //
- this.StaffName.DataPropertyName = "StaffName";
- this.StaffName.HeaderText = "员工姓名";
- this.StaffName.Name = "StaffName";
- this.StaffName.ReadOnly = true;
- this.StaffName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.StaffName.Width = 80;
- //
- // StaffOrganizationName
- //
- this.StaffOrganizationName.DataPropertyName = "StaffOrganizationName";
- this.StaffOrganizationName.HeaderText = "所属组织";
- this.StaffOrganizationName.Name = "StaffOrganizationName";
- this.StaffOrganizationName.ReadOnly = true;
- this.StaffOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.StaffOrganizationName.Width = 150;
- //
- // StaffOrganizationFullName
- //
- this.StaffOrganizationFullName.DataPropertyName = "StaffOrganizationFullName";
- this.StaffOrganizationFullName.HeaderText = "组织全称";
- this.StaffOrganizationFullName.Name = "StaffOrganizationFullName";
- this.StaffOrganizationFullName.ReadOnly = true;
- //
- // StaffValueFlag
- //
- this.StaffValueFlag.DataPropertyName = "ValueFlag";
- this.StaffValueFlag.HeaderText = "有效";
- this.StaffValueFlag.Name = "StaffValueFlag";
- this.StaffValueFlag.ReadOnly = true;
- //
- // FeeObjectChoose
- //
- this.FeeObjectChoose.DataPropertyName = "RightFlag";
- this.FeeObjectChoose.HeaderText = "选择";
- this.FeeObjectChoose.Name = "FeeObjectChoose";
- this.FeeObjectChoose.Width = 60;
- //
- // ObjectTypeID
- //
- this.ObjectTypeID.DataPropertyName = "ObjectTypeID";
- this.ObjectTypeID.HeaderText = "账务对象ID";
- this.ObjectTypeID.Name = "ObjectTypeID";
- this.ObjectTypeID.ReadOnly = true;
- this.ObjectTypeID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.ObjectTypeID.Visible = false;
- //
- // ObjectTypeName
- //
- this.ObjectTypeName.DataPropertyName = "ObjectTypeName";
- this.ObjectTypeName.HeaderText = "账务对象名称";
- this.ObjectTypeName.Name = "ObjectTypeName";
- this.ObjectTypeName.ReadOnly = true;
- this.ObjectTypeName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.ObjectTypeName.Width = 200;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn1.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
- this.dataGridViewCheckBoxColumn1.Width = 60;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn4.HeaderText = "品牌ID";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- this.dataGridViewTextBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn4.Visible = false;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "BrandName";
- this.dataGridViewTextBoxColumn5.HeaderText = "品牌名称";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn5.Width = 200;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn2.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.Width = 40;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn6.HeaderText = "用户ID";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn6.Visible = false;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn7.HeaderText = "用户代码";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn7.Width = 70;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "UserName";
- this.dataGridViewTextBoxColumn8.HeaderText = "操作员";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- this.dataGridViewTextBoxColumn8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn8.Width = 80;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "OrganizationName";
- this.dataGridViewTextBoxColumn9.HeaderText = "所属组织";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- this.dataGridViewTextBoxColumn9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn9.Width = 150;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "OrganizationFullName";
- this.dataGridViewTextBoxColumn10.HeaderText = "组织全称";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn3
- //
- this.dataGridViewCheckBoxColumn3.DataPropertyName = "ValueFlag";
- this.dataGridViewCheckBoxColumn3.HeaderText = "有效";
- this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
- this.dataGridViewCheckBoxColumn3.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn4
- //
- this.dataGridViewCheckBoxColumn4.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn4.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
- this.dataGridViewCheckBoxColumn4.Width = 40;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn11.HeaderText = "客户ID";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn11.Visible = false;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "CustomerCode";
- this.dataGridViewTextBoxColumn12.HeaderText = "客户代码";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- this.dataGridViewTextBoxColumn12.Width = 60;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "CustomerName";
- this.dataGridViewTextBoxColumn13.HeaderText = "客户名称";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- this.dataGridViewTextBoxColumn13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn13.Width = 80;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "DistrictName";
- this.dataGridViewTextBoxColumn14.HeaderText = "客户区域";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- this.dataGridViewTextBoxColumn14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn14.Width = 80;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "ChannelName";
- this.dataGridViewTextBoxColumn15.HeaderText = "渠道";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- this.dataGridViewTextBoxColumn15.Width = 60;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "Contacts";
- this.dataGridViewTextBoxColumn16.HeaderText = "联系人";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- this.dataGridViewTextBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn16.Width = 60;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "Telephone";
- this.dataGridViewTextBoxColumn17.HeaderText = "电话";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- this.dataGridViewTextBoxColumn17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn17.Width = 60;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "Address";
- this.dataGridViewTextBoxColumn18.HeaderText = "地址";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- this.dataGridViewTextBoxColumn18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- //
- // dataGridViewCheckBoxColumn5
- //
- this.dataGridViewCheckBoxColumn5.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn5.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn5.Name = "dataGridViewCheckBoxColumn5";
- this.dataGridViewCheckBoxColumn5.Width = 60;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn19.HeaderText = "结算方式ID";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- this.dataGridViewTextBoxColumn19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn19.Visible = false;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "SettlementTypeName";
- this.dataGridViewTextBoxColumn20.HeaderText = "结算方式";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- this.dataGridViewTextBoxColumn20.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn20.Width = 200;
- //
- // dataGridViewCheckBoxColumn6
- //
- this.dataGridViewCheckBoxColumn6.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn6.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn6.Name = "dataGridViewCheckBoxColumn6";
- this.dataGridViewCheckBoxColumn6.Width = 60;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn21.HeaderText = "二级结算策略ID";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- this.dataGridViewTextBoxColumn21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn21.Visible = false;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "SecondSettlementName";
- this.dataGridViewTextBoxColumn22.HeaderText = "二级结算策略";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- this.dataGridViewTextBoxColumn22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn22.Width = 150;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "OriginaOrganizationName";
- this.dataGridViewTextBoxColumn23.HeaderText = "源组织机构";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- this.dataGridViewTextBoxColumn23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn23.Width = 150;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "TargetOrganizationName";
- this.dataGridViewTextBoxColumn24.HeaderText = "目标组织机构";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- this.dataGridViewTextBoxColumn24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn24.Width = 150;
- //
- // dataGridViewCheckBoxColumn7
- //
- this.dataGridViewCheckBoxColumn7.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn7.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn7.Name = "dataGridViewCheckBoxColumn7";
- this.dataGridViewCheckBoxColumn7.Width = 40;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn25.HeaderText = "渠道ID";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.ReadOnly = true;
- this.dataGridViewTextBoxColumn25.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn25.Visible = false;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "ChannelName";
- this.dataGridViewTextBoxColumn26.HeaderText = "渠道名称";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.ReadOnly = true;
- this.dataGridViewTextBoxColumn26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn26.Width = 60;
- //
- // dataGridViewCheckBoxColumn8
- //
- this.dataGridViewCheckBoxColumn8.DataPropertyName = "ControlledFlag";
- this.dataGridViewCheckBoxColumn8.HeaderText = "受控标识";
- this.dataGridViewCheckBoxColumn8.Name = "dataGridViewCheckBoxColumn8";
- this.dataGridViewCheckBoxColumn8.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "ChannelTactics";
- this.dataGridViewTextBoxColumn27.HeaderText = "渠道策略";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- this.dataGridViewTextBoxColumn27.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn27.Width = 80;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "Remarks";
- this.dataGridViewTextBoxColumn28.HeaderText = "备注";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn9
- //
- this.dataGridViewCheckBoxColumn9.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn9.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn9.Name = "dataGridViewCheckBoxColumn9";
- this.dataGridViewCheckBoxColumn9.Width = 40;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "PurviewID";
- this.dataGridViewTextBoxColumn29.HeaderText = "业务员ID";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- this.dataGridViewTextBoxColumn29.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn29.Visible = false;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "StaffCode";
- this.dataGridViewTextBoxColumn30.HeaderText = "员工工号";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- this.dataGridViewTextBoxColumn30.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn30.Width = 70;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "StaffName";
- this.dataGridViewTextBoxColumn31.HeaderText = "员工姓名";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- this.dataGridViewTextBoxColumn31.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn31.Width = 80;
- //
- // dataGridViewTextBoxColumn32
- //
- this.dataGridViewTextBoxColumn32.DataPropertyName = "StaffOrganizationName";
- this.dataGridViewTextBoxColumn32.HeaderText = "所属组织";
- this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
- this.dataGridViewTextBoxColumn32.ReadOnly = true;
- this.dataGridViewTextBoxColumn32.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn32.Width = 150;
- //
- // dataGridViewTextBoxColumn33
- //
- this.dataGridViewTextBoxColumn33.DataPropertyName = "StaffOrganizationFullName";
- this.dataGridViewTextBoxColumn33.HeaderText = "组织全称";
- this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
- this.dataGridViewTextBoxColumn33.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn10
- //
- this.dataGridViewCheckBoxColumn10.DataPropertyName = "ValueFlag";
- this.dataGridViewCheckBoxColumn10.HeaderText = "有效";
- this.dataGridViewCheckBoxColumn10.Name = "dataGridViewCheckBoxColumn10";
- this.dataGridViewCheckBoxColumn10.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn11
- //
- this.dataGridViewCheckBoxColumn11.DataPropertyName = "RightFlag";
- this.dataGridViewCheckBoxColumn11.HeaderText = "选择";
- this.dataGridViewCheckBoxColumn11.Name = "dataGridViewCheckBoxColumn11";
- this.dataGridViewCheckBoxColumn11.Width = 60;
- //
- // dataGridViewTextBoxColumn34
- //
- this.dataGridViewTextBoxColumn34.DataPropertyName = "ObjectTypeID";
- this.dataGridViewTextBoxColumn34.HeaderText = "账务对象ID";
- this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
- this.dataGridViewTextBoxColumn34.ReadOnly = true;
- this.dataGridViewTextBoxColumn34.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn34.Visible = false;
- //
- // dataGridViewTextBoxColumn35
- //
- this.dataGridViewTextBoxColumn35.DataPropertyName = "ObjectTypeName";
- this.dataGridViewTextBoxColumn35.HeaderText = "账务对象名称";
- this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
- this.dataGridViewTextBoxColumn35.ReadOnly = true;
- this.dataGridViewTextBoxColumn35.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
- this.dataGridViewTextBoxColumn35.Width = 200;
- //
- // btnSave
- //
- this.btnSave.BackColor = System.Drawing.Color.Transparent;
- this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
- this.btnSave.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnSave.ForeColor = System.Drawing.Color.White;
- this.btnSave.Location = new System.Drawing.Point(833, 475);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(85, 30);
- this.btnSave.TabIndex = 3;
- this.btnSave.Text = "保存";
- this.btnSave.UseVisualStyleBackColor = false;
- this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
- //
- // btnCancel
- //
- this.btnCancel.BackColor = System.Drawing.Color.Transparent;
- this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
- this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnCancel.ForeColor = System.Drawing.Color.White;
- this.btnCancel.Location = new System.Drawing.Point(924, 475);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(85, 30);
- this.btnCancel.TabIndex = 3;
- this.btnCancel.Text = "关闭";
- this.btnCancel.UseVisualStyleBackColor = false;
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // tpgGroutingProductionLine
- //
- this.tpgGroutingProductionLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgGroutingProductionLine.Controls.Add(this.tvwGroutinProductionLineCK);
- this.tpgGroutingProductionLine.Location = new System.Drawing.Point(4, 50);
- this.tpgGroutingProductionLine.Name = "tpgGroutingProductionLine";
- this.tpgGroutingProductionLine.Padding = new System.Windows.Forms.Padding(3);
- this.tpgGroutingProductionLine.Size = new System.Drawing.Size(633, 409);
- this.tpgGroutingProductionLine.TabIndex = 15;
- this.tpgGroutingProductionLine.Text = "操作工序范围";
- this.tpgGroutingProductionLine.UseVisualStyleBackColor = true;
- //
- // tvwGroutinProductionLineCK
- //
- this.tvwGroutinProductionLineCK.BackColor = System.Drawing.SystemColors.Window;
- this.tvwGroutinProductionLineCK.Indent = 20;
- this.tvwGroutinProductionLineCK.ItemHeight = 20;
- this.tvwGroutinProductionLineCK.LineColor = System.Drawing.Color.Red;
- this.tvwGroutinProductionLineCK.Location = new System.Drawing.Point(14, 6);
- this.tvwGroutinProductionLineCK.Name = "tvwGroutinProductionLineCK";
- this.tvwGroutinProductionLineCK.Size = new System.Drawing.Size(619, 397);
- this.tvwGroutinProductionLineCK.TabIndex = 28;
- this.tvwGroutinProductionLineCK.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterCheck);
- this.tvwGroutinProductionLineCK.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLineCK_AfterSelect);
- //
- // tpgViewGroutingProductionLine
- //
- this.tpgViewGroutingProductionLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgViewGroutingProductionLine.Controls.Add(this.tvwGroutinProductionLine);
- this.tpgViewGroutingProductionLine.Location = new System.Drawing.Point(4, 50);
- this.tpgViewGroutingProductionLine.Name = "tpgViewGroutingProductionLine";
- this.tpgViewGroutingProductionLine.Size = new System.Drawing.Size(633, 409);
- this.tpgViewGroutingProductionLine.TabIndex = 14;
- this.tpgViewGroutingProductionLine.Text = "查看工序范围";
- this.tpgViewGroutingProductionLine.UseVisualStyleBackColor = true;
- //
- // tvwGroutinProductionLine
- //
- this.tvwGroutinProductionLine.BackColor = System.Drawing.SystemColors.Window;
- this.tvwGroutinProductionLine.Indent = 20;
- this.tvwGroutinProductionLine.ItemHeight = 20;
- this.tvwGroutinProductionLine.LineColor = System.Drawing.Color.Red;
- this.tvwGroutinProductionLine.Location = new System.Drawing.Point(8, 5);
- this.tvwGroutinProductionLine.Name = "tvwGroutinProductionLine";
- this.tvwGroutinProductionLine.Size = new System.Drawing.Size(619, 401);
- this.tvwGroutinProductionLine.TabIndex = 16;
- this.tvwGroutinProductionLine.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLine_AfterCheck);
- this.tvwGroutinProductionLine.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLine_AfterSelect);
- //
- // tpgGroutingLine
- //
- this.tpgGroutingLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgGroutingLine.Controls.Add(this.dgvGroutingLine);
- this.tpgGroutingLine.Location = new System.Drawing.Point(4, 50);
- this.tpgGroutingLine.Name = "tpgGroutingLine";
- this.tpgGroutingLine.Size = new System.Drawing.Size(633, 409);
- this.tpgGroutingLine.TabIndex = 12;
- this.tpgGroutingLine.Text = "操作成型线范围";
- this.tpgGroutingLine.UseVisualStyleBackColor = true;
- //
- // dgvGroutingLine
- //
- this.dgvGroutingLine.AllowUserToAddRows = false;
- this.dgvGroutingLine.AllowUserToDeleteRows = false;
- this.dgvGroutingLine.AllowUserToModifyRows = true;
- this.dgvGroutingLine.AllowUserToOrderColumns = true;
- this.dgvGroutingLine.AllowUserToResizeRows = false;
- dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvGroutingLine.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
- this.dgvGroutingLine.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvGroutingLine.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvGroutingLine.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvGroutingLine.CellHeight = 23;
- this.dgvGroutingLine.ChildNodeColumnName = null;
- this.dgvGroutingLine.ChildNodeColumnText = null;
- this.dgvGroutingLine.ColumnDeep = 1;
- this.dgvGroutingLine.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvGroutingLine.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
- this.dgvGroutingLine.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvGroutingLine.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dgGroutingLineRightFlag,
- this.dgGroutingLineCode,
- this.dgGroutingLineName,
- this.dgGroutingLineValueFlag,
- this.dgGroutingLineID});
- this.dgvGroutingLine.ColumnTreeView = null;
- this.dgvGroutingLine.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvGroutingLine.DynamicColumnName = "";
- this.dgvGroutingLine.EnableHeadersVisualStyles = false;
- this.dgvGroutingLine.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvGroutingLine.FormatQuantityColumns = null;
- this.dgvGroutingLine.HorizontalMergeColumn = null;
- this.dgvGroutingLine.IsAutoCountSum = true;
- this.dgvGroutingLine.IsAutoResizeColumns = false;
- this.dgvGroutingLine.IsClickF12 = false;
- this.dgvGroutingLine.IsOpenMergeCellFlag = false;
- this.dgvGroutingLine.IsSubTotalFlag = false;
- this.dgvGroutingLine.IsTopDeep = false;
- this.dgvGroutingLine.Location = new System.Drawing.Point(8, 5);
- this.dgvGroutingLine.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvGroutingLine.MergeColumnNames = null;
- this.dgvGroutingLine.MergeDetailColumnNames = null;
- this.dgvGroutingLine.MergeDetailOnlyColumn = null;
- this.dgvGroutingLine.MergeOnlyColumn = null;
- this.dgvGroutingLine.MultiSelect = false;
- this.dgvGroutingLine.Name = "dgvGroutingLine";
- this.dgvGroutingLine.RefreshAtHscroll = false;
- this.dgvGroutingLine.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvGroutingLine.RowHeadersWidth = 50;
- this.dgvGroutingLine.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvGroutingLine.RowsDefaultCellStyle = dataGridViewCellStyle6;
- this.dgvGroutingLine.RowTemplate.Height = 21;
- this.dgvGroutingLine.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvGroutingLine.Size = new System.Drawing.Size(619, 402);
- this.dgvGroutingLine.SortOrderColumnName = null;
- this.dgvGroutingLine.TabIndex = 24;
- this.dgvGroutingLine.Tag = true;
- this.dgvGroutingLine.TotalSumColumns = null;
- this.dgvGroutingLine.ViewRowFilter = "";
- this.dgvGroutingLine.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvGroutingLine_CellValueChanged);
- this.dgvGroutingLine.SelectionChanged += new System.EventHandler(this.dgvGroutingLine_SelectionChanged);
- //
- // dgGroutingLineRightFlag
- //
- this.dgGroutingLineRightFlag.DataPropertyName = "RightFlag";
- this.dgGroutingLineRightFlag.FalseValue = "0";
- this.dgGroutingLineRightFlag.HeaderText = "选择";
- this.dgGroutingLineRightFlag.Name = "dgGroutingLineRightFlag";
- this.dgGroutingLineRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgGroutingLineRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dgGroutingLineRightFlag.TrueValue = "1";
- this.dgGroutingLineRightFlag.Visible = false;
- //
- // dgGroutingLineCode
- //
- this.dgGroutingLineCode.DataPropertyName = "GroutingLineCode";
- dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
- this.dgGroutingLineCode.DefaultCellStyle = dataGridViewCellStyle3;
- this.dgGroutingLineCode.HeaderText = "成型生产线编码";
- this.dgGroutingLineCode.MaxInputLength = 20;
- this.dgGroutingLineCode.Name = "dgGroutingLineCode";
- this.dgGroutingLineCode.ReadOnly = true;
- this.dgGroutingLineCode.Width = 120;
- //
- // dgGroutingLineName
- //
- this.dgGroutingLineName.DataPropertyName = "GroutingLineName";
- dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle4.BackColor = System.Drawing.Color.White;
- this.dgGroutingLineName.DefaultCellStyle = dataGridViewCellStyle4;
- this.dgGroutingLineName.HeaderText = "成型生产线名称";
- this.dgGroutingLineName.MaxInputLength = 20;
- this.dgGroutingLineName.Name = "dgGroutingLineName";
- this.dgGroutingLineName.ReadOnly = true;
- this.dgGroutingLineName.Width = 120;
- //
- // dgGroutingLineValueFlag
- //
- this.dgGroutingLineValueFlag.DataPropertyName = "ValueFlag";
- this.dgGroutingLineValueFlag.FalseValue = "0";
- this.dgGroutingLineValueFlag.HeaderText = "有效标识";
- this.dgGroutingLineValueFlag.Name = "dgGroutingLineValueFlag";
- this.dgGroutingLineValueFlag.ReadOnly = true;
- this.dgGroutingLineValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgGroutingLineValueFlag.TrueValue = "1";
- //
- // dgGroutingLineID
- //
- this.dgGroutingLineID.DataPropertyName = "Purviewid";
- dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
- this.dgGroutingLineID.DefaultCellStyle = dataGridViewCellStyle5;
- this.dgGroutingLineID.HeaderText = "成型生产线ID";
- this.dgGroutingLineID.MaxInputLength = 4;
- this.dgGroutingLineID.Name = "dgGroutingLineID";
- this.dgGroutingLineID.Visible = false;
- //
- // tpgViewGroutingLine
- //
- this.tpgViewGroutingLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgViewGroutingLine.Controls.Add(this.dgvViewGroutingLine);
- this.tpgViewGroutingLine.Location = new System.Drawing.Point(4, 50);
- this.tpgViewGroutingLine.Name = "tpgViewGroutingLine";
- this.tpgViewGroutingLine.Size = new System.Drawing.Size(633, 409);
- this.tpgViewGroutingLine.TabIndex = 11;
- this.tpgViewGroutingLine.Text = "查看成型线范围";
- this.tpgViewGroutingLine.UseVisualStyleBackColor = true;
- //
- // dgvViewGroutingLine
- //
- this.dgvViewGroutingLine.AllowUserToAddRows = false;
- this.dgvViewGroutingLine.AllowUserToDeleteRows = false;
- this.dgvViewGroutingLine.AllowUserToModifyRows = true;
- this.dgvViewGroutingLine.AllowUserToOrderColumns = true;
- this.dgvViewGroutingLine.AllowUserToResizeRows = false;
- dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvViewGroutingLine.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle7;
- this.dgvViewGroutingLine.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvViewGroutingLine.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvViewGroutingLine.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvViewGroutingLine.CellHeight = 23;
- this.dgvViewGroutingLine.ChildNodeColumnName = null;
- this.dgvViewGroutingLine.ChildNodeColumnText = null;
- this.dgvViewGroutingLine.ColumnDeep = 1;
- this.dgvViewGroutingLine.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle8.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvViewGroutingLine.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
- this.dgvViewGroutingLine.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvViewGroutingLine.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dgViewGroutingLineRightFlag,
- this.dgViewGroutingLineCode,
- this.dgViewGrNoutingLineName,
- this.dgViewGroutingLineValueFlag,
- this.dgViewGroutingLineID});
- this.dgvViewGroutingLine.ColumnTreeView = null;
- this.dgvViewGroutingLine.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvViewGroutingLine.DynamicColumnName = "";
- this.dgvViewGroutingLine.EnableHeadersVisualStyles = false;
- this.dgvViewGroutingLine.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvViewGroutingLine.FormatQuantityColumns = null;
- this.dgvViewGroutingLine.HorizontalMergeColumn = null;
- this.dgvViewGroutingLine.IsAutoCountSum = true;
- this.dgvViewGroutingLine.IsAutoResizeColumns = false;
- this.dgvViewGroutingLine.IsClickF12 = false;
- this.dgvViewGroutingLine.IsOpenMergeCellFlag = false;
- this.dgvViewGroutingLine.IsSubTotalFlag = false;
- this.dgvViewGroutingLine.IsTopDeep = false;
- this.dgvViewGroutingLine.Location = new System.Drawing.Point(8, 5);
- this.dgvViewGroutingLine.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvViewGroutingLine.MergeColumnNames = null;
- this.dgvViewGroutingLine.MergeDetailColumnNames = null;
- this.dgvViewGroutingLine.MergeDetailOnlyColumn = null;
- this.dgvViewGroutingLine.MergeOnlyColumn = null;
- this.dgvViewGroutingLine.MultiSelect = false;
- this.dgvViewGroutingLine.Name = "dgvViewGroutingLine";
- this.dgvViewGroutingLine.RefreshAtHscroll = false;
- this.dgvViewGroutingLine.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvViewGroutingLine.RowHeadersWidth = 50;
- this.dgvViewGroutingLine.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvViewGroutingLine.RowsDefaultCellStyle = dataGridViewCellStyle12;
- this.dgvViewGroutingLine.RowTemplate.Height = 21;
- this.dgvViewGroutingLine.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvViewGroutingLine.Size = new System.Drawing.Size(619, 402);
- this.dgvViewGroutingLine.SortOrderColumnName = null;
- this.dgvViewGroutingLine.TabIndex = 23;
- this.dgvViewGroutingLine.Tag = true;
- this.dgvViewGroutingLine.TotalSumColumns = null;
- this.dgvViewGroutingLine.ViewRowFilter = "";
- this.dgvViewGroutingLine.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvViewGroutingLine_CellValueChanged);
- this.dgvViewGroutingLine.SelectionChanged += new System.EventHandler(this.dgvViewGroutingLine_SelectionChanged);
- //
- // dgViewGroutingLineRightFlag
- //
- this.dgViewGroutingLineRightFlag.DataPropertyName = "RightFlag";
- this.dgViewGroutingLineRightFlag.FalseValue = "0";
- this.dgViewGroutingLineRightFlag.HeaderText = "选择";
- this.dgViewGroutingLineRightFlag.Name = "dgViewGroutingLineRightFlag";
- this.dgViewGroutingLineRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgViewGroutingLineRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dgViewGroutingLineRightFlag.TrueValue = "1";
- this.dgViewGroutingLineRightFlag.Visible = false;
- //
- // dgViewGroutingLineCode
- //
- this.dgViewGroutingLineCode.DataPropertyName = "GroutingLineCode";
- dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle9.BackColor = System.Drawing.Color.White;
- this.dgViewGroutingLineCode.DefaultCellStyle = dataGridViewCellStyle9;
- this.dgViewGroutingLineCode.HeaderText = "成型生产线编码";
- this.dgViewGroutingLineCode.MaxInputLength = 20;
- this.dgViewGroutingLineCode.Name = "dgViewGroutingLineCode";
- this.dgViewGroutingLineCode.ReadOnly = true;
- this.dgViewGroutingLineCode.Width = 120;
- //
- // dgViewGrNoutingLineName
- //
- this.dgViewGrNoutingLineName.DataPropertyName = "GroutingLineName";
- dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
- this.dgViewGrNoutingLineName.DefaultCellStyle = dataGridViewCellStyle10;
- this.dgViewGrNoutingLineName.HeaderText = "成型生产线名称";
- this.dgViewGrNoutingLineName.MaxInputLength = 20;
- this.dgViewGrNoutingLineName.Name = "dgViewGrNoutingLineName";
- this.dgViewGrNoutingLineName.ReadOnly = true;
- this.dgViewGrNoutingLineName.Width = 120;
- //
- // dgViewGroutingLineValueFlag
- //
- this.dgViewGroutingLineValueFlag.DataPropertyName = "ValueFlag";
- this.dgViewGroutingLineValueFlag.FalseValue = "0";
- this.dgViewGroutingLineValueFlag.HeaderText = "有效标识";
- this.dgViewGroutingLineValueFlag.Name = "dgViewGroutingLineValueFlag";
- this.dgViewGroutingLineValueFlag.ReadOnly = true;
- this.dgViewGroutingLineValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgViewGroutingLineValueFlag.TrueValue = "1";
- //
- // dgViewGroutingLineID
- //
- this.dgViewGroutingLineID.DataPropertyName = "Purviewid";
- dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle11.BackColor = System.Drawing.Color.White;
- this.dgViewGroutingLineID.DefaultCellStyle = dataGridViewCellStyle11;
- this.dgViewGroutingLineID.HeaderText = "成型生产线ID";
- this.dgViewGroutingLineID.MaxInputLength = 4;
- this.dgViewGroutingLineID.Name = "dgViewGroutingLineID";
- this.dgViewGroutingLineID.Visible = false;
- //
- // tpgViewUser
- //
- this.tpgViewUser.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgViewUser.Controls.Add(this.dgvViewUser);
- this.tpgViewUser.Location = new System.Drawing.Point(4, 50);
- this.tpgViewUser.Name = "tpgViewUser";
- this.tpgViewUser.Size = new System.Drawing.Size(633, 409);
- this.tpgViewUser.TabIndex = 9;
- this.tpgViewUser.Text = "查看工号范围";
- this.tpgViewUser.UseVisualStyleBackColor = true;
- //
- // dgvViewUser
- //
- this.dgvViewUser.AllowUserToAddRows = false;
- this.dgvViewUser.AllowUserToDeleteRows = false;
- this.dgvViewUser.AllowUserToModifyRows = true;
- this.dgvViewUser.AllowUserToOrderColumns = true;
- this.dgvViewUser.AllowUserToResizeRows = false;
- dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvViewUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
- this.dgvViewUser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvViewUser.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvViewUser.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvViewUser.CellHeight = 23;
- this.dgvViewUser.ChildNodeColumnName = null;
- this.dgvViewUser.ChildNodeColumnText = null;
- this.dgvViewUser.ColumnDeep = 1;
- this.dgvViewUser.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvViewUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
- this.dgvViewUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvViewUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.RightFlag,
- this.dataGridViewTextBoxColumn36,
- this.dataGridViewTextBoxColumn37,
- this.dataGridViewTextBoxColumn38,
- this.dataGridViewTextBoxColumn39,
- this.ValueFlagText,
- this.dgvViewUserID});
- this.dgvViewUser.ColumnTreeView = null;
- this.dgvViewUser.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvViewUser.DynamicColumnName = "";
- this.dgvViewUser.EnableHeadersVisualStyles = false;
- this.dgvViewUser.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvViewUser.FormatQuantityColumns = null;
- this.dgvViewUser.HorizontalMergeColumn = null;
- this.dgvViewUser.IsAutoCountSum = true;
- this.dgvViewUser.IsAutoResizeColumns = false;
- this.dgvViewUser.IsClickF12 = false;
- this.dgvViewUser.IsOpenMergeCellFlag = false;
- this.dgvViewUser.IsSubTotalFlag = false;
- this.dgvViewUser.IsTopDeep = false;
- this.dgvViewUser.Location = new System.Drawing.Point(8, 5);
- this.dgvViewUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvViewUser.MergeColumnNames = null;
- this.dgvViewUser.MergeDetailColumnNames = null;
- this.dgvViewUser.MergeDetailOnlyColumn = null;
- this.dgvViewUser.MergeOnlyColumn = null;
- this.dgvViewUser.MultiSelect = false;
- this.dgvViewUser.Name = "dgvViewUser";
- this.dgvViewUser.RefreshAtHscroll = false;
- this.dgvViewUser.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvViewUser.RowHeadersWidth = 50;
- this.dgvViewUser.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvViewUser.RowsDefaultCellStyle = dataGridViewCellStyle19;
- this.dgvViewUser.RowTemplate.Height = 21;
- this.dgvViewUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvViewUser.Size = new System.Drawing.Size(619, 402);
- this.dgvViewUser.SortOrderColumnName = null;
- this.dgvViewUser.TabIndex = 22;
- this.dgvViewUser.Tag = true;
- this.dgvViewUser.TotalSumColumns = null;
- this.dgvViewUser.ViewRowFilter = "";
- this.dgvViewUser.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUser_CellValueChanged);
- this.dgvViewUser.SelectionChanged += new System.EventHandler(this.dgvViewUser_SelectionChanged);
- //
- // RightFlag
- //
- this.RightFlag.DataPropertyName = "RightFlag";
- this.RightFlag.FalseValue = "0";
- this.RightFlag.HeaderText = "选择";
- this.RightFlag.Name = "RightFlag";
- this.RightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.RightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.RightFlag.TrueValue = "1";
- this.RightFlag.Visible = false;
- //
- // dataGridViewTextBoxColumn36
- //
- this.dataGridViewTextBoxColumn36.DataPropertyName = "UserCode";
- dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
- this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle15;
- this.dataGridViewTextBoxColumn36.HeaderText = "用户代码";
- this.dataGridViewTextBoxColumn36.MaxInputLength = 20;
- this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
- this.dataGridViewTextBoxColumn36.ReadOnly = true;
- this.dataGridViewTextBoxColumn36.Width = 80;
- //
- // dataGridViewTextBoxColumn37
- //
- this.dataGridViewTextBoxColumn37.DataPropertyName = "UserName";
- dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle16.BackColor = System.Drawing.Color.White;
- this.dataGridViewTextBoxColumn37.DefaultCellStyle = dataGridViewCellStyle16;
- this.dataGridViewTextBoxColumn37.HeaderText = "操作员";
- this.dataGridViewTextBoxColumn37.MaxInputLength = 20;
- this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
- this.dataGridViewTextBoxColumn37.ReadOnly = true;
- this.dataGridViewTextBoxColumn37.Width = 80;
- //
- // dataGridViewTextBoxColumn38
- //
- this.dataGridViewTextBoxColumn38.DataPropertyName = "OrganizationName";
- dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle17.BackColor = System.Drawing.Color.White;
- this.dataGridViewTextBoxColumn38.DefaultCellStyle = dataGridViewCellStyle17;
- this.dataGridViewTextBoxColumn38.HeaderText = "组织机构";
- this.dataGridViewTextBoxColumn38.MaxInputLength = 20;
- this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
- this.dataGridViewTextBoxColumn38.ReadOnly = true;
- this.dataGridViewTextBoxColumn38.Width = 80;
- //
- // dataGridViewTextBoxColumn39
- //
- this.dataGridViewTextBoxColumn39.DataPropertyName = "OrganizationFullName";
- this.dataGridViewTextBoxColumn39.HeaderText = "组织全称";
- this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
- this.dataGridViewTextBoxColumn39.ReadOnly = true;
- //
- // ValueFlagText
- //
- this.ValueFlagText.DataPropertyName = "ValueFlag";
- this.ValueFlagText.HeaderText = "有效标识";
- this.ValueFlagText.Name = "ValueFlagText";
- this.ValueFlagText.ReadOnly = true;
- this.ValueFlagText.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.ValueFlagText.TrueValue = "1";
- //
- // dgvViewUserID
- //
- this.dgvViewUserID.DataPropertyName = "Purviewid";
- dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
- this.dgvViewUserID.DefaultCellStyle = dataGridViewCellStyle18;
- this.dgvViewUserID.HeaderText = "用户ID";
- this.dgvViewUserID.MaxInputLength = 4;
- this.dgvViewUserID.Name = "dgvViewUserID";
- this.dgvViewUserID.Visible = false;
- //
- // tpgUser
- //
- this.tpgUser.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgUser.Controls.Add(this.dgvUser);
- this.tpgUser.Location = new System.Drawing.Point(4, 50);
- this.tpgUser.Name = "tpgUser";
- this.tpgUser.Size = new System.Drawing.Size(633, 409);
- this.tpgUser.TabIndex = 10;
- this.tpgUser.Text = "操作工号范围";
- this.tpgUser.UseVisualStyleBackColor = true;
- //
- // dgvUser
- //
- this.dgvUser.AllowUserToAddRows = false;
- this.dgvUser.AllowUserToDeleteRows = false;
- this.dgvUser.AllowUserToModifyRows = true;
- this.dgvUser.AllowUserToOrderColumns = true;
- this.dgvUser.AllowUserToResizeRows = false;
- dataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle20;
- this.dgvUser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvUser.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvUser.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvUser.CellHeight = 23;
- this.dgvUser.ChildNodeColumnName = null;
- this.dgvUser.ChildNodeColumnText = null;
- this.dgvUser.ColumnDeep = 1;
- this.dgvUser.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle21.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle21;
- this.dgvUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dgUserRightFlag,
- this.dgUserCode,
- this.dgUserName,
- this.dgUserOrganizationName,
- this.dgUserOrganizationFullName,
- this.dgUserValueFlag,
- this.dgUserID});
- this.dgvUser.ColumnTreeView = null;
- this.dgvUser.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvUser.DynamicColumnName = "";
- this.dgvUser.EnableHeadersVisualStyles = false;
- this.dgvUser.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvUser.FormatQuantityColumns = null;
- this.dgvUser.HorizontalMergeColumn = null;
- this.dgvUser.IsAutoCountSum = true;
- this.dgvUser.IsAutoResizeColumns = false;
- this.dgvUser.IsClickF12 = false;
- this.dgvUser.IsOpenMergeCellFlag = false;
- this.dgvUser.IsSubTotalFlag = false;
- this.dgvUser.IsTopDeep = false;
- this.dgvUser.Location = new System.Drawing.Point(8, 5);
- this.dgvUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvUser.MergeColumnNames = null;
- this.dgvUser.MergeDetailColumnNames = null;
- this.dgvUser.MergeDetailOnlyColumn = null;
- this.dgvUser.MergeOnlyColumn = null;
- this.dgvUser.MultiSelect = false;
- this.dgvUser.Name = "dgvUser";
- this.dgvUser.RefreshAtHscroll = false;
- this.dgvUser.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvUser.RowHeadersWidth = 50;
- this.dgvUser.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle26.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvUser.RowsDefaultCellStyle = dataGridViewCellStyle26;
- this.dgvUser.RowTemplate.Height = 21;
- this.dgvUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvUser.Size = new System.Drawing.Size(611, 402);
- this.dgvUser.SortOrderColumnName = null;
- this.dgvUser.TabIndex = 23;
- this.dgvUser.Tag = true;
- this.dgvUser.TotalSumColumns = null;
- this.dgvUser.ViewRowFilter = "";
- this.dgvUser.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUser_CellValueChanged_1);
- this.dgvUser.SelectionChanged += new System.EventHandler(this.dgvUser_SelectionChanged);
- //
- // dgUserRightFlag
- //
- this.dgUserRightFlag.DataPropertyName = "RightFlag";
- this.dgUserRightFlag.FalseValue = "0";
- this.dgUserRightFlag.HeaderText = "选择";
- this.dgUserRightFlag.Name = "dgUserRightFlag";
- this.dgUserRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgUserRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dgUserRightFlag.TrueValue = "1";
- this.dgUserRightFlag.Visible = false;
- //
- // dgUserCode
- //
- this.dgUserCode.DataPropertyName = "UserCode";
- dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle22.BackColor = System.Drawing.Color.White;
- this.dgUserCode.DefaultCellStyle = dataGridViewCellStyle22;
- this.dgUserCode.HeaderText = "用户代码";
- this.dgUserCode.MaxInputLength = 20;
- this.dgUserCode.Name = "dgUserCode";
- this.dgUserCode.ReadOnly = true;
- this.dgUserCode.Width = 80;
- //
- // dgUserName
- //
- this.dgUserName.DataPropertyName = "UserName";
- dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle23.BackColor = System.Drawing.Color.White;
- this.dgUserName.DefaultCellStyle = dataGridViewCellStyle23;
- this.dgUserName.HeaderText = "操作员";
- this.dgUserName.MaxInputLength = 20;
- this.dgUserName.Name = "dgUserName";
- this.dgUserName.ReadOnly = true;
- this.dgUserName.Width = 80;
- //
- // dgUserOrganizationName
- //
- this.dgUserOrganizationName.DataPropertyName = "OrganizationName";
- dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle24.BackColor = System.Drawing.Color.White;
- this.dgUserOrganizationName.DefaultCellStyle = dataGridViewCellStyle24;
- this.dgUserOrganizationName.HeaderText = "组织机构";
- this.dgUserOrganizationName.MaxInputLength = 20;
- this.dgUserOrganizationName.Name = "dgUserOrganizationName";
- this.dgUserOrganizationName.ReadOnly = true;
- this.dgUserOrganizationName.Width = 80;
- //
- // dgUserOrganizationFullName
- //
- this.dgUserOrganizationFullName.DataPropertyName = "OrganizationFullName";
- this.dgUserOrganizationFullName.HeaderText = "组织全称";
- this.dgUserOrganizationFullName.Name = "dgUserOrganizationFullName";
- this.dgUserOrganizationFullName.ReadOnly = true;
- //
- // dgUserValueFlag
- //
- this.dgUserValueFlag.DataPropertyName = "ValueFlag";
- this.dgUserValueFlag.HeaderText = "有效标识";
- this.dgUserValueFlag.Name = "dgUserValueFlag";
- this.dgUserValueFlag.ReadOnly = true;
- this.dgUserValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgUserValueFlag.TrueValue = "1";
- //
- // dgUserID
- //
- this.dgUserID.DataPropertyName = "Purviewid";
- dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
- this.dgUserID.DefaultCellStyle = dataGridViewCellStyle25;
- this.dgUserID.HeaderText = "用户ID";
- this.dgUserID.MaxInputLength = 4;
- this.dgUserID.Name = "dgUserID";
- //
- // tpgViewOrganization
- //
- this.tpgViewOrganization.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgViewOrganization.Controls.Add(this.btnViewOrganizationExpandAll);
- this.tpgViewOrganization.Controls.Add(this.btnViewOrganizationCollapseAll);
- this.tpgViewOrganization.Controls.Add(this.tvwViewOrganization);
- this.tpgViewOrganization.Location = new System.Drawing.Point(4, 50);
- this.tpgViewOrganization.Name = "tpgViewOrganization";
- this.tpgViewOrganization.Padding = new System.Windows.Forms.Padding(3);
- this.tpgViewOrganization.Size = new System.Drawing.Size(633, 409);
- this.tpgViewOrganization.TabIndex = 8;
- this.tpgViewOrganization.Text = "查看部门范围";
- this.tpgViewOrganization.UseVisualStyleBackColor = true;
- //
- // btnViewOrganizationExpandAll
- //
- this.btnViewOrganizationExpandAll.Location = new System.Drawing.Point(553, 495);
- this.btnViewOrganizationExpandAll.Name = "btnViewOrganizationExpandAll";
- this.btnViewOrganizationExpandAll.Size = new System.Drawing.Size(23, 23);
- this.btnViewOrganizationExpandAll.TabIndex = 15;
- this.btnViewOrganizationExpandAll.Text = "+";
- this.btnViewOrganizationExpandAll.UseVisualStyleBackColor = true;
- //
- // btnViewOrganizationCollapseAll
- //
- this.btnViewOrganizationCollapseAll.Location = new System.Drawing.Point(582, 495);
- this.btnViewOrganizationCollapseAll.Name = "btnViewOrganizationCollapseAll";
- this.btnViewOrganizationCollapseAll.Size = new System.Drawing.Size(23, 23);
- this.btnViewOrganizationCollapseAll.TabIndex = 16;
- this.btnViewOrganizationCollapseAll.Text = "-";
- this.btnViewOrganizationCollapseAll.UseVisualStyleBackColor = true;
- //
- // tvwViewOrganization
- //
- this.tvwViewOrganization.BackColor = System.Drawing.SystemColors.Window;
- this.tvwViewOrganization.Indent = 20;
- this.tvwViewOrganization.ItemHeight = 20;
- this.tvwViewOrganization.LineColor = System.Drawing.Color.Red;
- this.tvwViewOrganization.Location = new System.Drawing.Point(8, 5);
- this.tvwViewOrganization.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tvwViewOrganization.Name = "tvwViewOrganization";
- this.tvwViewOrganization.Size = new System.Drawing.Size(619, 399);
- this.tvwViewOrganization.TabIndex = 12;
- this.tvwViewOrganization.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwViewOrganization_AfterCheck);
- this.tvwViewOrganization.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwViewOrganization_AfterSelect);
- //
- // tpgOperationOrganization
- //
- this.tpgOperationOrganization.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgOperationOrganization.Controls.Add(this.tvwOrganization);
- this.tpgOperationOrganization.Controls.Add(this.btnOrganizationExpandAll);
- this.tpgOperationOrganization.Controls.Add(this.btnOrganizationCollapseAll);
- this.tpgOperationOrganization.Location = new System.Drawing.Point(4, 50);
- this.tpgOperationOrganization.Name = "tpgOperationOrganization";
- this.tpgOperationOrganization.Padding = new System.Windows.Forms.Padding(3);
- this.tpgOperationOrganization.Size = new System.Drawing.Size(633, 409);
- this.tpgOperationOrganization.TabIndex = 4;
- this.tpgOperationOrganization.Text = "操作部门范围";
- this.tpgOperationOrganization.UseVisualStyleBackColor = true;
- //
- // tvwOrganization
- //
- this.tvwOrganization.BackColor = System.Drawing.SystemColors.Window;
- this.tvwOrganization.Indent = 20;
- this.tvwOrganization.ItemHeight = 20;
- this.tvwOrganization.LineColor = System.Drawing.Color.Red;
- this.tvwOrganization.Location = new System.Drawing.Point(8, 5);
- this.tvwOrganization.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.tvwOrganization.Name = "tvwOrganization";
- this.tvwOrganization.Size = new System.Drawing.Size(619, 399);
- this.tvwOrganization.TabIndex = 15;
- this.tvwOrganization.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterCheck);
- this.tvwOrganization.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterSelect);
- //
- // btnOrganizationExpandAll
- //
- this.btnOrganizationExpandAll.Location = new System.Drawing.Point(553, 495);
- this.btnOrganizationExpandAll.Name = "btnOrganizationExpandAll";
- this.btnOrganizationExpandAll.Size = new System.Drawing.Size(23, 23);
- this.btnOrganizationExpandAll.TabIndex = 13;
- this.btnOrganizationExpandAll.Text = "+";
- this.btnOrganizationExpandAll.UseVisualStyleBackColor = true;
- //
- // btnOrganizationCollapseAll
- //
- this.btnOrganizationCollapseAll.Location = new System.Drawing.Point(582, 495);
- this.btnOrganizationCollapseAll.Name = "btnOrganizationCollapseAll";
- this.btnOrganizationCollapseAll.Size = new System.Drawing.Size(23, 23);
- this.btnOrganizationCollapseAll.TabIndex = 14;
- this.btnOrganizationCollapseAll.Text = "-";
- this.btnOrganizationCollapseAll.UseVisualStyleBackColor = true;
- //
- // tctlRight
- //
- this.tctlRight.Controls.Add(this.tpgOperationOrganization);
- this.tctlRight.Controls.Add(this.tpgViewOrganization);
- this.tctlRight.Controls.Add(this.tpgUser);
- this.tctlRight.Controls.Add(this.tpgViewUser);
- this.tctlRight.Controls.Add(this.tpgViewGroutingLine);
- this.tctlRight.Controls.Add(this.tpgGroutingLine);
- this.tctlRight.Controls.Add(this.tpgViewGroutingProductionLine);
- this.tctlRight.Controls.Add(this.tpgGroutingProductionLine);
- this.tctlRight.Controls.Add(this.tpgViewThermometer);
- this.tctlRight.Controls.Add(this.tpgThermometer);
- this.tctlRight.Controls.Add(this.tpgCancelprocedure);
- this.tctlRight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tctlRight.HotTrack = true;
- this.tctlRight.ItemSize = new System.Drawing.Size(100, 23);
- this.tctlRight.Location = new System.Drawing.Point(6, 6);
- this.tctlRight.Multiline = true;
- this.tctlRight.Name = "tctlRight";
- this.tctlRight.SelectedIndex = 0;
- this.tctlRight.Size = new System.Drawing.Size(641, 463);
- this.tctlRight.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
- this.tctlRight.TabIndex = 2;
- this.tctlRight.SelectedIndexChanged += new System.EventHandler(this.tctlRight_SelectedIndexChanged);
- //
- // tpgViewThermometer
- //
- this.tpgViewThermometer.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgViewThermometer.Controls.Add(this.dgvViewThermometer);
- this.tpgViewThermometer.Location = new System.Drawing.Point(4, 50);
- this.tpgViewThermometer.Name = "tpgViewThermometer";
- this.tpgViewThermometer.Padding = new System.Windows.Forms.Padding(3);
- this.tpgViewThermometer.Size = new System.Drawing.Size(633, 409);
- this.tpgViewThermometer.TabIndex = 16;
- this.tpgViewThermometer.Text = "查看温湿计范围";
- this.tpgViewThermometer.UseVisualStyleBackColor = true;
- //
- // dgvViewThermometer
- //
- this.dgvViewThermometer.AllowUserToAddRows = false;
- this.dgvViewThermometer.AllowUserToDeleteRows = false;
- this.dgvViewThermometer.AllowUserToModifyRows = true;
- this.dgvViewThermometer.AllowUserToOrderColumns = true;
- this.dgvViewThermometer.AllowUserToResizeRows = false;
- dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvViewThermometer.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle27;
- this.dgvViewThermometer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvViewThermometer.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvViewThermometer.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvViewThermometer.CellHeight = 23;
- this.dgvViewThermometer.ChildNodeColumnName = null;
- this.dgvViewThermometer.ChildNodeColumnText = null;
- this.dgvViewThermometer.ColumnDeep = 1;
- this.dgvViewThermometer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle28.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvViewThermometer.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle28;
- this.dgvViewThermometer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvViewThermometer.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dgThermometerSelectV,
- this.dgThermometerCodeV,
- this.dgManagerNameV,
- this.dgValueFlagV,
- this.dgThermometerIDV});
- this.dgvViewThermometer.ColumnTreeView = null;
- this.dgvViewThermometer.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvViewThermometer.DynamicColumnName = "";
- this.dgvViewThermometer.EnableHeadersVisualStyles = false;
- this.dgvViewThermometer.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvViewThermometer.FormatQuantityColumns = null;
- this.dgvViewThermometer.HorizontalMergeColumn = null;
- this.dgvViewThermometer.IsAutoCountSum = true;
- this.dgvViewThermometer.IsAutoResizeColumns = false;
- this.dgvViewThermometer.IsClickF12 = false;
- this.dgvViewThermometer.IsOpenMergeCellFlag = false;
- this.dgvViewThermometer.IsSubTotalFlag = false;
- this.dgvViewThermometer.IsTopDeep = false;
- this.dgvViewThermometer.Location = new System.Drawing.Point(8, 5);
- this.dgvViewThermometer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvViewThermometer.MergeColumnNames = null;
- this.dgvViewThermometer.MergeDetailColumnNames = null;
- this.dgvViewThermometer.MergeDetailOnlyColumn = null;
- this.dgvViewThermometer.MergeOnlyColumn = null;
- this.dgvViewThermometer.MultiSelect = false;
- this.dgvViewThermometer.Name = "dgvViewThermometer";
- this.dgvViewThermometer.RefreshAtHscroll = false;
- this.dgvViewThermometer.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvViewThermometer.RowHeadersWidth = 50;
- this.dgvViewThermometer.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle32.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvViewThermometer.RowsDefaultCellStyle = dataGridViewCellStyle32;
- this.dgvViewThermometer.RowTemplate.Height = 21;
- this.dgvViewThermometer.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvViewThermometer.Size = new System.Drawing.Size(619, 399);
- this.dgvViewThermometer.SortOrderColumnName = null;
- this.dgvViewThermometer.TabIndex = 25;
- this.dgvViewThermometer.Tag = true;
- this.dgvViewThermometer.TotalSumColumns = null;
- this.dgvViewThermometer.ViewRowFilter = "";
- this.dgvViewThermometer.SelectionChanged += new System.EventHandler(this.dgvViewThermometer_SelectionChanged);
- //
- // dgThermometerSelectV
- //
- this.dgThermometerSelectV.DataPropertyName = "RightFlag";
- this.dgThermometerSelectV.FalseValue = "0";
- this.dgThermometerSelectV.HeaderText = "选择";
- this.dgThermometerSelectV.Name = "dgThermometerSelectV";
- this.dgThermometerSelectV.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgThermometerSelectV.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dgThermometerSelectV.TrueValue = "1";
- this.dgThermometerSelectV.Visible = false;
- //
- // dgThermometerCodeV
- //
- this.dgThermometerCodeV.DataPropertyName = "ThermometerCode";
- dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle29.BackColor = System.Drawing.Color.White;
- this.dgThermometerCodeV.DefaultCellStyle = dataGridViewCellStyle29;
- this.dgThermometerCodeV.HeaderText = "温湿计编码";
- this.dgThermometerCodeV.MaxInputLength = 20;
- this.dgThermometerCodeV.Name = "dgThermometerCodeV";
- this.dgThermometerCodeV.ReadOnly = true;
- this.dgThermometerCodeV.Width = 120;
- //
- // dgManagerNameV
- //
- this.dgManagerNameV.DataPropertyName = "ManagerName";
- dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
- this.dgManagerNameV.DefaultCellStyle = dataGridViewCellStyle30;
- this.dgManagerNameV.HeaderText = "责任人";
- this.dgManagerNameV.MaxInputLength = 20;
- this.dgManagerNameV.Name = "dgManagerNameV";
- this.dgManagerNameV.ReadOnly = true;
- this.dgManagerNameV.Width = 120;
- //
- // dgValueFlagV
- //
- this.dgValueFlagV.DataPropertyName = "ValueFlag";
- this.dgValueFlagV.FalseValue = "0";
- this.dgValueFlagV.HeaderText = "有效标识";
- this.dgValueFlagV.Name = "dgValueFlagV";
- this.dgValueFlagV.ReadOnly = true;
- this.dgValueFlagV.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgValueFlagV.TrueValue = "1";
- //
- // dgThermometerIDV
- //
- this.dgThermometerIDV.DataPropertyName = "Purviewid";
- dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle31.BackColor = System.Drawing.Color.White;
- this.dgThermometerIDV.DefaultCellStyle = dataGridViewCellStyle31;
- this.dgThermometerIDV.HeaderText = "温湿计ID";
- this.dgThermometerIDV.MaxInputLength = 4;
- this.dgThermometerIDV.Name = "dgThermometerIDV";
- this.dgThermometerIDV.Visible = false;
- //
- // tpgThermometer
- //
- this.tpgThermometer.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
- this.tpgThermometer.Controls.Add(this.dgvThermometer);
- this.tpgThermometer.Location = new System.Drawing.Point(4, 50);
- this.tpgThermometer.Name = "tpgThermometer";
- this.tpgThermometer.Padding = new System.Windows.Forms.Padding(3);
- this.tpgThermometer.Size = new System.Drawing.Size(633, 409);
- this.tpgThermometer.TabIndex = 17;
- this.tpgThermometer.Text = "操作温湿计范围";
- this.tpgThermometer.UseVisualStyleBackColor = true;
- //
- // dgvThermometer
- //
- this.dgvThermometer.AllowUserToAddRows = false;
- this.dgvThermometer.AllowUserToDeleteRows = false;
- this.dgvThermometer.AllowUserToModifyRows = true;
- this.dgvThermometer.AllowUserToOrderColumns = true;
- this.dgvThermometer.AllowUserToResizeRows = false;
- dataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvThermometer.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle33;
- this.dgvThermometer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvThermometer.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvThermometer.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvThermometer.CellHeight = 23;
- this.dgvThermometer.ChildNodeColumnName = null;
- this.dgvThermometer.ChildNodeColumnText = null;
- this.dgvThermometer.ColumnDeep = 1;
- this.dgvThermometer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle34.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle34.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle34.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle34.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvThermometer.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle34;
- this.dgvThermometer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvThermometer.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dgThermometerSelect,
- this.dgThermometerCode,
- this.dgManagerName,
- this.dgValueFlag,
- this.dgThermometerID});
- this.dgvThermometer.ColumnTreeView = null;
- this.dgvThermometer.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvThermometer.DynamicColumnName = "";
- this.dgvThermometer.EnableHeadersVisualStyles = false;
- this.dgvThermometer.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvThermometer.FormatQuantityColumns = null;
- this.dgvThermometer.HorizontalMergeColumn = null;
- this.dgvThermometer.IsAutoCountSum = true;
- this.dgvThermometer.IsAutoResizeColumns = false;
- this.dgvThermometer.IsClickF12 = false;
- this.dgvThermometer.IsOpenMergeCellFlag = false;
- this.dgvThermometer.IsSubTotalFlag = false;
- this.dgvThermometer.IsTopDeep = false;
- this.dgvThermometer.Location = new System.Drawing.Point(8, 5);
- this.dgvThermometer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.dgvThermometer.MergeColumnNames = null;
- this.dgvThermometer.MergeDetailColumnNames = null;
- this.dgvThermometer.MergeDetailOnlyColumn = null;
- this.dgvThermometer.MergeOnlyColumn = null;
- this.dgvThermometer.MultiSelect = false;
- this.dgvThermometer.Name = "dgvThermometer";
- this.dgvThermometer.RefreshAtHscroll = false;
- this.dgvThermometer.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- this.dgvThermometer.RowHeadersWidth = 50;
- this.dgvThermometer.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle38.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvThermometer.RowsDefaultCellStyle = dataGridViewCellStyle38;
- this.dgvThermometer.RowTemplate.Height = 21;
- this.dgvThermometer.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvThermometer.Size = new System.Drawing.Size(619, 399);
- this.dgvThermometer.SortOrderColumnName = null;
- this.dgvThermometer.TabIndex = 26;
- this.dgvThermometer.Tag = true;
- this.dgvThermometer.TotalSumColumns = null;
- this.dgvThermometer.ViewRowFilter = "";
- this.dgvThermometer.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvThermometer_CellValueChanged);
- this.dgvThermometer.SelectionChanged += new System.EventHandler(this.dgvThermometer_SelectionChanged);
- //
- // dgThermometerSelect
- //
- this.dgThermometerSelect.DataPropertyName = "RightFlag";
- this.dgThermometerSelect.FalseValue = "0";
- this.dgThermometerSelect.HeaderText = "选择";
- this.dgThermometerSelect.Name = "dgThermometerSelect";
- this.dgThermometerSelect.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgThermometerSelect.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dgThermometerSelect.TrueValue = "1";
- this.dgThermometerSelect.Visible = false;
- //
- // dgThermometerCode
- //
- this.dgThermometerCode.DataPropertyName = "ThermometerCode";
- dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
- this.dgThermometerCode.DefaultCellStyle = dataGridViewCellStyle35;
- this.dgThermometerCode.HeaderText = "温湿计编码";
- this.dgThermometerCode.MaxInputLength = 20;
- this.dgThermometerCode.Name = "dgThermometerCode";
- this.dgThermometerCode.ReadOnly = true;
- this.dgThermometerCode.Width = 120;
- //
- // dgManagerName
- //
- this.dgManagerName.DataPropertyName = "ManagerName";
- dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle36.BackColor = System.Drawing.Color.White;
- this.dgManagerName.DefaultCellStyle = dataGridViewCellStyle36;
- this.dgManagerName.HeaderText = "责任人";
- this.dgManagerName.MaxInputLength = 20;
- this.dgManagerName.Name = "dgManagerName";
- this.dgManagerName.ReadOnly = true;
- this.dgManagerName.Width = 120;
- //
- // dgValueFlag
- //
- this.dgValueFlag.DataPropertyName = "ValueFlag";
- this.dgValueFlag.FalseValue = "0";
- this.dgValueFlag.HeaderText = "有效标识";
- this.dgValueFlag.Name = "dgValueFlag";
- this.dgValueFlag.ReadOnly = true;
- this.dgValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dgValueFlag.TrueValue = "1";
- //
- // dgThermometerID
- //
- this.dgThermometerID.DataPropertyName = "Purviewid";
- dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle37.BackColor = System.Drawing.Color.White;
- this.dgThermometerID.DefaultCellStyle = dataGridViewCellStyle37;
- this.dgThermometerID.HeaderText = "温湿计ID";
- this.dgThermometerID.MaxInputLength = 4;
- this.dgThermometerID.Name = "dgThermometerID";
- this.dgThermometerID.Visible = false;
- //
- // tpgCancelprocedure
- //
- this.tpgCancelprocedure.Controls.Add(this.treeViewCancel);
- this.tpgCancelprocedure.Location = new System.Drawing.Point(4, 50);
- this.tpgCancelprocedure.Name = "tpgCancelprocedure";
- this.tpgCancelprocedure.Size = new System.Drawing.Size(633, 409);
- this.tpgCancelprocedure.TabIndex = 18;
- this.tpgCancelprocedure.Text = "撤销工序范围权限";
- this.tpgCancelprocedure.UseVisualStyleBackColor = true;
- //
- // treeViewCancel
- //
- this.treeViewCancel.BackColor = System.Drawing.SystemColors.Window;
- this.treeViewCancel.Indent = 20;
- this.treeViewCancel.ItemHeight = 20;
- this.treeViewCancel.LineColor = System.Drawing.Color.Red;
- this.treeViewCancel.Location = new System.Drawing.Point(3, 3);
- this.treeViewCancel.Name = "treeViewCancel";
- this.treeViewCancel.Size = new System.Drawing.Size(630, 403);
- this.treeViewCancel.TabIndex = 17;
- this.treeViewCancel.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewCancel_AfterSelect);
- //
- // dgvFunctionUsers
- //
- this.dgvFunctionUsers.AllowUserToModifyRows = true;
- dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvFunctionUsers.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle39;
- this.dgvFunctionUsers.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvFunctionUsers.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvFunctionUsers.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvFunctionUsers.CellHeight = 23;
- this.dgvFunctionUsers.ChildNodeColumnName = null;
- this.dgvFunctionUsers.ChildNodeColumnText = null;
- this.dgvFunctionUsers.ColumnDeep = 1;
- this.dgvFunctionUsers.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle40.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle40.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle40.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle40.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle40.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFunctionUsers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle40;
- this.dgvFunctionUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvFunctionUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.UserCode1,
- this.UserName1,
- this.OrganizationName1,
- this.UserID1,
- this.AddFlag,
- this.Purviewid,
- this.PURVIEWTYPE});
- this.dgvFunctionUsers.ColumnTreeView = null;
- this.dgvFunctionUsers.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle41.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle41.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle41.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle41.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle41.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvFunctionUsers.DefaultCellStyle = dataGridViewCellStyle41;
- this.dgvFunctionUsers.DynamicColumnName = "";
- this.dgvFunctionUsers.EnableHeadersVisualStyles = false;
- this.dgvFunctionUsers.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvFunctionUsers.FormatQuantityColumns = null;
- this.dgvFunctionUsers.HorizontalMergeColumn = null;
- this.dgvFunctionUsers.IsAutoCountSum = true;
- this.dgvFunctionUsers.IsAutoResizeColumns = false;
- this.dgvFunctionUsers.IsClickF12 = false;
- this.dgvFunctionUsers.IsOpenMergeCellFlag = false;
- this.dgvFunctionUsers.IsSubTotalFlag = false;
- this.dgvFunctionUsers.IsTopDeep = false;
- this.dgvFunctionUsers.Location = new System.Drawing.Point(653, 6);
- this.dgvFunctionUsers.MergeColumnNames = null;
- this.dgvFunctionUsers.MergeDetailColumnNames = null;
- this.dgvFunctionUsers.MergeDetailOnlyColumn = null;
- this.dgvFunctionUsers.MergeOnlyColumn = null;
- this.dgvFunctionUsers.MultiSelect = false;
- this.dgvFunctionUsers.Name = "dgvFunctionUsers";
- this.dgvFunctionUsers.RefreshAtHscroll = false;
- dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle42.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle42.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFunctionUsers.RowHeadersDefaultCellStyle = dataGridViewCellStyle42;
- this.dgvFunctionUsers.RowHeadersWidth = 50;
- this.dgvFunctionUsers.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle43.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvFunctionUsers.RowsDefaultCellStyle = dataGridViewCellStyle43;
- this.dgvFunctionUsers.RowTemplate.Height = 21;
- this.dgvFunctionUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvFunctionUsers.Size = new System.Drawing.Size(355, 463);
- this.dgvFunctionUsers.SortOrderColumnName = null;
- this.dgvFunctionUsers.TabIndex = 4;
- this.dgvFunctionUsers.Tag = true;
- this.dgvFunctionUsers.TotalSumColumns = null;
- this.dgvFunctionUsers.ViewRowFilter = "";
- this.dgvFunctionUsers.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvFunctionUsers_CellBeginEdit);
- this.dgvFunctionUsers.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvFunctionUsers_CellValueChanged);
- this.dgvFunctionUsers.Sorted += new System.EventHandler(this.dgvFunctionUsers_Sorted);
- this.dgvFunctionUsers.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvFunctionUsers_UserDeletingRow);
- //
- // UserCode1
- //
- this.UserCode1.DataPropertyName = "UserCode";
- this.UserCode1.HeaderText = "用户编码";
- this.UserCode1.Name = "UserCode1";
- this.UserCode1.Width = 80;
- //
- // UserName1
- //
- this.UserName1.DataPropertyName = "UserName";
- this.UserName1.HeaderText = "用户名称";
- this.UserName1.Name = "UserName1";
- this.UserName1.ReadOnly = true;
- this.UserName1.Width = 80;
- //
- // OrganizationName1
- //
- this.OrganizationName1.DataPropertyName = "OrganizationName";
- this.OrganizationName1.HeaderText = "组织机构";
- this.OrganizationName1.Name = "OrganizationName1";
- this.OrganizationName1.ReadOnly = true;
- this.OrganizationName1.Width = 120;
- //
- // UserID1
- //
- this.UserID1.DataPropertyName = "UserID";
- this.UserID1.HeaderText = "UserID";
- this.UserID1.Name = "UserID1";
- this.UserID1.Visible = false;
- //
- // AddFlag
- //
- this.AddFlag.DataPropertyName = "AddFlag";
- this.AddFlag.HeaderText = "AddFlag";
- this.AddFlag.Name = "AddFlag";
- this.AddFlag.Visible = false;
- //
- // Purviewid
- //
- this.Purviewid.DataPropertyName = "Purviewid";
- this.Purviewid.HeaderText = "Purviewid";
- this.Purviewid.Name = "Purviewid";
- this.Purviewid.Visible = false;
- //
- // PURVIEWTYPE
- //
- this.PURVIEWTYPE.DataPropertyName = "PURVIEWTYPE";
- this.PURVIEWTYPE.HeaderText = "PURVIEWTYPE";
- this.PURVIEWTYPE.Name = "PURVIEWTYPE";
- this.PURVIEWTYPE.Visible = false;
- //
- // F_MST_0207
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.CancelButton = this.btnCancel;
- this.ClientSize = new System.Drawing.Size(1020, 533);
- this.Controls.Add(this.dgvFunctionUsers);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnSave);
- this.Controls.Add(this.tctlRight);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.IsSaveFormSize = false;
- this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "F_MST_0207";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.StatusSizingGrip = false;
- this.Text = "范围权限";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.F_MST_0204_FormClosing);
- this.Load += new System.EventHandler(this.F_MST_0204_Load);
- this.Controls.SetChildIndex(this.tctlRight, 0);
- this.Controls.SetChildIndex(this.btnSave, 0);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.dgvFunctionUsers, 0);
- this.tpgGroutingProductionLine.ResumeLayout(false);
- this.tpgViewGroutingProductionLine.ResumeLayout(false);
- this.tpgGroutingLine.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).EndInit();
- this.tpgViewGroutingLine.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewGroutingLine)).EndInit();
- this.tpgViewUser.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewUser)).EndInit();
- this.tpgUser.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvUser)).EndInit();
- this.tpgViewOrganization.ResumeLayout(false);
- this.tpgOperationOrganization.ResumeLayout(false);
- this.tctlRight.ResumeLayout(false);
- this.tpgViewThermometer.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvViewThermometer)).EndInit();
- this.tpgThermometer.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvThermometer)).EndInit();
- this.tpgCancelprocedure.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
- private System.Windows.Forms.DataGridViewTextBoxColumn BrandID;
- private System.Windows.Forms.DataGridViewTextBoxColumn BrandName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn UserChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserID;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserName;
- private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationName;
- private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationFullName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn ValueFlag;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CustomerChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn CustomerID;
- private System.Windows.Forms.DataGridViewTextBoxColumn CustomerCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn CustomerName;
- private System.Windows.Forms.DataGridViewTextBoxColumn DistrictName;
- private System.Windows.Forms.DataGridViewTextBoxColumn CustomerChannelName;
- private System.Windows.Forms.DataGridViewTextBoxColumn Contacts;
- private System.Windows.Forms.DataGridViewTextBoxColumn Telephone;
- private System.Windows.Forms.DataGridViewTextBoxColumn Address;
- private System.Windows.Forms.DataGridViewCheckBoxColumn SettlementTypeChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn SettlementTypeID;
- private System.Windows.Forms.DataGridViewTextBoxColumn SettlementType;
- private System.Windows.Forms.DataGridViewCheckBoxColumn SecondSettlementChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn OriginaOrganizationName;
- private System.Windows.Forms.DataGridViewTextBoxColumn TargetOrganizationName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn ChannelChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn ChannelName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn ControlledFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn ChannelTactics;
- private System.Windows.Forms.DataGridViewTextBoxColumn Remarks;
- private System.Windows.Forms.DataGridViewCheckBoxColumn StaffChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn StaffID;
- private System.Windows.Forms.DataGridViewTextBoxColumn StaffCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn StaffName;
- private System.Windows.Forms.DataGridViewTextBoxColumn StaffOrganizationName;
- private System.Windows.Forms.DataGridViewTextBoxColumn StaffOrganizationFullName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn StaffValueFlag;
- private System.Windows.Forms.DataGridViewCheckBoxColumn FeeObjectChoose;
- private System.Windows.Forms.DataGridViewTextBoxColumn ObjectTypeID;
- private System.Windows.Forms.DataGridViewTextBoxColumn ObjectTypeName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn10;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
- private Basics.BaseControls.C_Button btnSave;
- private Basics.BaseControls.C_Button btnCancel;
- private System.Windows.Forms.TabPage tpgGroutingProductionLine;
- private System.Windows.Forms.TreeView tvwGroutinProductionLineCK;
- private System.Windows.Forms.TabPage tpgViewGroutingProductionLine;
- private System.Windows.Forms.TreeView tvwGroutinProductionLine;
- private System.Windows.Forms.TabPage tpgGroutingLine;
- private Basics.BaseControls.C_DataGridView dgvGroutingLine;
- private System.Windows.Forms.TabPage tpgViewGroutingLine;
- private Basics.BaseControls.C_DataGridView dgvViewGroutingLine;
- private System.Windows.Forms.TabPage tpgViewUser;
- private Basics.BaseControls.C_DataGridView dgvViewUser;
- private System.Windows.Forms.TabPage tpgUser;
- private Basics.BaseControls.C_DataGridView dgvUser;
- private System.Windows.Forms.TabPage tpgViewOrganization;
- private System.Windows.Forms.Button btnViewOrganizationExpandAll;
- private System.Windows.Forms.Button btnViewOrganizationCollapseAll;
- private System.Windows.Forms.TreeView tvwViewOrganization;
- private System.Windows.Forms.TabPage tpgOperationOrganization;
- private System.Windows.Forms.TreeView tvwOrganization;
- private System.Windows.Forms.Button btnOrganizationExpandAll;
- private System.Windows.Forms.Button btnOrganizationCollapseAll;
- private System.Windows.Forms.TabControl tctlRight;
- private System.Windows.Forms.TabPage tpgViewThermometer;
- private Basics.BaseControls.C_DataGridView dgvViewThermometer;
- private System.Windows.Forms.TabPage tpgThermometer;
- private Basics.BaseControls.C_DataGridView dgvThermometer;
- private Basics.BaseControls.C_DataGridView dgvFunctionUsers;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgUserRightFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgUserName;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgUserOrganizationName;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgUserOrganizationFullName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgUserValueFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgUserID;
- private System.Windows.Forms.DataGridViewCheckBoxColumn RightFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
- private System.Windows.Forms.DataGridViewCheckBoxColumn ValueFlagText;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgvViewUserID;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgViewGroutingLineRightFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGrNoutingLineName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgViewGroutingLineValueFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGroutingLineID;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgGroutingLineRightFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgGroutingLineValueFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineID;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgThermometerSelectV;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerCodeV;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgManagerNameV;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgValueFlagV;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerIDV;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgThermometerSelect;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgManagerName;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dgValueFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerID;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserCode2;
- private System.Windows.Forms.TabPage tpgCancelprocedure;
- private System.Windows.Forms.TreeView treeViewCancel;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserCode1;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserName1;
- private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationName1;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserID1;
- private System.Windows.Forms.DataGridViewTextBoxColumn AddFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn Purviewid;
- private System.Windows.Forms.DataGridViewTextBoxColumn PURVIEWTYPE;
- }
- }
|