F_MST_0207.Designer.cs 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. namespace Dongke.IBOSS.PRD.Client.SystemModule
  2. {
  3. partial class F_MST_0207
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_MST_0207));
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  71. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
  72. this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  73. this.BrandID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.BrandName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.UserChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  76. this.UserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  77. this.UserCode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  78. this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  79. this.OrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  80. this.OrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  81. this.ValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  82. this.CustomerChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  83. this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.CustomerCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  86. this.DistrictName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.CustomerChannelName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.Contacts = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.Telephone = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.Address = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.SettlementTypeChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  92. this.SettlementTypeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.SettlementType = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.SecondSettlementChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  95. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  96. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  97. this.OriginaOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  98. this.TargetOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  99. this.ChannelChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  100. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.ChannelName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.ControlledFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  103. this.ChannelTactics = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.StaffChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  106. this.StaffID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.StaffCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.StaffName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  109. this.StaffOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  110. this.StaffOrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  111. this.StaffValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  112. this.FeeObjectChoose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  113. this.ObjectTypeID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.ObjectTypeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  116. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  117. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  118. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  119. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  125. this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  126. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  127. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  128. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  129. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  130. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.dataGridViewCheckBoxColumn5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  135. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.dataGridViewCheckBoxColumn6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  138. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.dataGridViewCheckBoxColumn7 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  143. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.dataGridViewCheckBoxColumn8 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  146. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.dataGridViewCheckBoxColumn9 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  149. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  154. this.dataGridViewCheckBoxColumn10 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  155. this.dataGridViewCheckBoxColumn11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  156. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  157. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  158. this.btnSave = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  159. this.btnCancel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  160. this.tpgGroutingProductionLine = new System.Windows.Forms.TabPage();
  161. this.tvwGroutinProductionLineCK = new System.Windows.Forms.TreeView();
  162. this.tpgViewGroutingProductionLine = new System.Windows.Forms.TabPage();
  163. this.tvwGroutinProductionLine = new System.Windows.Forms.TreeView();
  164. this.tpgGroutingLine = new System.Windows.Forms.TabPage();
  165. this.dgvGroutingLine = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  166. this.dgGroutingLineRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  167. this.dgGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  168. this.dgGroutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  169. this.dgGroutingLineValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  170. this.dgGroutingLineID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  171. this.tpgViewGroutingLine = new System.Windows.Forms.TabPage();
  172. this.dgvViewGroutingLine = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  173. this.dgViewGroutingLineRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  174. this.dgViewGroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.dgViewGrNoutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. this.dgViewGroutingLineValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  177. this.dgViewGroutingLineID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  178. this.tpgViewUser = new System.Windows.Forms.TabPage();
  179. this.dgvViewUser = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  180. this.RightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  181. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  182. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  183. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  184. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  185. this.ValueFlagText = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  186. this.dgvViewUserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  187. this.tpgUser = new System.Windows.Forms.TabPage();
  188. this.dgvUser = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  189. this.dgUserRightFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  190. this.dgUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  191. this.dgUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  192. this.dgUserOrganizationName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  193. this.dgUserOrganizationFullName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  194. this.dgUserValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  195. this.dgUserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  196. this.tpgViewOrganization = new System.Windows.Forms.TabPage();
  197. this.btnViewOrganizationExpandAll = new System.Windows.Forms.Button();
  198. this.btnViewOrganizationCollapseAll = new System.Windows.Forms.Button();
  199. this.tvwViewOrganization = new System.Windows.Forms.TreeView();
  200. this.tpgOperationOrganization = new System.Windows.Forms.TabPage();
  201. this.tvwOrganization = new System.Windows.Forms.TreeView();
  202. this.btnOrganizationExpandAll = new System.Windows.Forms.Button();
  203. this.btnOrganizationCollapseAll = new System.Windows.Forms.Button();
  204. this.tctlRight = new System.Windows.Forms.TabControl();
  205. this.tpgViewThermometer = new System.Windows.Forms.TabPage();
  206. this.dgvViewThermometer = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  207. this.dgThermometerSelectV = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  208. this.dgThermometerCodeV = new System.Windows.Forms.DataGridViewTextBoxColumn();
  209. this.dgManagerNameV = new System.Windows.Forms.DataGridViewTextBoxColumn();
  210. this.dgValueFlagV = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  211. this.dgThermometerIDV = new System.Windows.Forms.DataGridViewTextBoxColumn();
  212. this.tpgThermometer = new System.Windows.Forms.TabPage();
  213. this.dgvThermometer = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  214. this.dgThermometerSelect = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  215. this.dgThermometerCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  216. this.dgManagerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  217. this.dgValueFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  218. this.dgThermometerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  219. this.tpgCancelprocedure = new System.Windows.Forms.TabPage();
  220. this.treeViewCancel = new System.Windows.Forms.TreeView();
  221. this.dgvFunctionUsers = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  222. this.UserCode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  223. this.UserName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  224. this.OrganizationName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  225. this.UserID1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  226. this.AddFlag = new System.Windows.Forms.DataGridViewTextBoxColumn();
  227. this.Purviewid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  228. this.PURVIEWTYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  229. this.tpgGroutingProductionLine.SuspendLayout();
  230. this.tpgViewGroutingProductionLine.SuspendLayout();
  231. this.tpgGroutingLine.SuspendLayout();
  232. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).BeginInit();
  233. this.tpgViewGroutingLine.SuspendLayout();
  234. ((System.ComponentModel.ISupportInitialize)(this.dgvViewGroutingLine)).BeginInit();
  235. this.tpgViewUser.SuspendLayout();
  236. ((System.ComponentModel.ISupportInitialize)(this.dgvViewUser)).BeginInit();
  237. this.tpgUser.SuspendLayout();
  238. ((System.ComponentModel.ISupportInitialize)(this.dgvUser)).BeginInit();
  239. this.tpgViewOrganization.SuspendLayout();
  240. this.tpgOperationOrganization.SuspendLayout();
  241. this.tctlRight.SuspendLayout();
  242. this.tpgViewThermometer.SuspendLayout();
  243. ((System.ComponentModel.ISupportInitialize)(this.dgvViewThermometer)).BeginInit();
  244. this.tpgThermometer.SuspendLayout();
  245. ((System.ComponentModel.ISupportInitialize)(this.dgvThermometer)).BeginInit();
  246. this.tpgCancelprocedure.SuspendLayout();
  247. ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).BeginInit();
  248. this.SuspendLayout();
  249. //
  250. // Choose
  251. //
  252. this.Choose.DataPropertyName = "RightFlag";
  253. this.Choose.HeaderText = "选择";
  254. this.Choose.Name = "Choose";
  255. this.Choose.Width = 60;
  256. //
  257. // BrandID
  258. //
  259. this.BrandID.DataPropertyName = "PurviewID";
  260. this.BrandID.HeaderText = "品牌ID";
  261. this.BrandID.Name = "BrandID";
  262. this.BrandID.ReadOnly = true;
  263. this.BrandID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  264. this.BrandID.Visible = false;
  265. //
  266. // BrandName
  267. //
  268. this.BrandName.DataPropertyName = "BrandName";
  269. this.BrandName.HeaderText = "品牌名称";
  270. this.BrandName.Name = "BrandName";
  271. this.BrandName.ReadOnly = true;
  272. this.BrandName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  273. this.BrandName.Width = 200;
  274. //
  275. // UserChoose
  276. //
  277. this.UserChoose.DataPropertyName = "RightFlag";
  278. this.UserChoose.HeaderText = "选择";
  279. this.UserChoose.Name = "UserChoose";
  280. this.UserChoose.Width = 40;
  281. //
  282. // UserID
  283. //
  284. this.UserID.DataPropertyName = "PurviewID";
  285. this.UserID.HeaderText = "用户ID";
  286. this.UserID.Name = "UserID";
  287. this.UserID.ReadOnly = true;
  288. this.UserID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  289. this.UserID.Visible = false;
  290. //
  291. // UserCode2
  292. //
  293. this.UserCode2.DataPropertyName = "UserCode";
  294. this.UserCode2.HeaderText = "用户代码";
  295. this.UserCode2.Name = "UserCode2";
  296. this.UserCode2.ReadOnly = true;
  297. this.UserCode2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  298. this.UserCode2.Width = 70;
  299. //
  300. // UserName
  301. //
  302. this.UserName.DataPropertyName = "UserName";
  303. this.UserName.HeaderText = "操作员";
  304. this.UserName.Name = "UserName";
  305. this.UserName.ReadOnly = true;
  306. this.UserName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  307. this.UserName.Width = 80;
  308. //
  309. // OrganizationName
  310. //
  311. this.OrganizationName.DataPropertyName = "OrganizationName";
  312. this.OrganizationName.HeaderText = "所属组织";
  313. this.OrganizationName.Name = "OrganizationName";
  314. this.OrganizationName.ReadOnly = true;
  315. this.OrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  316. this.OrganizationName.Width = 150;
  317. //
  318. // OrganizationFullName
  319. //
  320. this.OrganizationFullName.DataPropertyName = "OrganizationFullName";
  321. this.OrganizationFullName.HeaderText = "组织全称";
  322. this.OrganizationFullName.Name = "OrganizationFullName";
  323. this.OrganizationFullName.ReadOnly = true;
  324. //
  325. // ValueFlag
  326. //
  327. this.ValueFlag.DataPropertyName = "ValueFlag";
  328. this.ValueFlag.HeaderText = "有效";
  329. this.ValueFlag.Name = "ValueFlag";
  330. this.ValueFlag.ReadOnly = true;
  331. //
  332. // CustomerChoose
  333. //
  334. this.CustomerChoose.DataPropertyName = "RightFlag";
  335. this.CustomerChoose.HeaderText = "选择";
  336. this.CustomerChoose.Name = "CustomerChoose";
  337. this.CustomerChoose.Width = 40;
  338. //
  339. // CustomerID
  340. //
  341. this.CustomerID.DataPropertyName = "PurviewID";
  342. this.CustomerID.HeaderText = "客户ID";
  343. this.CustomerID.Name = "CustomerID";
  344. this.CustomerID.ReadOnly = true;
  345. this.CustomerID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  346. this.CustomerID.Visible = false;
  347. //
  348. // CustomerCode
  349. //
  350. this.CustomerCode.DataPropertyName = "CustomerCode";
  351. this.CustomerCode.HeaderText = "客户代码";
  352. this.CustomerCode.Name = "CustomerCode";
  353. this.CustomerCode.ReadOnly = true;
  354. this.CustomerCode.Width = 60;
  355. //
  356. // CustomerName
  357. //
  358. this.CustomerName.DataPropertyName = "CustomerName";
  359. this.CustomerName.HeaderText = "客户名称";
  360. this.CustomerName.Name = "CustomerName";
  361. this.CustomerName.ReadOnly = true;
  362. this.CustomerName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  363. this.CustomerName.Width = 80;
  364. //
  365. // DistrictName
  366. //
  367. this.DistrictName.DataPropertyName = "DistrictName";
  368. this.DistrictName.HeaderText = "客户区域";
  369. this.DistrictName.Name = "DistrictName";
  370. this.DistrictName.ReadOnly = true;
  371. this.DistrictName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  372. this.DistrictName.Width = 80;
  373. //
  374. // CustomerChannelName
  375. //
  376. this.CustomerChannelName.DataPropertyName = "ChannelName";
  377. this.CustomerChannelName.HeaderText = "渠道";
  378. this.CustomerChannelName.Name = "CustomerChannelName";
  379. this.CustomerChannelName.ReadOnly = true;
  380. this.CustomerChannelName.Width = 60;
  381. //
  382. // Contacts
  383. //
  384. this.Contacts.DataPropertyName = "Contacts";
  385. this.Contacts.HeaderText = "联系人";
  386. this.Contacts.Name = "Contacts";
  387. this.Contacts.ReadOnly = true;
  388. this.Contacts.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  389. this.Contacts.Width = 60;
  390. //
  391. // Telephone
  392. //
  393. this.Telephone.DataPropertyName = "Telephone";
  394. this.Telephone.HeaderText = "电话";
  395. this.Telephone.Name = "Telephone";
  396. this.Telephone.ReadOnly = true;
  397. this.Telephone.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  398. this.Telephone.Width = 60;
  399. //
  400. // Address
  401. //
  402. this.Address.DataPropertyName = "Address";
  403. this.Address.HeaderText = "地址";
  404. this.Address.Name = "Address";
  405. this.Address.ReadOnly = true;
  406. this.Address.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  407. //
  408. // SettlementTypeChoose
  409. //
  410. this.SettlementTypeChoose.DataPropertyName = "RightFlag";
  411. this.SettlementTypeChoose.HeaderText = "选择";
  412. this.SettlementTypeChoose.Name = "SettlementTypeChoose";
  413. this.SettlementTypeChoose.Width = 60;
  414. //
  415. // SettlementTypeID
  416. //
  417. this.SettlementTypeID.DataPropertyName = "PurviewID";
  418. this.SettlementTypeID.HeaderText = "结算方式ID";
  419. this.SettlementTypeID.Name = "SettlementTypeID";
  420. this.SettlementTypeID.ReadOnly = true;
  421. this.SettlementTypeID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  422. this.SettlementTypeID.Visible = false;
  423. //
  424. // SettlementType
  425. //
  426. this.SettlementType.DataPropertyName = "SettlementTypeName";
  427. this.SettlementType.HeaderText = "结算方式";
  428. this.SettlementType.Name = "SettlementType";
  429. this.SettlementType.ReadOnly = true;
  430. this.SettlementType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  431. this.SettlementType.Width = 200;
  432. //
  433. // SecondSettlementChoose
  434. //
  435. this.SecondSettlementChoose.DataPropertyName = "RightFlag";
  436. this.SecondSettlementChoose.HeaderText = "选择";
  437. this.SecondSettlementChoose.Name = "SecondSettlementChoose";
  438. this.SecondSettlementChoose.Width = 60;
  439. //
  440. // dataGridViewTextBoxColumn1
  441. //
  442. this.dataGridViewTextBoxColumn1.DataPropertyName = "PurviewID";
  443. this.dataGridViewTextBoxColumn1.HeaderText = "二级结算策略ID";
  444. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  445. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  446. this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  447. this.dataGridViewTextBoxColumn1.Visible = false;
  448. //
  449. // dataGridViewTextBoxColumn2
  450. //
  451. this.dataGridViewTextBoxColumn2.DataPropertyName = "SecondSettlementName";
  452. this.dataGridViewTextBoxColumn2.HeaderText = "二级结算策略";
  453. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  454. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  455. this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  456. this.dataGridViewTextBoxColumn2.Width = 150;
  457. //
  458. // OriginaOrganizationName
  459. //
  460. this.OriginaOrganizationName.DataPropertyName = "OriginaOrganizationName";
  461. this.OriginaOrganizationName.HeaderText = "源组织机构";
  462. this.OriginaOrganizationName.Name = "OriginaOrganizationName";
  463. this.OriginaOrganizationName.ReadOnly = true;
  464. this.OriginaOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  465. this.OriginaOrganizationName.Width = 150;
  466. //
  467. // TargetOrganizationName
  468. //
  469. this.TargetOrganizationName.DataPropertyName = "TargetOrganizationName";
  470. this.TargetOrganizationName.HeaderText = "目标组织机构";
  471. this.TargetOrganizationName.Name = "TargetOrganizationName";
  472. this.TargetOrganizationName.ReadOnly = true;
  473. this.TargetOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  474. this.TargetOrganizationName.Width = 150;
  475. //
  476. // ChannelChoose
  477. //
  478. this.ChannelChoose.DataPropertyName = "RightFlag";
  479. this.ChannelChoose.HeaderText = "选择";
  480. this.ChannelChoose.Name = "ChannelChoose";
  481. this.ChannelChoose.Width = 40;
  482. //
  483. // dataGridViewTextBoxColumn3
  484. //
  485. this.dataGridViewTextBoxColumn3.DataPropertyName = "PurviewID";
  486. this.dataGridViewTextBoxColumn3.HeaderText = "渠道ID";
  487. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  488. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  489. this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  490. this.dataGridViewTextBoxColumn3.Visible = false;
  491. //
  492. // ChannelName
  493. //
  494. this.ChannelName.DataPropertyName = "ChannelName";
  495. this.ChannelName.HeaderText = "渠道名称";
  496. this.ChannelName.Name = "ChannelName";
  497. this.ChannelName.ReadOnly = true;
  498. this.ChannelName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  499. this.ChannelName.Width = 60;
  500. //
  501. // ControlledFlag
  502. //
  503. this.ControlledFlag.DataPropertyName = "ControlledFlag";
  504. this.ControlledFlag.HeaderText = "受控标识";
  505. this.ControlledFlag.Name = "ControlledFlag";
  506. this.ControlledFlag.ReadOnly = true;
  507. //
  508. // ChannelTactics
  509. //
  510. this.ChannelTactics.DataPropertyName = "ChannelTactics";
  511. this.ChannelTactics.HeaderText = "渠道策略";
  512. this.ChannelTactics.Name = "ChannelTactics";
  513. this.ChannelTactics.ReadOnly = true;
  514. this.ChannelTactics.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  515. this.ChannelTactics.Width = 80;
  516. //
  517. // Remarks
  518. //
  519. this.Remarks.DataPropertyName = "Remarks";
  520. this.Remarks.HeaderText = "备注";
  521. this.Remarks.Name = "Remarks";
  522. this.Remarks.ReadOnly = true;
  523. //
  524. // StaffChoose
  525. //
  526. this.StaffChoose.DataPropertyName = "RightFlag";
  527. this.StaffChoose.HeaderText = "选择";
  528. this.StaffChoose.Name = "StaffChoose";
  529. this.StaffChoose.Width = 40;
  530. //
  531. // StaffID
  532. //
  533. this.StaffID.DataPropertyName = "PurviewID";
  534. this.StaffID.HeaderText = "业务员ID";
  535. this.StaffID.Name = "StaffID";
  536. this.StaffID.ReadOnly = true;
  537. this.StaffID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  538. this.StaffID.Visible = false;
  539. //
  540. // StaffCode
  541. //
  542. this.StaffCode.DataPropertyName = "StaffCode";
  543. this.StaffCode.HeaderText = "员工工号";
  544. this.StaffCode.Name = "StaffCode";
  545. this.StaffCode.ReadOnly = true;
  546. this.StaffCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  547. this.StaffCode.Width = 70;
  548. //
  549. // StaffName
  550. //
  551. this.StaffName.DataPropertyName = "StaffName";
  552. this.StaffName.HeaderText = "员工姓名";
  553. this.StaffName.Name = "StaffName";
  554. this.StaffName.ReadOnly = true;
  555. this.StaffName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  556. this.StaffName.Width = 80;
  557. //
  558. // StaffOrganizationName
  559. //
  560. this.StaffOrganizationName.DataPropertyName = "StaffOrganizationName";
  561. this.StaffOrganizationName.HeaderText = "所属组织";
  562. this.StaffOrganizationName.Name = "StaffOrganizationName";
  563. this.StaffOrganizationName.ReadOnly = true;
  564. this.StaffOrganizationName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  565. this.StaffOrganizationName.Width = 150;
  566. //
  567. // StaffOrganizationFullName
  568. //
  569. this.StaffOrganizationFullName.DataPropertyName = "StaffOrganizationFullName";
  570. this.StaffOrganizationFullName.HeaderText = "组织全称";
  571. this.StaffOrganizationFullName.Name = "StaffOrganizationFullName";
  572. this.StaffOrganizationFullName.ReadOnly = true;
  573. //
  574. // StaffValueFlag
  575. //
  576. this.StaffValueFlag.DataPropertyName = "ValueFlag";
  577. this.StaffValueFlag.HeaderText = "有效";
  578. this.StaffValueFlag.Name = "StaffValueFlag";
  579. this.StaffValueFlag.ReadOnly = true;
  580. //
  581. // FeeObjectChoose
  582. //
  583. this.FeeObjectChoose.DataPropertyName = "RightFlag";
  584. this.FeeObjectChoose.HeaderText = "选择";
  585. this.FeeObjectChoose.Name = "FeeObjectChoose";
  586. this.FeeObjectChoose.Width = 60;
  587. //
  588. // ObjectTypeID
  589. //
  590. this.ObjectTypeID.DataPropertyName = "ObjectTypeID";
  591. this.ObjectTypeID.HeaderText = "账务对象ID";
  592. this.ObjectTypeID.Name = "ObjectTypeID";
  593. this.ObjectTypeID.ReadOnly = true;
  594. this.ObjectTypeID.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  595. this.ObjectTypeID.Visible = false;
  596. //
  597. // ObjectTypeName
  598. //
  599. this.ObjectTypeName.DataPropertyName = "ObjectTypeName";
  600. this.ObjectTypeName.HeaderText = "账务对象名称";
  601. this.ObjectTypeName.Name = "ObjectTypeName";
  602. this.ObjectTypeName.ReadOnly = true;
  603. this.ObjectTypeName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  604. this.ObjectTypeName.Width = 200;
  605. //
  606. // dataGridViewCheckBoxColumn1
  607. //
  608. this.dataGridViewCheckBoxColumn1.DataPropertyName = "RightFlag";
  609. this.dataGridViewCheckBoxColumn1.HeaderText = "选择";
  610. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  611. this.dataGridViewCheckBoxColumn1.Width = 60;
  612. //
  613. // dataGridViewTextBoxColumn4
  614. //
  615. this.dataGridViewTextBoxColumn4.DataPropertyName = "PurviewID";
  616. this.dataGridViewTextBoxColumn4.HeaderText = "品牌ID";
  617. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  618. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  619. this.dataGridViewTextBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  620. this.dataGridViewTextBoxColumn4.Visible = false;
  621. //
  622. // dataGridViewTextBoxColumn5
  623. //
  624. this.dataGridViewTextBoxColumn5.DataPropertyName = "BrandName";
  625. this.dataGridViewTextBoxColumn5.HeaderText = "品牌名称";
  626. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  627. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  628. this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  629. this.dataGridViewTextBoxColumn5.Width = 200;
  630. //
  631. // dataGridViewCheckBoxColumn2
  632. //
  633. this.dataGridViewCheckBoxColumn2.DataPropertyName = "RightFlag";
  634. this.dataGridViewCheckBoxColumn2.HeaderText = "选择";
  635. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  636. this.dataGridViewCheckBoxColumn2.Width = 40;
  637. //
  638. // dataGridViewTextBoxColumn6
  639. //
  640. this.dataGridViewTextBoxColumn6.DataPropertyName = "PurviewID";
  641. this.dataGridViewTextBoxColumn6.HeaderText = "用户ID";
  642. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  643. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  644. this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  645. this.dataGridViewTextBoxColumn6.Visible = false;
  646. //
  647. // dataGridViewTextBoxColumn7
  648. //
  649. this.dataGridViewTextBoxColumn7.DataPropertyName = "UserCode";
  650. this.dataGridViewTextBoxColumn7.HeaderText = "用户代码";
  651. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  652. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  653. this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  654. this.dataGridViewTextBoxColumn7.Width = 70;
  655. //
  656. // dataGridViewTextBoxColumn8
  657. //
  658. this.dataGridViewTextBoxColumn8.DataPropertyName = "UserName";
  659. this.dataGridViewTextBoxColumn8.HeaderText = "操作员";
  660. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  661. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  662. this.dataGridViewTextBoxColumn8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  663. this.dataGridViewTextBoxColumn8.Width = 80;
  664. //
  665. // dataGridViewTextBoxColumn9
  666. //
  667. this.dataGridViewTextBoxColumn9.DataPropertyName = "OrganizationName";
  668. this.dataGridViewTextBoxColumn9.HeaderText = "所属组织";
  669. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  670. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  671. this.dataGridViewTextBoxColumn9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  672. this.dataGridViewTextBoxColumn9.Width = 150;
  673. //
  674. // dataGridViewTextBoxColumn10
  675. //
  676. this.dataGridViewTextBoxColumn10.DataPropertyName = "OrganizationFullName";
  677. this.dataGridViewTextBoxColumn10.HeaderText = "组织全称";
  678. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  679. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  680. //
  681. // dataGridViewCheckBoxColumn3
  682. //
  683. this.dataGridViewCheckBoxColumn3.DataPropertyName = "ValueFlag";
  684. this.dataGridViewCheckBoxColumn3.HeaderText = "有效";
  685. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  686. this.dataGridViewCheckBoxColumn3.ReadOnly = true;
  687. //
  688. // dataGridViewCheckBoxColumn4
  689. //
  690. this.dataGridViewCheckBoxColumn4.DataPropertyName = "RightFlag";
  691. this.dataGridViewCheckBoxColumn4.HeaderText = "选择";
  692. this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
  693. this.dataGridViewCheckBoxColumn4.Width = 40;
  694. //
  695. // dataGridViewTextBoxColumn11
  696. //
  697. this.dataGridViewTextBoxColumn11.DataPropertyName = "PurviewID";
  698. this.dataGridViewTextBoxColumn11.HeaderText = "客户ID";
  699. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  700. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  701. this.dataGridViewTextBoxColumn11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  702. this.dataGridViewTextBoxColumn11.Visible = false;
  703. //
  704. // dataGridViewTextBoxColumn12
  705. //
  706. this.dataGridViewTextBoxColumn12.DataPropertyName = "CustomerCode";
  707. this.dataGridViewTextBoxColumn12.HeaderText = "客户代码";
  708. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  709. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  710. this.dataGridViewTextBoxColumn12.Width = 60;
  711. //
  712. // dataGridViewTextBoxColumn13
  713. //
  714. this.dataGridViewTextBoxColumn13.DataPropertyName = "CustomerName";
  715. this.dataGridViewTextBoxColumn13.HeaderText = "客户名称";
  716. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  717. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  718. this.dataGridViewTextBoxColumn13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  719. this.dataGridViewTextBoxColumn13.Width = 80;
  720. //
  721. // dataGridViewTextBoxColumn14
  722. //
  723. this.dataGridViewTextBoxColumn14.DataPropertyName = "DistrictName";
  724. this.dataGridViewTextBoxColumn14.HeaderText = "客户区域";
  725. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  726. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  727. this.dataGridViewTextBoxColumn14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  728. this.dataGridViewTextBoxColumn14.Width = 80;
  729. //
  730. // dataGridViewTextBoxColumn15
  731. //
  732. this.dataGridViewTextBoxColumn15.DataPropertyName = "ChannelName";
  733. this.dataGridViewTextBoxColumn15.HeaderText = "渠道";
  734. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  735. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  736. this.dataGridViewTextBoxColumn15.Width = 60;
  737. //
  738. // dataGridViewTextBoxColumn16
  739. //
  740. this.dataGridViewTextBoxColumn16.DataPropertyName = "Contacts";
  741. this.dataGridViewTextBoxColumn16.HeaderText = "联系人";
  742. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  743. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  744. this.dataGridViewTextBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  745. this.dataGridViewTextBoxColumn16.Width = 60;
  746. //
  747. // dataGridViewTextBoxColumn17
  748. //
  749. this.dataGridViewTextBoxColumn17.DataPropertyName = "Telephone";
  750. this.dataGridViewTextBoxColumn17.HeaderText = "电话";
  751. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  752. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  753. this.dataGridViewTextBoxColumn17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  754. this.dataGridViewTextBoxColumn17.Width = 60;
  755. //
  756. // dataGridViewTextBoxColumn18
  757. //
  758. this.dataGridViewTextBoxColumn18.DataPropertyName = "Address";
  759. this.dataGridViewTextBoxColumn18.HeaderText = "地址";
  760. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  761. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  762. this.dataGridViewTextBoxColumn18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  763. //
  764. // dataGridViewCheckBoxColumn5
  765. //
  766. this.dataGridViewCheckBoxColumn5.DataPropertyName = "RightFlag";
  767. this.dataGridViewCheckBoxColumn5.HeaderText = "选择";
  768. this.dataGridViewCheckBoxColumn5.Name = "dataGridViewCheckBoxColumn5";
  769. this.dataGridViewCheckBoxColumn5.Width = 60;
  770. //
  771. // dataGridViewTextBoxColumn19
  772. //
  773. this.dataGridViewTextBoxColumn19.DataPropertyName = "PurviewID";
  774. this.dataGridViewTextBoxColumn19.HeaderText = "结算方式ID";
  775. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  776. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  777. this.dataGridViewTextBoxColumn19.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  778. this.dataGridViewTextBoxColumn19.Visible = false;
  779. //
  780. // dataGridViewTextBoxColumn20
  781. //
  782. this.dataGridViewTextBoxColumn20.DataPropertyName = "SettlementTypeName";
  783. this.dataGridViewTextBoxColumn20.HeaderText = "结算方式";
  784. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  785. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  786. this.dataGridViewTextBoxColumn20.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  787. this.dataGridViewTextBoxColumn20.Width = 200;
  788. //
  789. // dataGridViewCheckBoxColumn6
  790. //
  791. this.dataGridViewCheckBoxColumn6.DataPropertyName = "RightFlag";
  792. this.dataGridViewCheckBoxColumn6.HeaderText = "选择";
  793. this.dataGridViewCheckBoxColumn6.Name = "dataGridViewCheckBoxColumn6";
  794. this.dataGridViewCheckBoxColumn6.Width = 60;
  795. //
  796. // dataGridViewTextBoxColumn21
  797. //
  798. this.dataGridViewTextBoxColumn21.DataPropertyName = "PurviewID";
  799. this.dataGridViewTextBoxColumn21.HeaderText = "二级结算策略ID";
  800. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  801. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  802. this.dataGridViewTextBoxColumn21.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  803. this.dataGridViewTextBoxColumn21.Visible = false;
  804. //
  805. // dataGridViewTextBoxColumn22
  806. //
  807. this.dataGridViewTextBoxColumn22.DataPropertyName = "SecondSettlementName";
  808. this.dataGridViewTextBoxColumn22.HeaderText = "二级结算策略";
  809. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  810. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  811. this.dataGridViewTextBoxColumn22.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  812. this.dataGridViewTextBoxColumn22.Width = 150;
  813. //
  814. // dataGridViewTextBoxColumn23
  815. //
  816. this.dataGridViewTextBoxColumn23.DataPropertyName = "OriginaOrganizationName";
  817. this.dataGridViewTextBoxColumn23.HeaderText = "源组织机构";
  818. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  819. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  820. this.dataGridViewTextBoxColumn23.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  821. this.dataGridViewTextBoxColumn23.Width = 150;
  822. //
  823. // dataGridViewTextBoxColumn24
  824. //
  825. this.dataGridViewTextBoxColumn24.DataPropertyName = "TargetOrganizationName";
  826. this.dataGridViewTextBoxColumn24.HeaderText = "目标组织机构";
  827. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  828. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  829. this.dataGridViewTextBoxColumn24.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  830. this.dataGridViewTextBoxColumn24.Width = 150;
  831. //
  832. // dataGridViewCheckBoxColumn7
  833. //
  834. this.dataGridViewCheckBoxColumn7.DataPropertyName = "RightFlag";
  835. this.dataGridViewCheckBoxColumn7.HeaderText = "选择";
  836. this.dataGridViewCheckBoxColumn7.Name = "dataGridViewCheckBoxColumn7";
  837. this.dataGridViewCheckBoxColumn7.Width = 40;
  838. //
  839. // dataGridViewTextBoxColumn25
  840. //
  841. this.dataGridViewTextBoxColumn25.DataPropertyName = "PurviewID";
  842. this.dataGridViewTextBoxColumn25.HeaderText = "渠道ID";
  843. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  844. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  845. this.dataGridViewTextBoxColumn25.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  846. this.dataGridViewTextBoxColumn25.Visible = false;
  847. //
  848. // dataGridViewTextBoxColumn26
  849. //
  850. this.dataGridViewTextBoxColumn26.DataPropertyName = "ChannelName";
  851. this.dataGridViewTextBoxColumn26.HeaderText = "渠道名称";
  852. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  853. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  854. this.dataGridViewTextBoxColumn26.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  855. this.dataGridViewTextBoxColumn26.Width = 60;
  856. //
  857. // dataGridViewCheckBoxColumn8
  858. //
  859. this.dataGridViewCheckBoxColumn8.DataPropertyName = "ControlledFlag";
  860. this.dataGridViewCheckBoxColumn8.HeaderText = "受控标识";
  861. this.dataGridViewCheckBoxColumn8.Name = "dataGridViewCheckBoxColumn8";
  862. this.dataGridViewCheckBoxColumn8.ReadOnly = true;
  863. //
  864. // dataGridViewTextBoxColumn27
  865. //
  866. this.dataGridViewTextBoxColumn27.DataPropertyName = "ChannelTactics";
  867. this.dataGridViewTextBoxColumn27.HeaderText = "渠道策略";
  868. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  869. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  870. this.dataGridViewTextBoxColumn27.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  871. this.dataGridViewTextBoxColumn27.Width = 80;
  872. //
  873. // dataGridViewTextBoxColumn28
  874. //
  875. this.dataGridViewTextBoxColumn28.DataPropertyName = "Remarks";
  876. this.dataGridViewTextBoxColumn28.HeaderText = "备注";
  877. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  878. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  879. //
  880. // dataGridViewCheckBoxColumn9
  881. //
  882. this.dataGridViewCheckBoxColumn9.DataPropertyName = "RightFlag";
  883. this.dataGridViewCheckBoxColumn9.HeaderText = "选择";
  884. this.dataGridViewCheckBoxColumn9.Name = "dataGridViewCheckBoxColumn9";
  885. this.dataGridViewCheckBoxColumn9.Width = 40;
  886. //
  887. // dataGridViewTextBoxColumn29
  888. //
  889. this.dataGridViewTextBoxColumn29.DataPropertyName = "PurviewID";
  890. this.dataGridViewTextBoxColumn29.HeaderText = "业务员ID";
  891. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  892. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  893. this.dataGridViewTextBoxColumn29.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  894. this.dataGridViewTextBoxColumn29.Visible = false;
  895. //
  896. // dataGridViewTextBoxColumn30
  897. //
  898. this.dataGridViewTextBoxColumn30.DataPropertyName = "StaffCode";
  899. this.dataGridViewTextBoxColumn30.HeaderText = "员工工号";
  900. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  901. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  902. this.dataGridViewTextBoxColumn30.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  903. this.dataGridViewTextBoxColumn30.Width = 70;
  904. //
  905. // dataGridViewTextBoxColumn31
  906. //
  907. this.dataGridViewTextBoxColumn31.DataPropertyName = "StaffName";
  908. this.dataGridViewTextBoxColumn31.HeaderText = "员工姓名";
  909. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  910. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  911. this.dataGridViewTextBoxColumn31.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  912. this.dataGridViewTextBoxColumn31.Width = 80;
  913. //
  914. // dataGridViewTextBoxColumn32
  915. //
  916. this.dataGridViewTextBoxColumn32.DataPropertyName = "StaffOrganizationName";
  917. this.dataGridViewTextBoxColumn32.HeaderText = "所属组织";
  918. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  919. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  920. this.dataGridViewTextBoxColumn32.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  921. this.dataGridViewTextBoxColumn32.Width = 150;
  922. //
  923. // dataGridViewTextBoxColumn33
  924. //
  925. this.dataGridViewTextBoxColumn33.DataPropertyName = "StaffOrganizationFullName";
  926. this.dataGridViewTextBoxColumn33.HeaderText = "组织全称";
  927. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  928. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  929. //
  930. // dataGridViewCheckBoxColumn10
  931. //
  932. this.dataGridViewCheckBoxColumn10.DataPropertyName = "ValueFlag";
  933. this.dataGridViewCheckBoxColumn10.HeaderText = "有效";
  934. this.dataGridViewCheckBoxColumn10.Name = "dataGridViewCheckBoxColumn10";
  935. this.dataGridViewCheckBoxColumn10.ReadOnly = true;
  936. //
  937. // dataGridViewCheckBoxColumn11
  938. //
  939. this.dataGridViewCheckBoxColumn11.DataPropertyName = "RightFlag";
  940. this.dataGridViewCheckBoxColumn11.HeaderText = "选择";
  941. this.dataGridViewCheckBoxColumn11.Name = "dataGridViewCheckBoxColumn11";
  942. this.dataGridViewCheckBoxColumn11.Width = 60;
  943. //
  944. // dataGridViewTextBoxColumn34
  945. //
  946. this.dataGridViewTextBoxColumn34.DataPropertyName = "ObjectTypeID";
  947. this.dataGridViewTextBoxColumn34.HeaderText = "账务对象ID";
  948. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  949. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  950. this.dataGridViewTextBoxColumn34.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  951. this.dataGridViewTextBoxColumn34.Visible = false;
  952. //
  953. // dataGridViewTextBoxColumn35
  954. //
  955. this.dataGridViewTextBoxColumn35.DataPropertyName = "ObjectTypeName";
  956. this.dataGridViewTextBoxColumn35.HeaderText = "账务对象名称";
  957. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  958. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  959. this.dataGridViewTextBoxColumn35.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
  960. this.dataGridViewTextBoxColumn35.Width = 200;
  961. //
  962. // btnSave
  963. //
  964. this.btnSave.BackColor = System.Drawing.Color.Transparent;
  965. this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
  966. this.btnSave.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  967. this.btnSave.ForeColor = System.Drawing.Color.White;
  968. this.btnSave.Location = new System.Drawing.Point(833, 475);
  969. this.btnSave.Name = "btnSave";
  970. this.btnSave.Size = new System.Drawing.Size(85, 30);
  971. this.btnSave.TabIndex = 3;
  972. this.btnSave.Text = "保存";
  973. this.btnSave.UseVisualStyleBackColor = false;
  974. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  975. //
  976. // btnCancel
  977. //
  978. this.btnCancel.BackColor = System.Drawing.Color.Transparent;
  979. this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
  980. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  981. this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  982. this.btnCancel.ForeColor = System.Drawing.Color.White;
  983. this.btnCancel.Location = new System.Drawing.Point(924, 475);
  984. this.btnCancel.Name = "btnCancel";
  985. this.btnCancel.Size = new System.Drawing.Size(85, 30);
  986. this.btnCancel.TabIndex = 3;
  987. this.btnCancel.Text = "关闭";
  988. this.btnCancel.UseVisualStyleBackColor = false;
  989. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  990. //
  991. // tpgGroutingProductionLine
  992. //
  993. this.tpgGroutingProductionLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  994. this.tpgGroutingProductionLine.Controls.Add(this.tvwGroutinProductionLineCK);
  995. this.tpgGroutingProductionLine.Location = new System.Drawing.Point(4, 50);
  996. this.tpgGroutingProductionLine.Name = "tpgGroutingProductionLine";
  997. this.tpgGroutingProductionLine.Padding = new System.Windows.Forms.Padding(3);
  998. this.tpgGroutingProductionLine.Size = new System.Drawing.Size(633, 409);
  999. this.tpgGroutingProductionLine.TabIndex = 15;
  1000. this.tpgGroutingProductionLine.Text = "操作工序范围";
  1001. this.tpgGroutingProductionLine.UseVisualStyleBackColor = true;
  1002. //
  1003. // tvwGroutinProductionLineCK
  1004. //
  1005. this.tvwGroutinProductionLineCK.BackColor = System.Drawing.SystemColors.Window;
  1006. this.tvwGroutinProductionLineCK.Indent = 20;
  1007. this.tvwGroutinProductionLineCK.ItemHeight = 20;
  1008. this.tvwGroutinProductionLineCK.LineColor = System.Drawing.Color.Red;
  1009. this.tvwGroutinProductionLineCK.Location = new System.Drawing.Point(14, 6);
  1010. this.tvwGroutinProductionLineCK.Name = "tvwGroutinProductionLineCK";
  1011. this.tvwGroutinProductionLineCK.Size = new System.Drawing.Size(619, 397);
  1012. this.tvwGroutinProductionLineCK.TabIndex = 28;
  1013. this.tvwGroutinProductionLineCK.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterCheck);
  1014. this.tvwGroutinProductionLineCK.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLineCK_AfterSelect);
  1015. //
  1016. // tpgViewGroutingProductionLine
  1017. //
  1018. this.tpgViewGroutingProductionLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1019. this.tpgViewGroutingProductionLine.Controls.Add(this.tvwGroutinProductionLine);
  1020. this.tpgViewGroutingProductionLine.Location = new System.Drawing.Point(4, 50);
  1021. this.tpgViewGroutingProductionLine.Name = "tpgViewGroutingProductionLine";
  1022. this.tpgViewGroutingProductionLine.Size = new System.Drawing.Size(633, 409);
  1023. this.tpgViewGroutingProductionLine.TabIndex = 14;
  1024. this.tpgViewGroutingProductionLine.Text = "查看工序范围";
  1025. this.tpgViewGroutingProductionLine.UseVisualStyleBackColor = true;
  1026. //
  1027. // tvwGroutinProductionLine
  1028. //
  1029. this.tvwGroutinProductionLine.BackColor = System.Drawing.SystemColors.Window;
  1030. this.tvwGroutinProductionLine.Indent = 20;
  1031. this.tvwGroutinProductionLine.ItemHeight = 20;
  1032. this.tvwGroutinProductionLine.LineColor = System.Drawing.Color.Red;
  1033. this.tvwGroutinProductionLine.Location = new System.Drawing.Point(8, 5);
  1034. this.tvwGroutinProductionLine.Name = "tvwGroutinProductionLine";
  1035. this.tvwGroutinProductionLine.Size = new System.Drawing.Size(619, 401);
  1036. this.tvwGroutinProductionLine.TabIndex = 16;
  1037. this.tvwGroutinProductionLine.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLine_AfterCheck);
  1038. this.tvwGroutinProductionLine.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwGroutinProductionLine_AfterSelect);
  1039. //
  1040. // tpgGroutingLine
  1041. //
  1042. this.tpgGroutingLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1043. this.tpgGroutingLine.Controls.Add(this.dgvGroutingLine);
  1044. this.tpgGroutingLine.Location = new System.Drawing.Point(4, 50);
  1045. this.tpgGroutingLine.Name = "tpgGroutingLine";
  1046. this.tpgGroutingLine.Size = new System.Drawing.Size(633, 409);
  1047. this.tpgGroutingLine.TabIndex = 12;
  1048. this.tpgGroutingLine.Text = "操作成型线范围";
  1049. this.tpgGroutingLine.UseVisualStyleBackColor = true;
  1050. //
  1051. // dgvGroutingLine
  1052. //
  1053. this.dgvGroutingLine.AllowUserToAddRows = false;
  1054. this.dgvGroutingLine.AllowUserToDeleteRows = false;
  1055. this.dgvGroutingLine.AllowUserToModifyRows = true;
  1056. this.dgvGroutingLine.AllowUserToOrderColumns = true;
  1057. this.dgvGroutingLine.AllowUserToResizeRows = false;
  1058. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1059. this.dgvGroutingLine.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1060. this.dgvGroutingLine.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1061. | System.Windows.Forms.AnchorStyles.Left)
  1062. | System.Windows.Forms.AnchorStyles.Right)));
  1063. this.dgvGroutingLine.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1064. this.dgvGroutingLine.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1065. this.dgvGroutingLine.CellHeight = 23;
  1066. this.dgvGroutingLine.ChildNodeColumnName = null;
  1067. this.dgvGroutingLine.ChildNodeColumnText = null;
  1068. this.dgvGroutingLine.ColumnDeep = 1;
  1069. this.dgvGroutingLine.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1070. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1071. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1072. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1073. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1074. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1075. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1076. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1077. this.dgvGroutingLine.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1078. this.dgvGroutingLine.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1079. this.dgvGroutingLine.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1080. this.dgGroutingLineRightFlag,
  1081. this.dgGroutingLineCode,
  1082. this.dgGroutingLineName,
  1083. this.dgGroutingLineValueFlag,
  1084. this.dgGroutingLineID});
  1085. this.dgvGroutingLine.ColumnTreeView = null;
  1086. 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)));
  1087. this.dgvGroutingLine.DynamicColumnName = "";
  1088. this.dgvGroutingLine.EnableHeadersVisualStyles = false;
  1089. this.dgvGroutingLine.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1090. this.dgvGroutingLine.FormatQuantityColumns = null;
  1091. this.dgvGroutingLine.HorizontalMergeColumn = null;
  1092. this.dgvGroutingLine.IsAutoCountSum = true;
  1093. this.dgvGroutingLine.IsAutoResizeColumns = false;
  1094. this.dgvGroutingLine.IsClickF12 = false;
  1095. this.dgvGroutingLine.IsOpenMergeCellFlag = false;
  1096. this.dgvGroutingLine.IsSubTotalFlag = false;
  1097. this.dgvGroutingLine.IsTopDeep = false;
  1098. this.dgvGroutingLine.Location = new System.Drawing.Point(8, 5);
  1099. this.dgvGroutingLine.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1100. this.dgvGroutingLine.MergeColumnNames = null;
  1101. this.dgvGroutingLine.MergeDetailColumnNames = null;
  1102. this.dgvGroutingLine.MergeDetailOnlyColumn = null;
  1103. this.dgvGroutingLine.MergeOnlyColumn = null;
  1104. this.dgvGroutingLine.MultiSelect = false;
  1105. this.dgvGroutingLine.Name = "dgvGroutingLine";
  1106. this.dgvGroutingLine.RefreshAtHscroll = false;
  1107. this.dgvGroutingLine.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1108. this.dgvGroutingLine.RowHeadersWidth = 50;
  1109. this.dgvGroutingLine.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1110. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1111. this.dgvGroutingLine.RowsDefaultCellStyle = dataGridViewCellStyle6;
  1112. this.dgvGroutingLine.RowTemplate.Height = 21;
  1113. this.dgvGroutingLine.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1114. this.dgvGroutingLine.Size = new System.Drawing.Size(619, 402);
  1115. this.dgvGroutingLine.SortOrderColumnName = null;
  1116. this.dgvGroutingLine.TabIndex = 24;
  1117. this.dgvGroutingLine.Tag = true;
  1118. this.dgvGroutingLine.TotalSumColumns = null;
  1119. this.dgvGroutingLine.ViewRowFilter = "";
  1120. this.dgvGroutingLine.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvGroutingLine_CellValueChanged);
  1121. this.dgvGroutingLine.SelectionChanged += new System.EventHandler(this.dgvGroutingLine_SelectionChanged);
  1122. //
  1123. // dgGroutingLineRightFlag
  1124. //
  1125. this.dgGroutingLineRightFlag.DataPropertyName = "RightFlag";
  1126. this.dgGroutingLineRightFlag.FalseValue = "0";
  1127. this.dgGroutingLineRightFlag.HeaderText = "选择";
  1128. this.dgGroutingLineRightFlag.Name = "dgGroutingLineRightFlag";
  1129. this.dgGroutingLineRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1130. this.dgGroutingLineRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1131. this.dgGroutingLineRightFlag.TrueValue = "1";
  1132. this.dgGroutingLineRightFlag.Visible = false;
  1133. //
  1134. // dgGroutingLineCode
  1135. //
  1136. this.dgGroutingLineCode.DataPropertyName = "GroutingLineCode";
  1137. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1138. dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
  1139. this.dgGroutingLineCode.DefaultCellStyle = dataGridViewCellStyle3;
  1140. this.dgGroutingLineCode.HeaderText = "成型生产线编码";
  1141. this.dgGroutingLineCode.MaxInputLength = 20;
  1142. this.dgGroutingLineCode.Name = "dgGroutingLineCode";
  1143. this.dgGroutingLineCode.ReadOnly = true;
  1144. this.dgGroutingLineCode.Width = 120;
  1145. //
  1146. // dgGroutingLineName
  1147. //
  1148. this.dgGroutingLineName.DataPropertyName = "GroutingLineName";
  1149. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1150. dataGridViewCellStyle4.BackColor = System.Drawing.Color.White;
  1151. this.dgGroutingLineName.DefaultCellStyle = dataGridViewCellStyle4;
  1152. this.dgGroutingLineName.HeaderText = "成型生产线名称";
  1153. this.dgGroutingLineName.MaxInputLength = 20;
  1154. this.dgGroutingLineName.Name = "dgGroutingLineName";
  1155. this.dgGroutingLineName.ReadOnly = true;
  1156. this.dgGroutingLineName.Width = 120;
  1157. //
  1158. // dgGroutingLineValueFlag
  1159. //
  1160. this.dgGroutingLineValueFlag.DataPropertyName = "ValueFlag";
  1161. this.dgGroutingLineValueFlag.FalseValue = "0";
  1162. this.dgGroutingLineValueFlag.HeaderText = "有效标识";
  1163. this.dgGroutingLineValueFlag.Name = "dgGroutingLineValueFlag";
  1164. this.dgGroutingLineValueFlag.ReadOnly = true;
  1165. this.dgGroutingLineValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1166. this.dgGroutingLineValueFlag.TrueValue = "1";
  1167. //
  1168. // dgGroutingLineID
  1169. //
  1170. this.dgGroutingLineID.DataPropertyName = "Purviewid";
  1171. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1172. dataGridViewCellStyle5.BackColor = System.Drawing.Color.White;
  1173. this.dgGroutingLineID.DefaultCellStyle = dataGridViewCellStyle5;
  1174. this.dgGroutingLineID.HeaderText = "成型生产线ID";
  1175. this.dgGroutingLineID.MaxInputLength = 4;
  1176. this.dgGroutingLineID.Name = "dgGroutingLineID";
  1177. this.dgGroutingLineID.Visible = false;
  1178. //
  1179. // tpgViewGroutingLine
  1180. //
  1181. this.tpgViewGroutingLine.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1182. this.tpgViewGroutingLine.Controls.Add(this.dgvViewGroutingLine);
  1183. this.tpgViewGroutingLine.Location = new System.Drawing.Point(4, 50);
  1184. this.tpgViewGroutingLine.Name = "tpgViewGroutingLine";
  1185. this.tpgViewGroutingLine.Size = new System.Drawing.Size(633, 409);
  1186. this.tpgViewGroutingLine.TabIndex = 11;
  1187. this.tpgViewGroutingLine.Text = "查看成型线范围";
  1188. this.tpgViewGroutingLine.UseVisualStyleBackColor = true;
  1189. //
  1190. // dgvViewGroutingLine
  1191. //
  1192. this.dgvViewGroutingLine.AllowUserToAddRows = false;
  1193. this.dgvViewGroutingLine.AllowUserToDeleteRows = false;
  1194. this.dgvViewGroutingLine.AllowUserToModifyRows = true;
  1195. this.dgvViewGroutingLine.AllowUserToOrderColumns = true;
  1196. this.dgvViewGroutingLine.AllowUserToResizeRows = false;
  1197. dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1198. this.dgvViewGroutingLine.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle7;
  1199. this.dgvViewGroutingLine.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1200. | System.Windows.Forms.AnchorStyles.Left)
  1201. | System.Windows.Forms.AnchorStyles.Right)));
  1202. this.dgvViewGroutingLine.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1203. this.dgvViewGroutingLine.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1204. this.dgvViewGroutingLine.CellHeight = 23;
  1205. this.dgvViewGroutingLine.ChildNodeColumnName = null;
  1206. this.dgvViewGroutingLine.ChildNodeColumnText = null;
  1207. this.dgvViewGroutingLine.ColumnDeep = 1;
  1208. this.dgvViewGroutingLine.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1209. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1210. dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1211. dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1212. dataGridViewCellStyle8.ForeColor = System.Drawing.Color.White;
  1213. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1214. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1215. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1216. this.dgvViewGroutingLine.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
  1217. this.dgvViewGroutingLine.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1218. this.dgvViewGroutingLine.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1219. this.dgViewGroutingLineRightFlag,
  1220. this.dgViewGroutingLineCode,
  1221. this.dgViewGrNoutingLineName,
  1222. this.dgViewGroutingLineValueFlag,
  1223. this.dgViewGroutingLineID});
  1224. this.dgvViewGroutingLine.ColumnTreeView = null;
  1225. 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)));
  1226. this.dgvViewGroutingLine.DynamicColumnName = "";
  1227. this.dgvViewGroutingLine.EnableHeadersVisualStyles = false;
  1228. this.dgvViewGroutingLine.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1229. this.dgvViewGroutingLine.FormatQuantityColumns = null;
  1230. this.dgvViewGroutingLine.HorizontalMergeColumn = null;
  1231. this.dgvViewGroutingLine.IsAutoCountSum = true;
  1232. this.dgvViewGroutingLine.IsAutoResizeColumns = false;
  1233. this.dgvViewGroutingLine.IsClickF12 = false;
  1234. this.dgvViewGroutingLine.IsOpenMergeCellFlag = false;
  1235. this.dgvViewGroutingLine.IsSubTotalFlag = false;
  1236. this.dgvViewGroutingLine.IsTopDeep = false;
  1237. this.dgvViewGroutingLine.Location = new System.Drawing.Point(8, 5);
  1238. this.dgvViewGroutingLine.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1239. this.dgvViewGroutingLine.MergeColumnNames = null;
  1240. this.dgvViewGroutingLine.MergeDetailColumnNames = null;
  1241. this.dgvViewGroutingLine.MergeDetailOnlyColumn = null;
  1242. this.dgvViewGroutingLine.MergeOnlyColumn = null;
  1243. this.dgvViewGroutingLine.MultiSelect = false;
  1244. this.dgvViewGroutingLine.Name = "dgvViewGroutingLine";
  1245. this.dgvViewGroutingLine.RefreshAtHscroll = false;
  1246. this.dgvViewGroutingLine.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1247. this.dgvViewGroutingLine.RowHeadersWidth = 50;
  1248. this.dgvViewGroutingLine.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1249. dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1250. this.dgvViewGroutingLine.RowsDefaultCellStyle = dataGridViewCellStyle12;
  1251. this.dgvViewGroutingLine.RowTemplate.Height = 21;
  1252. this.dgvViewGroutingLine.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1253. this.dgvViewGroutingLine.Size = new System.Drawing.Size(619, 402);
  1254. this.dgvViewGroutingLine.SortOrderColumnName = null;
  1255. this.dgvViewGroutingLine.TabIndex = 23;
  1256. this.dgvViewGroutingLine.Tag = true;
  1257. this.dgvViewGroutingLine.TotalSumColumns = null;
  1258. this.dgvViewGroutingLine.ViewRowFilter = "";
  1259. this.dgvViewGroutingLine.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvViewGroutingLine_CellValueChanged);
  1260. this.dgvViewGroutingLine.SelectionChanged += new System.EventHandler(this.dgvViewGroutingLine_SelectionChanged);
  1261. //
  1262. // dgViewGroutingLineRightFlag
  1263. //
  1264. this.dgViewGroutingLineRightFlag.DataPropertyName = "RightFlag";
  1265. this.dgViewGroutingLineRightFlag.FalseValue = "0";
  1266. this.dgViewGroutingLineRightFlag.HeaderText = "选择";
  1267. this.dgViewGroutingLineRightFlag.Name = "dgViewGroutingLineRightFlag";
  1268. this.dgViewGroutingLineRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1269. this.dgViewGroutingLineRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1270. this.dgViewGroutingLineRightFlag.TrueValue = "1";
  1271. this.dgViewGroutingLineRightFlag.Visible = false;
  1272. //
  1273. // dgViewGroutingLineCode
  1274. //
  1275. this.dgViewGroutingLineCode.DataPropertyName = "GroutingLineCode";
  1276. dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1277. dataGridViewCellStyle9.BackColor = System.Drawing.Color.White;
  1278. this.dgViewGroutingLineCode.DefaultCellStyle = dataGridViewCellStyle9;
  1279. this.dgViewGroutingLineCode.HeaderText = "成型生产线编码";
  1280. this.dgViewGroutingLineCode.MaxInputLength = 20;
  1281. this.dgViewGroutingLineCode.Name = "dgViewGroutingLineCode";
  1282. this.dgViewGroutingLineCode.ReadOnly = true;
  1283. this.dgViewGroutingLineCode.Width = 120;
  1284. //
  1285. // dgViewGrNoutingLineName
  1286. //
  1287. this.dgViewGrNoutingLineName.DataPropertyName = "GroutingLineName";
  1288. dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1289. dataGridViewCellStyle10.BackColor = System.Drawing.Color.White;
  1290. this.dgViewGrNoutingLineName.DefaultCellStyle = dataGridViewCellStyle10;
  1291. this.dgViewGrNoutingLineName.HeaderText = "成型生产线名称";
  1292. this.dgViewGrNoutingLineName.MaxInputLength = 20;
  1293. this.dgViewGrNoutingLineName.Name = "dgViewGrNoutingLineName";
  1294. this.dgViewGrNoutingLineName.ReadOnly = true;
  1295. this.dgViewGrNoutingLineName.Width = 120;
  1296. //
  1297. // dgViewGroutingLineValueFlag
  1298. //
  1299. this.dgViewGroutingLineValueFlag.DataPropertyName = "ValueFlag";
  1300. this.dgViewGroutingLineValueFlag.FalseValue = "0";
  1301. this.dgViewGroutingLineValueFlag.HeaderText = "有效标识";
  1302. this.dgViewGroutingLineValueFlag.Name = "dgViewGroutingLineValueFlag";
  1303. this.dgViewGroutingLineValueFlag.ReadOnly = true;
  1304. this.dgViewGroutingLineValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1305. this.dgViewGroutingLineValueFlag.TrueValue = "1";
  1306. //
  1307. // dgViewGroutingLineID
  1308. //
  1309. this.dgViewGroutingLineID.DataPropertyName = "Purviewid";
  1310. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1311. dataGridViewCellStyle11.BackColor = System.Drawing.Color.White;
  1312. this.dgViewGroutingLineID.DefaultCellStyle = dataGridViewCellStyle11;
  1313. this.dgViewGroutingLineID.HeaderText = "成型生产线ID";
  1314. this.dgViewGroutingLineID.MaxInputLength = 4;
  1315. this.dgViewGroutingLineID.Name = "dgViewGroutingLineID";
  1316. this.dgViewGroutingLineID.Visible = false;
  1317. //
  1318. // tpgViewUser
  1319. //
  1320. this.tpgViewUser.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1321. this.tpgViewUser.Controls.Add(this.dgvViewUser);
  1322. this.tpgViewUser.Location = new System.Drawing.Point(4, 50);
  1323. this.tpgViewUser.Name = "tpgViewUser";
  1324. this.tpgViewUser.Size = new System.Drawing.Size(633, 409);
  1325. this.tpgViewUser.TabIndex = 9;
  1326. this.tpgViewUser.Text = "查看工号范围";
  1327. this.tpgViewUser.UseVisualStyleBackColor = true;
  1328. //
  1329. // dgvViewUser
  1330. //
  1331. this.dgvViewUser.AllowUserToAddRows = false;
  1332. this.dgvViewUser.AllowUserToDeleteRows = false;
  1333. this.dgvViewUser.AllowUserToModifyRows = true;
  1334. this.dgvViewUser.AllowUserToOrderColumns = true;
  1335. this.dgvViewUser.AllowUserToResizeRows = false;
  1336. dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1337. this.dgvViewUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
  1338. this.dgvViewUser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1339. | System.Windows.Forms.AnchorStyles.Left)
  1340. | System.Windows.Forms.AnchorStyles.Right)));
  1341. this.dgvViewUser.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1342. this.dgvViewUser.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1343. this.dgvViewUser.CellHeight = 23;
  1344. this.dgvViewUser.ChildNodeColumnName = null;
  1345. this.dgvViewUser.ChildNodeColumnText = null;
  1346. this.dgvViewUser.ColumnDeep = 1;
  1347. this.dgvViewUser.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1348. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1349. dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1350. dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1351. dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
  1352. dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1353. dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1354. dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1355. this.dgvViewUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
  1356. this.dgvViewUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1357. this.dgvViewUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1358. this.RightFlag,
  1359. this.dataGridViewTextBoxColumn36,
  1360. this.dataGridViewTextBoxColumn37,
  1361. this.dataGridViewTextBoxColumn38,
  1362. this.dataGridViewTextBoxColumn39,
  1363. this.ValueFlagText,
  1364. this.dgvViewUserID});
  1365. this.dgvViewUser.ColumnTreeView = null;
  1366. 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)));
  1367. this.dgvViewUser.DynamicColumnName = "";
  1368. this.dgvViewUser.EnableHeadersVisualStyles = false;
  1369. this.dgvViewUser.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1370. this.dgvViewUser.FormatQuantityColumns = null;
  1371. this.dgvViewUser.HorizontalMergeColumn = null;
  1372. this.dgvViewUser.IsAutoCountSum = true;
  1373. this.dgvViewUser.IsAutoResizeColumns = false;
  1374. this.dgvViewUser.IsClickF12 = false;
  1375. this.dgvViewUser.IsOpenMergeCellFlag = false;
  1376. this.dgvViewUser.IsSubTotalFlag = false;
  1377. this.dgvViewUser.IsTopDeep = false;
  1378. this.dgvViewUser.Location = new System.Drawing.Point(8, 5);
  1379. this.dgvViewUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1380. this.dgvViewUser.MergeColumnNames = null;
  1381. this.dgvViewUser.MergeDetailColumnNames = null;
  1382. this.dgvViewUser.MergeDetailOnlyColumn = null;
  1383. this.dgvViewUser.MergeOnlyColumn = null;
  1384. this.dgvViewUser.MultiSelect = false;
  1385. this.dgvViewUser.Name = "dgvViewUser";
  1386. this.dgvViewUser.RefreshAtHscroll = false;
  1387. this.dgvViewUser.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1388. this.dgvViewUser.RowHeadersWidth = 50;
  1389. this.dgvViewUser.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1390. dataGridViewCellStyle19.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1391. this.dgvViewUser.RowsDefaultCellStyle = dataGridViewCellStyle19;
  1392. this.dgvViewUser.RowTemplate.Height = 21;
  1393. this.dgvViewUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1394. this.dgvViewUser.Size = new System.Drawing.Size(619, 402);
  1395. this.dgvViewUser.SortOrderColumnName = null;
  1396. this.dgvViewUser.TabIndex = 22;
  1397. this.dgvViewUser.Tag = true;
  1398. this.dgvViewUser.TotalSumColumns = null;
  1399. this.dgvViewUser.ViewRowFilter = "";
  1400. this.dgvViewUser.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUser_CellValueChanged);
  1401. this.dgvViewUser.SelectionChanged += new System.EventHandler(this.dgvViewUser_SelectionChanged);
  1402. //
  1403. // RightFlag
  1404. //
  1405. this.RightFlag.DataPropertyName = "RightFlag";
  1406. this.RightFlag.FalseValue = "0";
  1407. this.RightFlag.HeaderText = "选择";
  1408. this.RightFlag.Name = "RightFlag";
  1409. this.RightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1410. this.RightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1411. this.RightFlag.TrueValue = "1";
  1412. this.RightFlag.Visible = false;
  1413. //
  1414. // dataGridViewTextBoxColumn36
  1415. //
  1416. this.dataGridViewTextBoxColumn36.DataPropertyName = "UserCode";
  1417. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1418. dataGridViewCellStyle15.BackColor = System.Drawing.Color.White;
  1419. this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle15;
  1420. this.dataGridViewTextBoxColumn36.HeaderText = "用户代码";
  1421. this.dataGridViewTextBoxColumn36.MaxInputLength = 20;
  1422. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1423. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1424. this.dataGridViewTextBoxColumn36.Width = 80;
  1425. //
  1426. // dataGridViewTextBoxColumn37
  1427. //
  1428. this.dataGridViewTextBoxColumn37.DataPropertyName = "UserName";
  1429. dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1430. dataGridViewCellStyle16.BackColor = System.Drawing.Color.White;
  1431. this.dataGridViewTextBoxColumn37.DefaultCellStyle = dataGridViewCellStyle16;
  1432. this.dataGridViewTextBoxColumn37.HeaderText = "操作员";
  1433. this.dataGridViewTextBoxColumn37.MaxInputLength = 20;
  1434. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1435. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  1436. this.dataGridViewTextBoxColumn37.Width = 80;
  1437. //
  1438. // dataGridViewTextBoxColumn38
  1439. //
  1440. this.dataGridViewTextBoxColumn38.DataPropertyName = "OrganizationName";
  1441. dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1442. dataGridViewCellStyle17.BackColor = System.Drawing.Color.White;
  1443. this.dataGridViewTextBoxColumn38.DefaultCellStyle = dataGridViewCellStyle17;
  1444. this.dataGridViewTextBoxColumn38.HeaderText = "组织机构";
  1445. this.dataGridViewTextBoxColumn38.MaxInputLength = 20;
  1446. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1447. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  1448. this.dataGridViewTextBoxColumn38.Width = 80;
  1449. //
  1450. // dataGridViewTextBoxColumn39
  1451. //
  1452. this.dataGridViewTextBoxColumn39.DataPropertyName = "OrganizationFullName";
  1453. this.dataGridViewTextBoxColumn39.HeaderText = "组织全称";
  1454. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1455. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  1456. //
  1457. // ValueFlagText
  1458. //
  1459. this.ValueFlagText.DataPropertyName = "ValueFlag";
  1460. this.ValueFlagText.HeaderText = "有效标识";
  1461. this.ValueFlagText.Name = "ValueFlagText";
  1462. this.ValueFlagText.ReadOnly = true;
  1463. this.ValueFlagText.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1464. this.ValueFlagText.TrueValue = "1";
  1465. //
  1466. // dgvViewUserID
  1467. //
  1468. this.dgvViewUserID.DataPropertyName = "Purviewid";
  1469. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1470. dataGridViewCellStyle18.BackColor = System.Drawing.Color.White;
  1471. this.dgvViewUserID.DefaultCellStyle = dataGridViewCellStyle18;
  1472. this.dgvViewUserID.HeaderText = "用户ID";
  1473. this.dgvViewUserID.MaxInputLength = 4;
  1474. this.dgvViewUserID.Name = "dgvViewUserID";
  1475. this.dgvViewUserID.Visible = false;
  1476. //
  1477. // tpgUser
  1478. //
  1479. this.tpgUser.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1480. this.tpgUser.Controls.Add(this.dgvUser);
  1481. this.tpgUser.Location = new System.Drawing.Point(4, 50);
  1482. this.tpgUser.Name = "tpgUser";
  1483. this.tpgUser.Size = new System.Drawing.Size(633, 409);
  1484. this.tpgUser.TabIndex = 10;
  1485. this.tpgUser.Text = "操作工号范围";
  1486. this.tpgUser.UseVisualStyleBackColor = true;
  1487. //
  1488. // dgvUser
  1489. //
  1490. this.dgvUser.AllowUserToAddRows = false;
  1491. this.dgvUser.AllowUserToDeleteRows = false;
  1492. this.dgvUser.AllowUserToModifyRows = true;
  1493. this.dgvUser.AllowUserToOrderColumns = true;
  1494. this.dgvUser.AllowUserToResizeRows = false;
  1495. dataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1496. this.dgvUser.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle20;
  1497. this.dgvUser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1498. | System.Windows.Forms.AnchorStyles.Left)
  1499. | System.Windows.Forms.AnchorStyles.Right)));
  1500. this.dgvUser.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1501. this.dgvUser.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1502. this.dgvUser.CellHeight = 23;
  1503. this.dgvUser.ChildNodeColumnName = null;
  1504. this.dgvUser.ChildNodeColumnText = null;
  1505. this.dgvUser.ColumnDeep = 1;
  1506. this.dgvUser.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1507. dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1508. dataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1509. dataGridViewCellStyle21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1510. dataGridViewCellStyle21.ForeColor = System.Drawing.Color.White;
  1511. dataGridViewCellStyle21.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1512. dataGridViewCellStyle21.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1513. dataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1514. this.dgvUser.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle21;
  1515. this.dgvUser.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1516. this.dgvUser.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1517. this.dgUserRightFlag,
  1518. this.dgUserCode,
  1519. this.dgUserName,
  1520. this.dgUserOrganizationName,
  1521. this.dgUserOrganizationFullName,
  1522. this.dgUserValueFlag,
  1523. this.dgUserID});
  1524. this.dgvUser.ColumnTreeView = null;
  1525. 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)));
  1526. this.dgvUser.DynamicColumnName = "";
  1527. this.dgvUser.EnableHeadersVisualStyles = false;
  1528. this.dgvUser.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1529. this.dgvUser.FormatQuantityColumns = null;
  1530. this.dgvUser.HorizontalMergeColumn = null;
  1531. this.dgvUser.IsAutoCountSum = true;
  1532. this.dgvUser.IsAutoResizeColumns = false;
  1533. this.dgvUser.IsClickF12 = false;
  1534. this.dgvUser.IsOpenMergeCellFlag = false;
  1535. this.dgvUser.IsSubTotalFlag = false;
  1536. this.dgvUser.IsTopDeep = false;
  1537. this.dgvUser.Location = new System.Drawing.Point(8, 5);
  1538. this.dgvUser.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1539. this.dgvUser.MergeColumnNames = null;
  1540. this.dgvUser.MergeDetailColumnNames = null;
  1541. this.dgvUser.MergeDetailOnlyColumn = null;
  1542. this.dgvUser.MergeOnlyColumn = null;
  1543. this.dgvUser.MultiSelect = false;
  1544. this.dgvUser.Name = "dgvUser";
  1545. this.dgvUser.RefreshAtHscroll = false;
  1546. this.dgvUser.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1547. this.dgvUser.RowHeadersWidth = 50;
  1548. this.dgvUser.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1549. dataGridViewCellStyle26.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1550. this.dgvUser.RowsDefaultCellStyle = dataGridViewCellStyle26;
  1551. this.dgvUser.RowTemplate.Height = 21;
  1552. this.dgvUser.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1553. this.dgvUser.Size = new System.Drawing.Size(611, 402);
  1554. this.dgvUser.SortOrderColumnName = null;
  1555. this.dgvUser.TabIndex = 23;
  1556. this.dgvUser.Tag = true;
  1557. this.dgvUser.TotalSumColumns = null;
  1558. this.dgvUser.ViewRowFilter = "";
  1559. this.dgvUser.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUser_CellValueChanged_1);
  1560. this.dgvUser.SelectionChanged += new System.EventHandler(this.dgvUser_SelectionChanged);
  1561. //
  1562. // dgUserRightFlag
  1563. //
  1564. this.dgUserRightFlag.DataPropertyName = "RightFlag";
  1565. this.dgUserRightFlag.FalseValue = "0";
  1566. this.dgUserRightFlag.HeaderText = "选择";
  1567. this.dgUserRightFlag.Name = "dgUserRightFlag";
  1568. this.dgUserRightFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1569. this.dgUserRightFlag.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1570. this.dgUserRightFlag.TrueValue = "1";
  1571. this.dgUserRightFlag.Visible = false;
  1572. //
  1573. // dgUserCode
  1574. //
  1575. this.dgUserCode.DataPropertyName = "UserCode";
  1576. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1577. dataGridViewCellStyle22.BackColor = System.Drawing.Color.White;
  1578. this.dgUserCode.DefaultCellStyle = dataGridViewCellStyle22;
  1579. this.dgUserCode.HeaderText = "用户代码";
  1580. this.dgUserCode.MaxInputLength = 20;
  1581. this.dgUserCode.Name = "dgUserCode";
  1582. this.dgUserCode.ReadOnly = true;
  1583. this.dgUserCode.Width = 80;
  1584. //
  1585. // dgUserName
  1586. //
  1587. this.dgUserName.DataPropertyName = "UserName";
  1588. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1589. dataGridViewCellStyle23.BackColor = System.Drawing.Color.White;
  1590. this.dgUserName.DefaultCellStyle = dataGridViewCellStyle23;
  1591. this.dgUserName.HeaderText = "操作员";
  1592. this.dgUserName.MaxInputLength = 20;
  1593. this.dgUserName.Name = "dgUserName";
  1594. this.dgUserName.ReadOnly = true;
  1595. this.dgUserName.Width = 80;
  1596. //
  1597. // dgUserOrganizationName
  1598. //
  1599. this.dgUserOrganizationName.DataPropertyName = "OrganizationName";
  1600. dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1601. dataGridViewCellStyle24.BackColor = System.Drawing.Color.White;
  1602. this.dgUserOrganizationName.DefaultCellStyle = dataGridViewCellStyle24;
  1603. this.dgUserOrganizationName.HeaderText = "组织机构";
  1604. this.dgUserOrganizationName.MaxInputLength = 20;
  1605. this.dgUserOrganizationName.Name = "dgUserOrganizationName";
  1606. this.dgUserOrganizationName.ReadOnly = true;
  1607. this.dgUserOrganizationName.Width = 80;
  1608. //
  1609. // dgUserOrganizationFullName
  1610. //
  1611. this.dgUserOrganizationFullName.DataPropertyName = "OrganizationFullName";
  1612. this.dgUserOrganizationFullName.HeaderText = "组织全称";
  1613. this.dgUserOrganizationFullName.Name = "dgUserOrganizationFullName";
  1614. this.dgUserOrganizationFullName.ReadOnly = true;
  1615. //
  1616. // dgUserValueFlag
  1617. //
  1618. this.dgUserValueFlag.DataPropertyName = "ValueFlag";
  1619. this.dgUserValueFlag.HeaderText = "有效标识";
  1620. this.dgUserValueFlag.Name = "dgUserValueFlag";
  1621. this.dgUserValueFlag.ReadOnly = true;
  1622. this.dgUserValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1623. this.dgUserValueFlag.TrueValue = "1";
  1624. //
  1625. // dgUserID
  1626. //
  1627. this.dgUserID.DataPropertyName = "Purviewid";
  1628. dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1629. dataGridViewCellStyle25.BackColor = System.Drawing.Color.White;
  1630. this.dgUserID.DefaultCellStyle = dataGridViewCellStyle25;
  1631. this.dgUserID.HeaderText = "用户ID";
  1632. this.dgUserID.MaxInputLength = 4;
  1633. this.dgUserID.Name = "dgUserID";
  1634. //
  1635. // tpgViewOrganization
  1636. //
  1637. this.tpgViewOrganization.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1638. this.tpgViewOrganization.Controls.Add(this.btnViewOrganizationExpandAll);
  1639. this.tpgViewOrganization.Controls.Add(this.btnViewOrganizationCollapseAll);
  1640. this.tpgViewOrganization.Controls.Add(this.tvwViewOrganization);
  1641. this.tpgViewOrganization.Location = new System.Drawing.Point(4, 50);
  1642. this.tpgViewOrganization.Name = "tpgViewOrganization";
  1643. this.tpgViewOrganization.Padding = new System.Windows.Forms.Padding(3);
  1644. this.tpgViewOrganization.Size = new System.Drawing.Size(633, 409);
  1645. this.tpgViewOrganization.TabIndex = 8;
  1646. this.tpgViewOrganization.Text = "查看部门范围";
  1647. this.tpgViewOrganization.UseVisualStyleBackColor = true;
  1648. //
  1649. // btnViewOrganizationExpandAll
  1650. //
  1651. this.btnViewOrganizationExpandAll.Location = new System.Drawing.Point(553, 495);
  1652. this.btnViewOrganizationExpandAll.Name = "btnViewOrganizationExpandAll";
  1653. this.btnViewOrganizationExpandAll.Size = new System.Drawing.Size(23, 23);
  1654. this.btnViewOrganizationExpandAll.TabIndex = 15;
  1655. this.btnViewOrganizationExpandAll.Text = "+";
  1656. this.btnViewOrganizationExpandAll.UseVisualStyleBackColor = true;
  1657. //
  1658. // btnViewOrganizationCollapseAll
  1659. //
  1660. this.btnViewOrganizationCollapseAll.Location = new System.Drawing.Point(582, 495);
  1661. this.btnViewOrganizationCollapseAll.Name = "btnViewOrganizationCollapseAll";
  1662. this.btnViewOrganizationCollapseAll.Size = new System.Drawing.Size(23, 23);
  1663. this.btnViewOrganizationCollapseAll.TabIndex = 16;
  1664. this.btnViewOrganizationCollapseAll.Text = "-";
  1665. this.btnViewOrganizationCollapseAll.UseVisualStyleBackColor = true;
  1666. //
  1667. // tvwViewOrganization
  1668. //
  1669. this.tvwViewOrganization.BackColor = System.Drawing.SystemColors.Window;
  1670. this.tvwViewOrganization.Indent = 20;
  1671. this.tvwViewOrganization.ItemHeight = 20;
  1672. this.tvwViewOrganization.LineColor = System.Drawing.Color.Red;
  1673. this.tvwViewOrganization.Location = new System.Drawing.Point(8, 5);
  1674. this.tvwViewOrganization.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1675. this.tvwViewOrganization.Name = "tvwViewOrganization";
  1676. this.tvwViewOrganization.Size = new System.Drawing.Size(619, 399);
  1677. this.tvwViewOrganization.TabIndex = 12;
  1678. this.tvwViewOrganization.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwViewOrganization_AfterCheck);
  1679. this.tvwViewOrganization.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwViewOrganization_AfterSelect);
  1680. //
  1681. // tpgOperationOrganization
  1682. //
  1683. this.tpgOperationOrganization.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1684. this.tpgOperationOrganization.Controls.Add(this.tvwOrganization);
  1685. this.tpgOperationOrganization.Controls.Add(this.btnOrganizationExpandAll);
  1686. this.tpgOperationOrganization.Controls.Add(this.btnOrganizationCollapseAll);
  1687. this.tpgOperationOrganization.Location = new System.Drawing.Point(4, 50);
  1688. this.tpgOperationOrganization.Name = "tpgOperationOrganization";
  1689. this.tpgOperationOrganization.Padding = new System.Windows.Forms.Padding(3);
  1690. this.tpgOperationOrganization.Size = new System.Drawing.Size(633, 409);
  1691. this.tpgOperationOrganization.TabIndex = 4;
  1692. this.tpgOperationOrganization.Text = "操作部门范围";
  1693. this.tpgOperationOrganization.UseVisualStyleBackColor = true;
  1694. //
  1695. // tvwOrganization
  1696. //
  1697. this.tvwOrganization.BackColor = System.Drawing.SystemColors.Window;
  1698. this.tvwOrganization.Indent = 20;
  1699. this.tvwOrganization.ItemHeight = 20;
  1700. this.tvwOrganization.LineColor = System.Drawing.Color.Red;
  1701. this.tvwOrganization.Location = new System.Drawing.Point(8, 5);
  1702. this.tvwOrganization.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1703. this.tvwOrganization.Name = "tvwOrganization";
  1704. this.tvwOrganization.Size = new System.Drawing.Size(619, 399);
  1705. this.tvwOrganization.TabIndex = 15;
  1706. this.tvwOrganization.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterCheck);
  1707. this.tvwOrganization.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvwOrganization_AfterSelect);
  1708. //
  1709. // btnOrganizationExpandAll
  1710. //
  1711. this.btnOrganizationExpandAll.Location = new System.Drawing.Point(553, 495);
  1712. this.btnOrganizationExpandAll.Name = "btnOrganizationExpandAll";
  1713. this.btnOrganizationExpandAll.Size = new System.Drawing.Size(23, 23);
  1714. this.btnOrganizationExpandAll.TabIndex = 13;
  1715. this.btnOrganizationExpandAll.Text = "+";
  1716. this.btnOrganizationExpandAll.UseVisualStyleBackColor = true;
  1717. //
  1718. // btnOrganizationCollapseAll
  1719. //
  1720. this.btnOrganizationCollapseAll.Location = new System.Drawing.Point(582, 495);
  1721. this.btnOrganizationCollapseAll.Name = "btnOrganizationCollapseAll";
  1722. this.btnOrganizationCollapseAll.Size = new System.Drawing.Size(23, 23);
  1723. this.btnOrganizationCollapseAll.TabIndex = 14;
  1724. this.btnOrganizationCollapseAll.Text = "-";
  1725. this.btnOrganizationCollapseAll.UseVisualStyleBackColor = true;
  1726. //
  1727. // tctlRight
  1728. //
  1729. this.tctlRight.Controls.Add(this.tpgOperationOrganization);
  1730. this.tctlRight.Controls.Add(this.tpgViewOrganization);
  1731. this.tctlRight.Controls.Add(this.tpgUser);
  1732. this.tctlRight.Controls.Add(this.tpgViewUser);
  1733. this.tctlRight.Controls.Add(this.tpgViewGroutingLine);
  1734. this.tctlRight.Controls.Add(this.tpgGroutingLine);
  1735. this.tctlRight.Controls.Add(this.tpgViewGroutingProductionLine);
  1736. this.tctlRight.Controls.Add(this.tpgGroutingProductionLine);
  1737. this.tctlRight.Controls.Add(this.tpgViewThermometer);
  1738. this.tctlRight.Controls.Add(this.tpgThermometer);
  1739. this.tctlRight.Controls.Add(this.tpgCancelprocedure);
  1740. this.tctlRight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1741. this.tctlRight.HotTrack = true;
  1742. this.tctlRight.ItemSize = new System.Drawing.Size(100, 23);
  1743. this.tctlRight.Location = new System.Drawing.Point(6, 6);
  1744. this.tctlRight.Multiline = true;
  1745. this.tctlRight.Name = "tctlRight";
  1746. this.tctlRight.SelectedIndex = 0;
  1747. this.tctlRight.Size = new System.Drawing.Size(641, 463);
  1748. this.tctlRight.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
  1749. this.tctlRight.TabIndex = 2;
  1750. this.tctlRight.SelectedIndexChanged += new System.EventHandler(this.tctlRight_SelectedIndexChanged);
  1751. //
  1752. // tpgViewThermometer
  1753. //
  1754. this.tpgViewThermometer.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1755. this.tpgViewThermometer.Controls.Add(this.dgvViewThermometer);
  1756. this.tpgViewThermometer.Location = new System.Drawing.Point(4, 50);
  1757. this.tpgViewThermometer.Name = "tpgViewThermometer";
  1758. this.tpgViewThermometer.Padding = new System.Windows.Forms.Padding(3);
  1759. this.tpgViewThermometer.Size = new System.Drawing.Size(633, 409);
  1760. this.tpgViewThermometer.TabIndex = 16;
  1761. this.tpgViewThermometer.Text = "查看温湿计范围";
  1762. this.tpgViewThermometer.UseVisualStyleBackColor = true;
  1763. //
  1764. // dgvViewThermometer
  1765. //
  1766. this.dgvViewThermometer.AllowUserToAddRows = false;
  1767. this.dgvViewThermometer.AllowUserToDeleteRows = false;
  1768. this.dgvViewThermometer.AllowUserToModifyRows = true;
  1769. this.dgvViewThermometer.AllowUserToOrderColumns = true;
  1770. this.dgvViewThermometer.AllowUserToResizeRows = false;
  1771. dataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1772. this.dgvViewThermometer.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle27;
  1773. this.dgvViewThermometer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1774. | System.Windows.Forms.AnchorStyles.Left)
  1775. | System.Windows.Forms.AnchorStyles.Right)));
  1776. this.dgvViewThermometer.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1777. this.dgvViewThermometer.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1778. this.dgvViewThermometer.CellHeight = 23;
  1779. this.dgvViewThermometer.ChildNodeColumnName = null;
  1780. this.dgvViewThermometer.ChildNodeColumnText = null;
  1781. this.dgvViewThermometer.ColumnDeep = 1;
  1782. this.dgvViewThermometer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1783. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1784. dataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1785. dataGridViewCellStyle28.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1786. dataGridViewCellStyle28.ForeColor = System.Drawing.Color.White;
  1787. dataGridViewCellStyle28.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1788. dataGridViewCellStyle28.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1789. dataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1790. this.dgvViewThermometer.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle28;
  1791. this.dgvViewThermometer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1792. this.dgvViewThermometer.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1793. this.dgThermometerSelectV,
  1794. this.dgThermometerCodeV,
  1795. this.dgManagerNameV,
  1796. this.dgValueFlagV,
  1797. this.dgThermometerIDV});
  1798. this.dgvViewThermometer.ColumnTreeView = null;
  1799. 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)));
  1800. this.dgvViewThermometer.DynamicColumnName = "";
  1801. this.dgvViewThermometer.EnableHeadersVisualStyles = false;
  1802. this.dgvViewThermometer.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1803. this.dgvViewThermometer.FormatQuantityColumns = null;
  1804. this.dgvViewThermometer.HorizontalMergeColumn = null;
  1805. this.dgvViewThermometer.IsAutoCountSum = true;
  1806. this.dgvViewThermometer.IsAutoResizeColumns = false;
  1807. this.dgvViewThermometer.IsClickF12 = false;
  1808. this.dgvViewThermometer.IsOpenMergeCellFlag = false;
  1809. this.dgvViewThermometer.IsSubTotalFlag = false;
  1810. this.dgvViewThermometer.IsTopDeep = false;
  1811. this.dgvViewThermometer.Location = new System.Drawing.Point(8, 5);
  1812. this.dgvViewThermometer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1813. this.dgvViewThermometer.MergeColumnNames = null;
  1814. this.dgvViewThermometer.MergeDetailColumnNames = null;
  1815. this.dgvViewThermometer.MergeDetailOnlyColumn = null;
  1816. this.dgvViewThermometer.MergeOnlyColumn = null;
  1817. this.dgvViewThermometer.MultiSelect = false;
  1818. this.dgvViewThermometer.Name = "dgvViewThermometer";
  1819. this.dgvViewThermometer.RefreshAtHscroll = false;
  1820. this.dgvViewThermometer.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1821. this.dgvViewThermometer.RowHeadersWidth = 50;
  1822. this.dgvViewThermometer.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1823. dataGridViewCellStyle32.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1824. this.dgvViewThermometer.RowsDefaultCellStyle = dataGridViewCellStyle32;
  1825. this.dgvViewThermometer.RowTemplate.Height = 21;
  1826. this.dgvViewThermometer.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1827. this.dgvViewThermometer.Size = new System.Drawing.Size(619, 399);
  1828. this.dgvViewThermometer.SortOrderColumnName = null;
  1829. this.dgvViewThermometer.TabIndex = 25;
  1830. this.dgvViewThermometer.Tag = true;
  1831. this.dgvViewThermometer.TotalSumColumns = null;
  1832. this.dgvViewThermometer.ViewRowFilter = "";
  1833. this.dgvViewThermometer.SelectionChanged += new System.EventHandler(this.dgvViewThermometer_SelectionChanged);
  1834. //
  1835. // dgThermometerSelectV
  1836. //
  1837. this.dgThermometerSelectV.DataPropertyName = "RightFlag";
  1838. this.dgThermometerSelectV.FalseValue = "0";
  1839. this.dgThermometerSelectV.HeaderText = "选择";
  1840. this.dgThermometerSelectV.Name = "dgThermometerSelectV";
  1841. this.dgThermometerSelectV.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1842. this.dgThermometerSelectV.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1843. this.dgThermometerSelectV.TrueValue = "1";
  1844. this.dgThermometerSelectV.Visible = false;
  1845. //
  1846. // dgThermometerCodeV
  1847. //
  1848. this.dgThermometerCodeV.DataPropertyName = "ThermometerCode";
  1849. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1850. dataGridViewCellStyle29.BackColor = System.Drawing.Color.White;
  1851. this.dgThermometerCodeV.DefaultCellStyle = dataGridViewCellStyle29;
  1852. this.dgThermometerCodeV.HeaderText = "温湿计编码";
  1853. this.dgThermometerCodeV.MaxInputLength = 20;
  1854. this.dgThermometerCodeV.Name = "dgThermometerCodeV";
  1855. this.dgThermometerCodeV.ReadOnly = true;
  1856. this.dgThermometerCodeV.Width = 120;
  1857. //
  1858. // dgManagerNameV
  1859. //
  1860. this.dgManagerNameV.DataPropertyName = "ManagerName";
  1861. dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1862. dataGridViewCellStyle30.BackColor = System.Drawing.Color.White;
  1863. this.dgManagerNameV.DefaultCellStyle = dataGridViewCellStyle30;
  1864. this.dgManagerNameV.HeaderText = "责任人";
  1865. this.dgManagerNameV.MaxInputLength = 20;
  1866. this.dgManagerNameV.Name = "dgManagerNameV";
  1867. this.dgManagerNameV.ReadOnly = true;
  1868. this.dgManagerNameV.Width = 120;
  1869. //
  1870. // dgValueFlagV
  1871. //
  1872. this.dgValueFlagV.DataPropertyName = "ValueFlag";
  1873. this.dgValueFlagV.FalseValue = "0";
  1874. this.dgValueFlagV.HeaderText = "有效标识";
  1875. this.dgValueFlagV.Name = "dgValueFlagV";
  1876. this.dgValueFlagV.ReadOnly = true;
  1877. this.dgValueFlagV.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1878. this.dgValueFlagV.TrueValue = "1";
  1879. //
  1880. // dgThermometerIDV
  1881. //
  1882. this.dgThermometerIDV.DataPropertyName = "Purviewid";
  1883. dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1884. dataGridViewCellStyle31.BackColor = System.Drawing.Color.White;
  1885. this.dgThermometerIDV.DefaultCellStyle = dataGridViewCellStyle31;
  1886. this.dgThermometerIDV.HeaderText = "温湿计ID";
  1887. this.dgThermometerIDV.MaxInputLength = 4;
  1888. this.dgThermometerIDV.Name = "dgThermometerIDV";
  1889. this.dgThermometerIDV.Visible = false;
  1890. //
  1891. // tpgThermometer
  1892. //
  1893. this.tpgThermometer.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1894. this.tpgThermometer.Controls.Add(this.dgvThermometer);
  1895. this.tpgThermometer.Location = new System.Drawing.Point(4, 50);
  1896. this.tpgThermometer.Name = "tpgThermometer";
  1897. this.tpgThermometer.Padding = new System.Windows.Forms.Padding(3);
  1898. this.tpgThermometer.Size = new System.Drawing.Size(633, 409);
  1899. this.tpgThermometer.TabIndex = 17;
  1900. this.tpgThermometer.Text = "操作温湿计范围";
  1901. this.tpgThermometer.UseVisualStyleBackColor = true;
  1902. //
  1903. // dgvThermometer
  1904. //
  1905. this.dgvThermometer.AllowUserToAddRows = false;
  1906. this.dgvThermometer.AllowUserToDeleteRows = false;
  1907. this.dgvThermometer.AllowUserToModifyRows = true;
  1908. this.dgvThermometer.AllowUserToOrderColumns = true;
  1909. this.dgvThermometer.AllowUserToResizeRows = false;
  1910. dataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1911. this.dgvThermometer.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle33;
  1912. this.dgvThermometer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1913. | System.Windows.Forms.AnchorStyles.Left)
  1914. | System.Windows.Forms.AnchorStyles.Right)));
  1915. this.dgvThermometer.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1916. this.dgvThermometer.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1917. this.dgvThermometer.CellHeight = 23;
  1918. this.dgvThermometer.ChildNodeColumnName = null;
  1919. this.dgvThermometer.ChildNodeColumnText = null;
  1920. this.dgvThermometer.ColumnDeep = 1;
  1921. this.dgvThermometer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1922. dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1923. dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1924. dataGridViewCellStyle34.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1925. dataGridViewCellStyle34.ForeColor = System.Drawing.Color.White;
  1926. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1927. dataGridViewCellStyle34.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1928. dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1929. this.dgvThermometer.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle34;
  1930. this.dgvThermometer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1931. this.dgvThermometer.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1932. this.dgThermometerSelect,
  1933. this.dgThermometerCode,
  1934. this.dgManagerName,
  1935. this.dgValueFlag,
  1936. this.dgThermometerID});
  1937. this.dgvThermometer.ColumnTreeView = null;
  1938. 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)));
  1939. this.dgvThermometer.DynamicColumnName = "";
  1940. this.dgvThermometer.EnableHeadersVisualStyles = false;
  1941. this.dgvThermometer.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1942. this.dgvThermometer.FormatQuantityColumns = null;
  1943. this.dgvThermometer.HorizontalMergeColumn = null;
  1944. this.dgvThermometer.IsAutoCountSum = true;
  1945. this.dgvThermometer.IsAutoResizeColumns = false;
  1946. this.dgvThermometer.IsClickF12 = false;
  1947. this.dgvThermometer.IsOpenMergeCellFlag = false;
  1948. this.dgvThermometer.IsSubTotalFlag = false;
  1949. this.dgvThermometer.IsTopDeep = false;
  1950. this.dgvThermometer.Location = new System.Drawing.Point(8, 5);
  1951. this.dgvThermometer.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1952. this.dgvThermometer.MergeColumnNames = null;
  1953. this.dgvThermometer.MergeDetailColumnNames = null;
  1954. this.dgvThermometer.MergeDetailOnlyColumn = null;
  1955. this.dgvThermometer.MergeOnlyColumn = null;
  1956. this.dgvThermometer.MultiSelect = false;
  1957. this.dgvThermometer.Name = "dgvThermometer";
  1958. this.dgvThermometer.RefreshAtHscroll = false;
  1959. this.dgvThermometer.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1960. this.dgvThermometer.RowHeadersWidth = 50;
  1961. this.dgvThermometer.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1962. dataGridViewCellStyle38.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1963. this.dgvThermometer.RowsDefaultCellStyle = dataGridViewCellStyle38;
  1964. this.dgvThermometer.RowTemplate.Height = 21;
  1965. this.dgvThermometer.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1966. this.dgvThermometer.Size = new System.Drawing.Size(619, 399);
  1967. this.dgvThermometer.SortOrderColumnName = null;
  1968. this.dgvThermometer.TabIndex = 26;
  1969. this.dgvThermometer.Tag = true;
  1970. this.dgvThermometer.TotalSumColumns = null;
  1971. this.dgvThermometer.ViewRowFilter = "";
  1972. this.dgvThermometer.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvThermometer_CellValueChanged);
  1973. this.dgvThermometer.SelectionChanged += new System.EventHandler(this.dgvThermometer_SelectionChanged);
  1974. //
  1975. // dgThermometerSelect
  1976. //
  1977. this.dgThermometerSelect.DataPropertyName = "RightFlag";
  1978. this.dgThermometerSelect.FalseValue = "0";
  1979. this.dgThermometerSelect.HeaderText = "选择";
  1980. this.dgThermometerSelect.Name = "dgThermometerSelect";
  1981. this.dgThermometerSelect.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1982. this.dgThermometerSelect.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1983. this.dgThermometerSelect.TrueValue = "1";
  1984. this.dgThermometerSelect.Visible = false;
  1985. //
  1986. // dgThermometerCode
  1987. //
  1988. this.dgThermometerCode.DataPropertyName = "ThermometerCode";
  1989. dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1990. dataGridViewCellStyle35.BackColor = System.Drawing.Color.White;
  1991. this.dgThermometerCode.DefaultCellStyle = dataGridViewCellStyle35;
  1992. this.dgThermometerCode.HeaderText = "温湿计编码";
  1993. this.dgThermometerCode.MaxInputLength = 20;
  1994. this.dgThermometerCode.Name = "dgThermometerCode";
  1995. this.dgThermometerCode.ReadOnly = true;
  1996. this.dgThermometerCode.Width = 120;
  1997. //
  1998. // dgManagerName
  1999. //
  2000. this.dgManagerName.DataPropertyName = "ManagerName";
  2001. dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2002. dataGridViewCellStyle36.BackColor = System.Drawing.Color.White;
  2003. this.dgManagerName.DefaultCellStyle = dataGridViewCellStyle36;
  2004. this.dgManagerName.HeaderText = "责任人";
  2005. this.dgManagerName.MaxInputLength = 20;
  2006. this.dgManagerName.Name = "dgManagerName";
  2007. this.dgManagerName.ReadOnly = true;
  2008. this.dgManagerName.Width = 120;
  2009. //
  2010. // dgValueFlag
  2011. //
  2012. this.dgValueFlag.DataPropertyName = "ValueFlag";
  2013. this.dgValueFlag.FalseValue = "0";
  2014. this.dgValueFlag.HeaderText = "有效标识";
  2015. this.dgValueFlag.Name = "dgValueFlag";
  2016. this.dgValueFlag.ReadOnly = true;
  2017. this.dgValueFlag.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  2018. this.dgValueFlag.TrueValue = "1";
  2019. //
  2020. // dgThermometerID
  2021. //
  2022. this.dgThermometerID.DataPropertyName = "Purviewid";
  2023. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2024. dataGridViewCellStyle37.BackColor = System.Drawing.Color.White;
  2025. this.dgThermometerID.DefaultCellStyle = dataGridViewCellStyle37;
  2026. this.dgThermometerID.HeaderText = "温湿计ID";
  2027. this.dgThermometerID.MaxInputLength = 4;
  2028. this.dgThermometerID.Name = "dgThermometerID";
  2029. this.dgThermometerID.Visible = false;
  2030. //
  2031. // tpgCancelprocedure
  2032. //
  2033. this.tpgCancelprocedure.Controls.Add(this.treeViewCancel);
  2034. this.tpgCancelprocedure.Location = new System.Drawing.Point(4, 50);
  2035. this.tpgCancelprocedure.Name = "tpgCancelprocedure";
  2036. this.tpgCancelprocedure.Size = new System.Drawing.Size(633, 409);
  2037. this.tpgCancelprocedure.TabIndex = 18;
  2038. this.tpgCancelprocedure.Text = "撤销工序范围权限";
  2039. this.tpgCancelprocedure.UseVisualStyleBackColor = true;
  2040. //
  2041. // treeViewCancel
  2042. //
  2043. this.treeViewCancel.BackColor = System.Drawing.SystemColors.Window;
  2044. this.treeViewCancel.Indent = 20;
  2045. this.treeViewCancel.ItemHeight = 20;
  2046. this.treeViewCancel.LineColor = System.Drawing.Color.Red;
  2047. this.treeViewCancel.Location = new System.Drawing.Point(3, 3);
  2048. this.treeViewCancel.Name = "treeViewCancel";
  2049. this.treeViewCancel.Size = new System.Drawing.Size(630, 403);
  2050. this.treeViewCancel.TabIndex = 17;
  2051. this.treeViewCancel.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewCancel_AfterSelect);
  2052. //
  2053. // dgvFunctionUsers
  2054. //
  2055. this.dgvFunctionUsers.AllowUserToModifyRows = true;
  2056. dataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  2057. this.dgvFunctionUsers.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle39;
  2058. this.dgvFunctionUsers.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  2059. | System.Windows.Forms.AnchorStyles.Left)
  2060. | System.Windows.Forms.AnchorStyles.Right)));
  2061. this.dgvFunctionUsers.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  2062. this.dgvFunctionUsers.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  2063. this.dgvFunctionUsers.CellHeight = 23;
  2064. this.dgvFunctionUsers.ChildNodeColumnName = null;
  2065. this.dgvFunctionUsers.ChildNodeColumnText = null;
  2066. this.dgvFunctionUsers.ColumnDeep = 1;
  2067. this.dgvFunctionUsers.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  2068. dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  2069. dataGridViewCellStyle40.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  2070. dataGridViewCellStyle40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2071. dataGridViewCellStyle40.ForeColor = System.Drawing.Color.White;
  2072. dataGridViewCellStyle40.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2073. dataGridViewCellStyle40.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2074. dataGridViewCellStyle40.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2075. this.dgvFunctionUsers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle40;
  2076. this.dgvFunctionUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  2077. this.dgvFunctionUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  2078. this.UserCode1,
  2079. this.UserName1,
  2080. this.OrganizationName1,
  2081. this.UserID1,
  2082. this.AddFlag,
  2083. this.Purviewid,
  2084. this.PURVIEWTYPE});
  2085. this.dgvFunctionUsers.ColumnTreeView = null;
  2086. 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)));
  2087. dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2088. dataGridViewCellStyle41.BackColor = System.Drawing.SystemColors.Window;
  2089. dataGridViewCellStyle41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2090. dataGridViewCellStyle41.ForeColor = System.Drawing.SystemColors.ControlText;
  2091. dataGridViewCellStyle41.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2092. dataGridViewCellStyle41.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2093. dataGridViewCellStyle41.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  2094. this.dgvFunctionUsers.DefaultCellStyle = dataGridViewCellStyle41;
  2095. this.dgvFunctionUsers.DynamicColumnName = "";
  2096. this.dgvFunctionUsers.EnableHeadersVisualStyles = false;
  2097. this.dgvFunctionUsers.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2098. this.dgvFunctionUsers.FormatQuantityColumns = null;
  2099. this.dgvFunctionUsers.HorizontalMergeColumn = null;
  2100. this.dgvFunctionUsers.IsAutoCountSum = true;
  2101. this.dgvFunctionUsers.IsAutoResizeColumns = false;
  2102. this.dgvFunctionUsers.IsClickF12 = false;
  2103. this.dgvFunctionUsers.IsOpenMergeCellFlag = false;
  2104. this.dgvFunctionUsers.IsSubTotalFlag = false;
  2105. this.dgvFunctionUsers.IsTopDeep = false;
  2106. this.dgvFunctionUsers.Location = new System.Drawing.Point(653, 6);
  2107. this.dgvFunctionUsers.MergeColumnNames = null;
  2108. this.dgvFunctionUsers.MergeDetailColumnNames = null;
  2109. this.dgvFunctionUsers.MergeDetailOnlyColumn = null;
  2110. this.dgvFunctionUsers.MergeOnlyColumn = null;
  2111. this.dgvFunctionUsers.MultiSelect = false;
  2112. this.dgvFunctionUsers.Name = "dgvFunctionUsers";
  2113. this.dgvFunctionUsers.RefreshAtHscroll = false;
  2114. dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  2115. dataGridViewCellStyle42.BackColor = System.Drawing.SystemColors.Control;
  2116. dataGridViewCellStyle42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2117. dataGridViewCellStyle42.ForeColor = System.Drawing.SystemColors.WindowText;
  2118. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  2119. dataGridViewCellStyle42.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  2120. dataGridViewCellStyle42.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  2121. this.dgvFunctionUsers.RowHeadersDefaultCellStyle = dataGridViewCellStyle42;
  2122. this.dgvFunctionUsers.RowHeadersWidth = 50;
  2123. this.dgvFunctionUsers.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  2124. dataGridViewCellStyle43.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  2125. this.dgvFunctionUsers.RowsDefaultCellStyle = dataGridViewCellStyle43;
  2126. this.dgvFunctionUsers.RowTemplate.Height = 21;
  2127. this.dgvFunctionUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  2128. this.dgvFunctionUsers.Size = new System.Drawing.Size(355, 463);
  2129. this.dgvFunctionUsers.SortOrderColumnName = null;
  2130. this.dgvFunctionUsers.TabIndex = 4;
  2131. this.dgvFunctionUsers.Tag = true;
  2132. this.dgvFunctionUsers.TotalSumColumns = null;
  2133. this.dgvFunctionUsers.ViewRowFilter = "";
  2134. this.dgvFunctionUsers.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvFunctionUsers_CellBeginEdit);
  2135. this.dgvFunctionUsers.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvFunctionUsers_CellValueChanged);
  2136. this.dgvFunctionUsers.Sorted += new System.EventHandler(this.dgvFunctionUsers_Sorted);
  2137. this.dgvFunctionUsers.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.dgvFunctionUsers_UserDeletingRow);
  2138. //
  2139. // UserCode1
  2140. //
  2141. this.UserCode1.DataPropertyName = "UserCode";
  2142. this.UserCode1.HeaderText = "用户编码";
  2143. this.UserCode1.Name = "UserCode1";
  2144. this.UserCode1.Width = 80;
  2145. //
  2146. // UserName1
  2147. //
  2148. this.UserName1.DataPropertyName = "UserName";
  2149. this.UserName1.HeaderText = "用户名称";
  2150. this.UserName1.Name = "UserName1";
  2151. this.UserName1.ReadOnly = true;
  2152. this.UserName1.Width = 80;
  2153. //
  2154. // OrganizationName1
  2155. //
  2156. this.OrganizationName1.DataPropertyName = "OrganizationName";
  2157. this.OrganizationName1.HeaderText = "组织机构";
  2158. this.OrganizationName1.Name = "OrganizationName1";
  2159. this.OrganizationName1.ReadOnly = true;
  2160. this.OrganizationName1.Width = 120;
  2161. //
  2162. // UserID1
  2163. //
  2164. this.UserID1.DataPropertyName = "UserID";
  2165. this.UserID1.HeaderText = "UserID";
  2166. this.UserID1.Name = "UserID1";
  2167. this.UserID1.Visible = false;
  2168. //
  2169. // AddFlag
  2170. //
  2171. this.AddFlag.DataPropertyName = "AddFlag";
  2172. this.AddFlag.HeaderText = "AddFlag";
  2173. this.AddFlag.Name = "AddFlag";
  2174. this.AddFlag.Visible = false;
  2175. //
  2176. // Purviewid
  2177. //
  2178. this.Purviewid.DataPropertyName = "Purviewid";
  2179. this.Purviewid.HeaderText = "Purviewid";
  2180. this.Purviewid.Name = "Purviewid";
  2181. this.Purviewid.Visible = false;
  2182. //
  2183. // PURVIEWTYPE
  2184. //
  2185. this.PURVIEWTYPE.DataPropertyName = "PURVIEWTYPE";
  2186. this.PURVIEWTYPE.HeaderText = "PURVIEWTYPE";
  2187. this.PURVIEWTYPE.Name = "PURVIEWTYPE";
  2188. this.PURVIEWTYPE.Visible = false;
  2189. //
  2190. // F_MST_0207
  2191. //
  2192. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2193. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2194. this.CancelButton = this.btnCancel;
  2195. this.ClientSize = new System.Drawing.Size(1020, 533);
  2196. this.Controls.Add(this.dgvFunctionUsers);
  2197. this.Controls.Add(this.btnCancel);
  2198. this.Controls.Add(this.btnSave);
  2199. this.Controls.Add(this.tctlRight);
  2200. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  2201. this.IsSaveFormSize = false;
  2202. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  2203. this.MaximizeBox = false;
  2204. this.MinimizeBox = false;
  2205. this.Name = "F_MST_0207";
  2206. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  2207. this.StatusSizingGrip = false;
  2208. this.Text = "范围权限";
  2209. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.F_MST_0204_FormClosing);
  2210. this.Load += new System.EventHandler(this.F_MST_0204_Load);
  2211. this.Controls.SetChildIndex(this.tctlRight, 0);
  2212. this.Controls.SetChildIndex(this.btnSave, 0);
  2213. this.Controls.SetChildIndex(this.btnCancel, 0);
  2214. this.Controls.SetChildIndex(this.dgvFunctionUsers, 0);
  2215. this.tpgGroutingProductionLine.ResumeLayout(false);
  2216. this.tpgViewGroutingProductionLine.ResumeLayout(false);
  2217. this.tpgGroutingLine.ResumeLayout(false);
  2218. ((System.ComponentModel.ISupportInitialize)(this.dgvGroutingLine)).EndInit();
  2219. this.tpgViewGroutingLine.ResumeLayout(false);
  2220. ((System.ComponentModel.ISupportInitialize)(this.dgvViewGroutingLine)).EndInit();
  2221. this.tpgViewUser.ResumeLayout(false);
  2222. ((System.ComponentModel.ISupportInitialize)(this.dgvViewUser)).EndInit();
  2223. this.tpgUser.ResumeLayout(false);
  2224. ((System.ComponentModel.ISupportInitialize)(this.dgvUser)).EndInit();
  2225. this.tpgViewOrganization.ResumeLayout(false);
  2226. this.tpgOperationOrganization.ResumeLayout(false);
  2227. this.tctlRight.ResumeLayout(false);
  2228. this.tpgViewThermometer.ResumeLayout(false);
  2229. ((System.ComponentModel.ISupportInitialize)(this.dgvViewThermometer)).EndInit();
  2230. this.tpgThermometer.ResumeLayout(false);
  2231. ((System.ComponentModel.ISupportInitialize)(this.dgvThermometer)).EndInit();
  2232. this.tpgCancelprocedure.ResumeLayout(false);
  2233. ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).EndInit();
  2234. this.ResumeLayout(false);
  2235. this.PerformLayout();
  2236. }
  2237. #endregion
  2238. private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
  2239. private System.Windows.Forms.DataGridViewTextBoxColumn BrandID;
  2240. private System.Windows.Forms.DataGridViewTextBoxColumn BrandName;
  2241. private System.Windows.Forms.DataGridViewCheckBoxColumn UserChoose;
  2242. private System.Windows.Forms.DataGridViewTextBoxColumn UserID;
  2243. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode;
  2244. private System.Windows.Forms.DataGridViewTextBoxColumn UserName;
  2245. private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationName;
  2246. private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationFullName;
  2247. private System.Windows.Forms.DataGridViewCheckBoxColumn ValueFlag;
  2248. private System.Windows.Forms.DataGridViewCheckBoxColumn CustomerChoose;
  2249. private System.Windows.Forms.DataGridViewTextBoxColumn CustomerID;
  2250. private System.Windows.Forms.DataGridViewTextBoxColumn CustomerCode;
  2251. private System.Windows.Forms.DataGridViewTextBoxColumn CustomerName;
  2252. private System.Windows.Forms.DataGridViewTextBoxColumn DistrictName;
  2253. private System.Windows.Forms.DataGridViewTextBoxColumn CustomerChannelName;
  2254. private System.Windows.Forms.DataGridViewTextBoxColumn Contacts;
  2255. private System.Windows.Forms.DataGridViewTextBoxColumn Telephone;
  2256. private System.Windows.Forms.DataGridViewTextBoxColumn Address;
  2257. private System.Windows.Forms.DataGridViewCheckBoxColumn SettlementTypeChoose;
  2258. private System.Windows.Forms.DataGridViewTextBoxColumn SettlementTypeID;
  2259. private System.Windows.Forms.DataGridViewTextBoxColumn SettlementType;
  2260. private System.Windows.Forms.DataGridViewCheckBoxColumn SecondSettlementChoose;
  2261. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  2262. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  2263. private System.Windows.Forms.DataGridViewTextBoxColumn OriginaOrganizationName;
  2264. private System.Windows.Forms.DataGridViewTextBoxColumn TargetOrganizationName;
  2265. private System.Windows.Forms.DataGridViewCheckBoxColumn ChannelChoose;
  2266. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  2267. private System.Windows.Forms.DataGridViewTextBoxColumn ChannelName;
  2268. private System.Windows.Forms.DataGridViewCheckBoxColumn ControlledFlag;
  2269. private System.Windows.Forms.DataGridViewTextBoxColumn ChannelTactics;
  2270. private System.Windows.Forms.DataGridViewTextBoxColumn Remarks;
  2271. private System.Windows.Forms.DataGridViewCheckBoxColumn StaffChoose;
  2272. private System.Windows.Forms.DataGridViewTextBoxColumn StaffID;
  2273. private System.Windows.Forms.DataGridViewTextBoxColumn StaffCode;
  2274. private System.Windows.Forms.DataGridViewTextBoxColumn StaffName;
  2275. private System.Windows.Forms.DataGridViewTextBoxColumn StaffOrganizationName;
  2276. private System.Windows.Forms.DataGridViewTextBoxColumn StaffOrganizationFullName;
  2277. private System.Windows.Forms.DataGridViewCheckBoxColumn StaffValueFlag;
  2278. private System.Windows.Forms.DataGridViewCheckBoxColumn FeeObjectChoose;
  2279. private System.Windows.Forms.DataGridViewTextBoxColumn ObjectTypeID;
  2280. private System.Windows.Forms.DataGridViewTextBoxColumn ObjectTypeName;
  2281. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  2282. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  2283. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  2284. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  2285. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  2286. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  2287. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  2288. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  2289. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  2290. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  2291. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
  2292. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  2293. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  2294. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  2295. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  2296. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  2297. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2298. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2299. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2300. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn5;
  2301. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2302. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2303. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn6;
  2304. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2305. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2306. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2307. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  2308. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn7;
  2309. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  2310. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  2311. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn8;
  2312. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  2313. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  2314. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn9;
  2315. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  2316. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  2317. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  2318. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  2319. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  2320. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn10;
  2321. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn11;
  2322. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  2323. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  2324. private Basics.BaseControls.C_Button btnSave;
  2325. private Basics.BaseControls.C_Button btnCancel;
  2326. private System.Windows.Forms.TabPage tpgGroutingProductionLine;
  2327. private System.Windows.Forms.TreeView tvwGroutinProductionLineCK;
  2328. private System.Windows.Forms.TabPage tpgViewGroutingProductionLine;
  2329. private System.Windows.Forms.TreeView tvwGroutinProductionLine;
  2330. private System.Windows.Forms.TabPage tpgGroutingLine;
  2331. private Basics.BaseControls.C_DataGridView dgvGroutingLine;
  2332. private System.Windows.Forms.TabPage tpgViewGroutingLine;
  2333. private Basics.BaseControls.C_DataGridView dgvViewGroutingLine;
  2334. private System.Windows.Forms.TabPage tpgViewUser;
  2335. private Basics.BaseControls.C_DataGridView dgvViewUser;
  2336. private System.Windows.Forms.TabPage tpgUser;
  2337. private Basics.BaseControls.C_DataGridView dgvUser;
  2338. private System.Windows.Forms.TabPage tpgViewOrganization;
  2339. private System.Windows.Forms.Button btnViewOrganizationExpandAll;
  2340. private System.Windows.Forms.Button btnViewOrganizationCollapseAll;
  2341. private System.Windows.Forms.TreeView tvwViewOrganization;
  2342. private System.Windows.Forms.TabPage tpgOperationOrganization;
  2343. private System.Windows.Forms.TreeView tvwOrganization;
  2344. private System.Windows.Forms.Button btnOrganizationExpandAll;
  2345. private System.Windows.Forms.Button btnOrganizationCollapseAll;
  2346. private System.Windows.Forms.TabControl tctlRight;
  2347. private System.Windows.Forms.TabPage tpgViewThermometer;
  2348. private Basics.BaseControls.C_DataGridView dgvViewThermometer;
  2349. private System.Windows.Forms.TabPage tpgThermometer;
  2350. private Basics.BaseControls.C_DataGridView dgvThermometer;
  2351. private Basics.BaseControls.C_DataGridView dgvFunctionUsers;
  2352. private System.Windows.Forms.DataGridViewCheckBoxColumn dgUserRightFlag;
  2353. private System.Windows.Forms.DataGridViewTextBoxColumn dgUserCode;
  2354. private System.Windows.Forms.DataGridViewTextBoxColumn dgUserName;
  2355. private System.Windows.Forms.DataGridViewTextBoxColumn dgUserOrganizationName;
  2356. private System.Windows.Forms.DataGridViewTextBoxColumn dgUserOrganizationFullName;
  2357. private System.Windows.Forms.DataGridViewCheckBoxColumn dgUserValueFlag;
  2358. private System.Windows.Forms.DataGridViewTextBoxColumn dgUserID;
  2359. private System.Windows.Forms.DataGridViewCheckBoxColumn RightFlag;
  2360. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  2361. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  2362. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  2363. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  2364. private System.Windows.Forms.DataGridViewCheckBoxColumn ValueFlagText;
  2365. private System.Windows.Forms.DataGridViewTextBoxColumn dgvViewUserID;
  2366. private System.Windows.Forms.DataGridViewCheckBoxColumn dgViewGroutingLineRightFlag;
  2367. private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGroutingLineCode;
  2368. private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGrNoutingLineName;
  2369. private System.Windows.Forms.DataGridViewCheckBoxColumn dgViewGroutingLineValueFlag;
  2370. private System.Windows.Forms.DataGridViewTextBoxColumn dgViewGroutingLineID;
  2371. private System.Windows.Forms.DataGridViewCheckBoxColumn dgGroutingLineRightFlag;
  2372. private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineCode;
  2373. private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineName;
  2374. private System.Windows.Forms.DataGridViewCheckBoxColumn dgGroutingLineValueFlag;
  2375. private System.Windows.Forms.DataGridViewTextBoxColumn dgGroutingLineID;
  2376. private System.Windows.Forms.DataGridViewCheckBoxColumn dgThermometerSelectV;
  2377. private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerCodeV;
  2378. private System.Windows.Forms.DataGridViewTextBoxColumn dgManagerNameV;
  2379. private System.Windows.Forms.DataGridViewCheckBoxColumn dgValueFlagV;
  2380. private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerIDV;
  2381. private System.Windows.Forms.DataGridViewCheckBoxColumn dgThermometerSelect;
  2382. private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerCode;
  2383. private System.Windows.Forms.DataGridViewTextBoxColumn dgManagerName;
  2384. private System.Windows.Forms.DataGridViewCheckBoxColumn dgValueFlag;
  2385. private System.Windows.Forms.DataGridViewTextBoxColumn dgThermometerID;
  2386. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode2;
  2387. private System.Windows.Forms.TabPage tpgCancelprocedure;
  2388. private System.Windows.Forms.TreeView treeViewCancel;
  2389. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode1;
  2390. private System.Windows.Forms.DataGridViewTextBoxColumn UserName1;
  2391. private System.Windows.Forms.DataGridViewTextBoxColumn OrganizationName1;
  2392. private System.Windows.Forms.DataGridViewTextBoxColumn UserID1;
  2393. private System.Windows.Forms.DataGridViewTextBoxColumn AddFlag;
  2394. private System.Windows.Forms.DataGridViewTextBoxColumn Purviewid;
  2395. private System.Windows.Forms.DataGridViewTextBoxColumn PURVIEWTYPE;
  2396. }
  2397. }