FrmLatePayment.Designer.cs 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983
  1. namespace LYFZ.Software.UI.FinancialManagement.OrdersReceivables
  2. {
  3. partial class FrmLatePayment
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLatePayment));
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  35. this.labelEx19 = new LYFZ.ComponentLibrary.LabelEx();
  36. this.labelEx6 = new LYFZ.ComponentLibrary.LabelEx();
  37. this.lblName1 = new LYFZ.ComponentLibrary.LabelEx();
  38. this.labelEx2 = new LYFZ.ComponentLibrary.LabelEx();
  39. this.labelEx3 = new LYFZ.ComponentLibrary.LabelEx();
  40. this.panelEx1 = new LYFZ.ComponentLibrary.PanelEx();
  41. this.txtOrd_Number = new LYFZ.ComponentLibrary.TextBoxEx();
  42. this.txtOrd_CustomerName1 = new LYFZ.ComponentLibrary.TextBoxEx();
  43. this.txtCope = new LYFZ.ComponentLibrary.TextBoxEx();
  44. this.txtPaid = new LYFZ.ComponentLibrary.TextBoxEx();
  45. this.txtArrears = new LYFZ.ComponentLibrary.TextBoxEx();
  46. this.panelEx2 = new LYFZ.ComponentLibrary.PanelEx();
  47. this.panelEx15 = new LYFZ.ComponentLibrary.PanelEx();
  48. this.panelEx13 = new LYFZ.ComponentLibrary.PanelEx();
  49. this.dgv2 = new LYFZ.ComponentLibrary.DataGridViewEx();
  50. this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.Pay_ShootingName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  52. this.Pay_AmountOf = new System.Windows.Forms.DataGridViewTextBoxColumn();
  53. this.Pay_CreateDatetime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  54. this.Pay_OpenSingle = new System.Windows.Forms.DataGridViewTextBoxColumn();
  55. this.Pay_ThePayee = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.Pay_PaymentMethod = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.Pay_Category = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.Pay_ReceivableProject = new System.Windows.Forms.DataGridViewTextBoxColumn();
  59. this.Pay_TwoPinsCategory = new System.Windows.Forms.DataGridViewTextBoxColumn();
  60. this.PaymentDiscount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.DiscountAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.Pay_Remark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.panelEx17 = new LYFZ.ComponentLibrary.PanelEx();
  64. this.labelEx12 = new LYFZ.ComponentLibrary.LabelEx();
  65. this.btndeleteSK = new LYFZ.ComponentLibrary.ButtonForm();
  66. this.panelEx12 = new LYFZ.ComponentLibrary.PanelEx();
  67. this.dgvData1 = new LYFZ.ComponentLibrary.DataGridViewEc();
  68. this.panelEx16 = new LYFZ.ComponentLibrary.PanelEx();
  69. this.btndelectCP = new LYFZ.ComponentLibrary.ButtonForm();
  70. this.labelEx4 = new LYFZ.ComponentLibrary.LabelEx();
  71. this.panelEx6 = new LYFZ.ComponentLibrary.PanelEx();
  72. this.btnSave = new LYFZ.ComponentLibrary.ButtonEx();
  73. this.btnPrint = new LYFZ.ComponentLibrary.ButtonEx();
  74. this.btnUpdateTime2 = new LYFZ.ComponentLibrary.ButtonForm();
  75. this.txtPlusPickTime = new LYFZ.ComponentLibrary.DateTimePickerEx();
  76. this.panelEx11 = new LYFZ.ComponentLibrary.PanelEx();
  77. this.cmbtreevStage = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  78. this.labelEx24 = new LYFZ.ComponentLibrary.LabelEx();
  79. this.cmbPay_TwoPinsCategory = new LYFZ.ComponentLibrary.ComboBoxEx();
  80. this.txtPay_OpenSingle = new LYFZ.ComponentLibrary.TextBoxEx();
  81. this.txtPlusPickItems = new LYFZ.ComponentLibrary.TextBoxEx();
  82. this.txtLessInventory = new LYFZ.ComponentLibrary.TextBoxEx();
  83. this.txtRecordedSinglePerson = new LYFZ.ComponentLibrary.TextBoxEx();
  84. this.txtPlusPickAmount = new LYFZ.ComponentLibrary.TextBoxEx();
  85. this.labelEx26 = new LYFZ.ComponentLibrary.LabelEx();
  86. this.btnSelect2 = new LYFZ.ComponentLibrary.ButtonForm();
  87. this.btnSet2 = new LYFZ.ComponentLibrary.ButtonForm();
  88. this.labelEx25 = new LYFZ.ComponentLibrary.LabelEx();
  89. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  90. this.panelStageName = new LYFZ.ComponentLibrary.PanelEx();
  91. this.txtStageName = new LYFZ.ComponentLibrary.TextBoxEx();
  92. this.labelEx1 = new LYFZ.ComponentLibrary.LabelEx();
  93. this.panelEx3 = new LYFZ.ComponentLibrary.PanelEx();
  94. this.txtPay_ReceivableProject = new LYFZ.ComponentLibrary.TextBoxEx();
  95. this.labelEx17 = new LYFZ.ComponentLibrary.LabelEx();
  96. this.panelEx4 = new LYFZ.ComponentLibrary.PanelEx();
  97. this.txtPay_AmountOf = new LYFZ.ComponentLibrary.TextBoxEx();
  98. this.txtPay_ThePayee = new LYFZ.ComponentLibrary.TextBoxEx();
  99. this.labelEx20 = new LYFZ.ComponentLibrary.LabelEx();
  100. this.labelEx16 = new LYFZ.ComponentLibrary.LabelEx();
  101. this.panelEx5 = new LYFZ.ComponentLibrary.PanelEx();
  102. this.cmbPay_PaymentMethod = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  103. this.labelEx13 = new LYFZ.ComponentLibrary.LabelEx();
  104. this.btnSet = new LYFZ.ComponentLibrary.ButtonForm();
  105. this.panelEx7 = new LYFZ.ComponentLibrary.PanelEx();
  106. this.txtPay_CreateDatetime = new LYFZ.ComponentLibrary.DateTimePickerEx();
  107. this.labelEx14 = new LYFZ.ComponentLibrary.LabelEx();
  108. this.btnUpdateTime = new LYFZ.ComponentLibrary.ButtonForm();
  109. this.panelEx8 = new LYFZ.ComponentLibrary.PanelEx();
  110. this.txtSecondPin = new LYFZ.ComponentLibrary.TextBoxEx();
  111. this.labelEx18 = new LYFZ.ComponentLibrary.LabelEx();
  112. this.panelEx9 = new LYFZ.ComponentLibrary.PanelEx();
  113. this.txtPay_Category = new LYFZ.ComponentLibrary.TextBoxEx();
  114. this.txtSalesperson = new LYFZ.ComponentLibrary.TextBoxEx();
  115. this.labelEx22 = new LYFZ.ComponentLibrary.LabelEx();
  116. this.labelEx21 = new LYFZ.ComponentLibrary.LabelEx();
  117. this.panelEx10 = new LYFZ.ComponentLibrary.PanelEx();
  118. this.txtPay_Remark = new LYFZ.ComponentLibrary.TextBoxEx();
  119. this.labelEx15 = new LYFZ.ComponentLibrary.LabelEx();
  120. this.panel1 = new System.Windows.Forms.Panel();
  121. this.btnDelPerformance = new LYFZ.ComponentLibrary.ButtonForm();
  122. this.btnPerformance = new LYFZ.ComponentLibrary.ButtonForm();
  123. this.listBoxPerformance = new LYFZ.ComponentLibrary.ListBoxEx();
  124. this.labelEx27 = new LYFZ.ComponentLibrary.LabelEx();
  125. this.labelEx5 = new LYFZ.ComponentLibrary.LabelEx();
  126. this.btnSelect = new LYFZ.ComponentLibrary.ButtonForm();
  127. this.labelEx9 = new LYFZ.ComponentLibrary.LabelEx();
  128. this.btnSaveCP = new LYFZ.ComponentLibrary.ButtonEx();
  129. this.labelEx11 = new LYFZ.ComponentLibrary.LabelEx();
  130. this.labelEx8 = new LYFZ.ComponentLibrary.LabelEx();
  131. this.labelEx7 = new LYFZ.ComponentLibrary.LabelEx();
  132. this.labelEx10 = new LYFZ.ComponentLibrary.LabelEx();
  133. this.labelEx23 = new LYFZ.ComponentLibrary.LabelEx();
  134. this.panelEx14 = new LYFZ.ComponentLibrary.PanelEx();
  135. this.plExMainContainer.SuspendLayout();
  136. this.plFormMainContent.SuspendLayout();
  137. this.panelEx2.SuspendLayout();
  138. this.panelEx15.SuspendLayout();
  139. this.panelEx13.SuspendLayout();
  140. ((System.ComponentModel.ISupportInitialize)(this.dgv2)).BeginInit();
  141. this.panelEx17.SuspendLayout();
  142. this.panelEx12.SuspendLayout();
  143. ((System.ComponentModel.ISupportInitialize)(this.dgvData1)).BeginInit();
  144. this.panelEx16.SuspendLayout();
  145. this.panelEx6.SuspendLayout();
  146. this.panelEx11.SuspendLayout();
  147. this.flowLayoutPanel1.SuspendLayout();
  148. this.panelStageName.SuspendLayout();
  149. this.panelEx3.SuspendLayout();
  150. this.panelEx4.SuspendLayout();
  151. this.panelEx5.SuspendLayout();
  152. this.panelEx7.SuspendLayout();
  153. this.panelEx8.SuspendLayout();
  154. this.panelEx9.SuspendLayout();
  155. this.panelEx10.SuspendLayout();
  156. this.panel1.SuspendLayout();
  157. this.panelEx14.SuspendLayout();
  158. this.SuspendLayout();
  159. //
  160. // plExMainContainer
  161. //
  162. this.plExMainContainer.AutoScroll = true;
  163. this.plExMainContainer.Controls.Add(this.panelEx2);
  164. this.plExMainContainer.Padding = new System.Windows.Forms.Padding(5);
  165. this.plExMainContainer.Size = new System.Drawing.Size(1009, 669);
  166. //
  167. // plFormMainContent
  168. //
  169. this.plFormMainContent.Size = new System.Drawing.Size(1009, 669);
  170. //
  171. // btnAppFormMaximize
  172. //
  173. this.btnAppFormMaximize.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormMaximize.BackImg")));
  174. this.btnAppFormMaximize.Location = new System.Drawing.Point(950, 0);
  175. //
  176. // btnAppFormExit
  177. //
  178. this.btnAppFormExit.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormExit.BackImg")));
  179. this.btnAppFormExit.Location = new System.Drawing.Point(977, 0);
  180. //
  181. // btnAppFormMinimize
  182. //
  183. this.btnAppFormMinimize.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormMinimize.BackImg")));
  184. this.btnAppFormMinimize.Location = new System.Drawing.Point(923, 0);
  185. //
  186. // labelEx19
  187. //
  188. this.labelEx19.AutoSize = true;
  189. this.labelEx19.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  190. this.labelEx19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  191. this.labelEx19.Location = new System.Drawing.Point(6, 8);
  192. this.labelEx19.Name = "labelEx19";
  193. this.labelEx19.Size = new System.Drawing.Size(56, 17);
  194. this.labelEx19.TabIndex = 66;
  195. this.labelEx19.Text = "订单号:";
  196. //
  197. // labelEx6
  198. //
  199. this.labelEx6.AutoSize = true;
  200. this.labelEx6.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  201. this.labelEx6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  202. this.labelEx6.Location = new System.Drawing.Point(512, 8);
  203. this.labelEx6.Name = "labelEx6";
  204. this.labelEx6.Size = new System.Drawing.Size(56, 17);
  205. this.labelEx6.TabIndex = 72;
  206. this.labelEx6.Text = "应收款:";
  207. //
  208. // lblName1
  209. //
  210. this.lblName1.AutoSize = true;
  211. this.lblName1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  212. this.lblName1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  213. this.lblName1.Location = new System.Drawing.Point(241, 8);
  214. this.lblName1.Name = "lblName1";
  215. this.lblName1.Size = new System.Drawing.Size(68, 17);
  216. this.lblName1.TabIndex = 68;
  217. this.lblName1.Text = "客户姓名:";
  218. //
  219. // labelEx2
  220. //
  221. this.labelEx2.AutoSize = true;
  222. this.labelEx2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  223. this.labelEx2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  224. this.labelEx2.Location = new System.Drawing.Point(704, 8);
  225. this.labelEx2.Name = "labelEx2";
  226. this.labelEx2.Size = new System.Drawing.Size(56, 17);
  227. this.labelEx2.TabIndex = 74;
  228. this.labelEx2.Text = "已收款:";
  229. //
  230. // labelEx3
  231. //
  232. this.labelEx3.AutoSize = true;
  233. this.labelEx3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  234. this.labelEx3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  235. this.labelEx3.Location = new System.Drawing.Point(891, 8);
  236. this.labelEx3.Name = "labelEx3";
  237. this.labelEx3.Size = new System.Drawing.Size(44, 17);
  238. this.labelEx3.TabIndex = 76;
  239. this.labelEx3.Text = "欠款:";
  240. //
  241. // panelEx1
  242. //
  243. this.panelEx1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  244. this.panelEx1.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  245. this.panelEx1.BorderWidth = 1;
  246. this.panelEx1.Dock = System.Windows.Forms.DockStyle.Bottom;
  247. this.panelEx1.Location = new System.Drawing.Point(0, 35);
  248. this.panelEx1.Name = "panelEx1";
  249. this.panelEx1.Size = new System.Drawing.Size(995, 1);
  250. this.panelEx1.TabIndex = 199;
  251. //
  252. // txtOrd_Number
  253. //
  254. this.txtOrd_Number.BackColor = System.Drawing.Color.Transparent;
  255. this.txtOrd_Number.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  256. this.txtOrd_Number.Icon = null;
  257. this.txtOrd_Number.IconIsButton = false;
  258. this.txtOrd_Number.IsPasswordChat = '\0';
  259. this.txtOrd_Number.IsSystemPasswordChar = false;
  260. this.txtOrd_Number.Lines = new string[0];
  261. this.txtOrd_Number.Location = new System.Drawing.Point(55, 4);
  262. this.txtOrd_Number.Margin = new System.Windows.Forms.Padding(0);
  263. this.txtOrd_Number.MaxLength = 32767;
  264. this.txtOrd_Number.MinimumSize = new System.Drawing.Size(0, 24);
  265. this.txtOrd_Number.MouseBack = null;
  266. this.txtOrd_Number.Multiline = false;
  267. this.txtOrd_Number.Name = "txtOrd_Number";
  268. this.txtOrd_Number.NormlBack = null;
  269. this.txtOrd_Number.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  270. this.txtOrd_Number.ReadOnly = true;
  271. this.txtOrd_Number.ScrollBars = System.Windows.Forms.ScrollBars.None;
  272. this.txtOrd_Number.Size = new System.Drawing.Size(150, 25);
  273. this.txtOrd_Number.TabIndex = 2232;
  274. this.txtOrd_Number.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  275. this.txtOrd_Number.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  276. this.txtOrd_Number.WaterText = "";
  277. this.txtOrd_Number.WordWrap = true;
  278. //
  279. // txtOrd_CustomerName1
  280. //
  281. this.txtOrd_CustomerName1.BackColor = System.Drawing.Color.Transparent;
  282. this.txtOrd_CustomerName1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  283. this.txtOrd_CustomerName1.Icon = null;
  284. this.txtOrd_CustomerName1.IconIsButton = false;
  285. this.txtOrd_CustomerName1.IsPasswordChat = '\0';
  286. this.txtOrd_CustomerName1.IsSystemPasswordChar = false;
  287. this.txtOrd_CustomerName1.Lines = new string[0];
  288. this.txtOrd_CustomerName1.Location = new System.Drawing.Point(302, 4);
  289. this.txtOrd_CustomerName1.Margin = new System.Windows.Forms.Padding(0);
  290. this.txtOrd_CustomerName1.MaxLength = 32767;
  291. this.txtOrd_CustomerName1.MinimumSize = new System.Drawing.Size(0, 24);
  292. this.txtOrd_CustomerName1.MouseBack = null;
  293. this.txtOrd_CustomerName1.Multiline = false;
  294. this.txtOrd_CustomerName1.Name = "txtOrd_CustomerName1";
  295. this.txtOrd_CustomerName1.NormlBack = null;
  296. this.txtOrd_CustomerName1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  297. this.txtOrd_CustomerName1.ReadOnly = true;
  298. this.txtOrd_CustomerName1.ScrollBars = System.Windows.Forms.ScrollBars.None;
  299. this.txtOrd_CustomerName1.Size = new System.Drawing.Size(170, 25);
  300. this.txtOrd_CustomerName1.TabIndex = 2233;
  301. this.txtOrd_CustomerName1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  302. this.txtOrd_CustomerName1.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  303. this.txtOrd_CustomerName1.WaterText = "";
  304. this.txtOrd_CustomerName1.WordWrap = true;
  305. //
  306. // txtCope
  307. //
  308. this.txtCope.BackColor = System.Drawing.Color.Transparent;
  309. this.txtCope.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  310. this.txtCope.Icon = null;
  311. this.txtCope.IconIsButton = false;
  312. this.txtCope.IsPasswordChat = '\0';
  313. this.txtCope.IsSystemPasswordChar = false;
  314. this.txtCope.Lines = new string[0];
  315. this.txtCope.Location = new System.Drawing.Point(561, 4);
  316. this.txtCope.Margin = new System.Windows.Forms.Padding(0);
  317. this.txtCope.MaxLength = 32767;
  318. this.txtCope.MinimumSize = new System.Drawing.Size(0, 24);
  319. this.txtCope.MouseBack = null;
  320. this.txtCope.Multiline = false;
  321. this.txtCope.Name = "txtCope";
  322. this.txtCope.NormlBack = null;
  323. this.txtCope.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  324. this.txtCope.ReadOnly = true;
  325. this.txtCope.ScrollBars = System.Windows.Forms.ScrollBars.None;
  326. this.txtCope.Size = new System.Drawing.Size(100, 25);
  327. this.txtCope.TabIndex = 2234;
  328. this.txtCope.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  329. this.txtCope.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  330. this.txtCope.WaterText = "";
  331. this.txtCope.WordWrap = true;
  332. //
  333. // txtPaid
  334. //
  335. this.txtPaid.BackColor = System.Drawing.Color.Transparent;
  336. this.txtPaid.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  337. this.txtPaid.Icon = null;
  338. this.txtPaid.IconIsButton = false;
  339. this.txtPaid.IsPasswordChat = '\0';
  340. this.txtPaid.IsSystemPasswordChar = false;
  341. this.txtPaid.Lines = new string[0];
  342. this.txtPaid.Location = new System.Drawing.Point(753, 4);
  343. this.txtPaid.Margin = new System.Windows.Forms.Padding(0);
  344. this.txtPaid.MaxLength = 32767;
  345. this.txtPaid.MinimumSize = new System.Drawing.Size(0, 24);
  346. this.txtPaid.MouseBack = null;
  347. this.txtPaid.Multiline = false;
  348. this.txtPaid.Name = "txtPaid";
  349. this.txtPaid.NormlBack = null;
  350. this.txtPaid.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  351. this.txtPaid.ReadOnly = true;
  352. this.txtPaid.ScrollBars = System.Windows.Forms.ScrollBars.None;
  353. this.txtPaid.Size = new System.Drawing.Size(100, 25);
  354. this.txtPaid.TabIndex = 2235;
  355. this.txtPaid.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  356. this.txtPaid.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  357. this.txtPaid.WaterText = "";
  358. this.txtPaid.WordWrap = true;
  359. //
  360. // txtArrears
  361. //
  362. this.txtArrears.BackColor = System.Drawing.Color.Transparent;
  363. this.txtArrears.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  364. this.txtArrears.Icon = null;
  365. this.txtArrears.IconIsButton = false;
  366. this.txtArrears.IsPasswordChat = '\0';
  367. this.txtArrears.IsSystemPasswordChar = false;
  368. this.txtArrears.Lines = new string[0];
  369. this.txtArrears.Location = new System.Drawing.Point(928, 4);
  370. this.txtArrears.Margin = new System.Windows.Forms.Padding(0);
  371. this.txtArrears.MaxLength = 32767;
  372. this.txtArrears.MinimumSize = new System.Drawing.Size(0, 24);
  373. this.txtArrears.MouseBack = null;
  374. this.txtArrears.Multiline = false;
  375. this.txtArrears.Name = "txtArrears";
  376. this.txtArrears.NormlBack = null;
  377. this.txtArrears.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  378. this.txtArrears.ReadOnly = true;
  379. this.txtArrears.ScrollBars = System.Windows.Forms.ScrollBars.None;
  380. this.txtArrears.Size = new System.Drawing.Size(100, 25);
  381. this.txtArrears.TabIndex = 2236;
  382. this.txtArrears.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  383. this.txtArrears.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  384. this.txtArrears.WaterText = "";
  385. this.txtArrears.WordWrap = true;
  386. //
  387. // panelEx2
  388. //
  389. this.panelEx2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  390. this.panelEx2.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  391. this.panelEx2.BorderWidth = 1;
  392. this.panelEx2.Controls.Add(this.panelEx15);
  393. this.panelEx2.Controls.Add(this.panelEx14);
  394. this.panelEx2.Dock = System.Windows.Forms.DockStyle.Fill;
  395. this.panelEx2.Location = new System.Drawing.Point(5, 5);
  396. this.panelEx2.Name = "panelEx2";
  397. this.panelEx2.Padding = new System.Windows.Forms.Padding(2);
  398. this.panelEx2.Size = new System.Drawing.Size(999, 659);
  399. this.panelEx2.TabIndex = 2;
  400. //
  401. // panelEx15
  402. //
  403. this.panelEx15.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  404. this.panelEx15.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  405. this.panelEx15.BorderWidth = 1;
  406. this.panelEx15.Controls.Add(this.panelEx13);
  407. this.panelEx15.Controls.Add(this.panelEx12);
  408. this.panelEx15.Controls.Add(this.panelEx6);
  409. this.panelEx15.Dock = System.Windows.Forms.DockStyle.Fill;
  410. this.panelEx15.Location = new System.Drawing.Point(2, 38);
  411. this.panelEx15.Name = "panelEx15";
  412. this.panelEx15.Size = new System.Drawing.Size(995, 619);
  413. this.panelEx15.TabIndex = 2241;
  414. //
  415. // panelEx13
  416. //
  417. this.panelEx13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  418. this.panelEx13.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  419. this.panelEx13.BorderWidth = 1;
  420. this.panelEx13.Controls.Add(this.dgv2);
  421. this.panelEx13.Controls.Add(this.panelEx17);
  422. this.panelEx13.Dock = System.Windows.Forms.DockStyle.Fill;
  423. this.panelEx13.Location = new System.Drawing.Point(0, 243);
  424. this.panelEx13.Name = "panelEx13";
  425. this.panelEx13.Padding = new System.Windows.Forms.Padding(3, 8, 3, 3);
  426. this.panelEx13.Size = new System.Drawing.Size(660, 376);
  427. this.panelEx13.TabIndex = 2242;
  428. //
  429. // dgv2
  430. //
  431. this.dgv2.AllowUserToAddRows = false;
  432. this.dgv2.AllowUserToDeleteRows = false;
  433. this.dgv2.AllowUserToResizeRows = false;
  434. dataGridViewCellStyle1.BackColor = System.Drawing.Color.LightCyan;
  435. this.dgv2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  436. this.dgv2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  437. this.dgv2.BackgroundColor = System.Drawing.Color.White;
  438. this.dgv2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  439. this.dgv2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  440. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  441. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
  442. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  443. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Navy;
  444. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  445. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  446. this.dgv2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  447. this.dgv2.ColumnHeadersHeight = 24;
  448. this.dgv2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  449. this.dgv2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  450. this.ID,
  451. this.Pay_ShootingName,
  452. this.Pay_AmountOf,
  453. this.Pay_CreateDatetime,
  454. this.Pay_OpenSingle,
  455. this.Pay_ThePayee,
  456. this.Pay_PaymentMethod,
  457. this.Pay_Category,
  458. this.Pay_ReceivableProject,
  459. this.Pay_TwoPinsCategory,
  460. this.PaymentDiscount,
  461. this.DiscountAmount,
  462. this.Pay_Remark});
  463. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  464. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
  465. dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  466. dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
  467. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  468. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  469. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  470. this.dgv2.DefaultCellStyle = dataGridViewCellStyle3;
  471. this.dgv2.Dock = System.Windows.Forms.DockStyle.Fill;
  472. this.dgv2.EnableHeadersVisualStyles = false;
  473. this.dgv2.EraseCell = false;
  474. this.dgv2.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
  475. this.dgv2.GridViewUniquelyIdentify = resources.GetString("dgv2.GridViewUniquelyIdentify");
  476. this.dgv2.IsCompleteBonding = false;
  477. this.dgv2.IsCopyCellValue = true;
  478. this.dgv2.Location = new System.Drawing.Point(3, 43);
  479. this.dgv2.Name = "dgv2";
  480. this.dgv2.ReadOnly = true;
  481. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  482. dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
  483. dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  484. dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
  485. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  486. dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  487. dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  488. this.dgv2.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
  489. this.dgv2.RowHeadersVisible = false;
  490. this.dgv2.RowTemplate.Height = 23;
  491. this.dgv2.RowTemplate.ReadOnly = true;
  492. this.dgv2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  493. this.dgv2.ShowCellToolTips = false;
  494. this.dgv2.Size = new System.Drawing.Size(654, 330);
  495. this.dgv2.TabIndex = 127;
  496. //
  497. // ID
  498. //
  499. this.ID.DataPropertyName = "ID";
  500. this.ID.HeaderText = "编号";
  501. this.ID.Name = "ID";
  502. this.ID.ReadOnly = true;
  503. this.ID.Visible = false;
  504. this.ID.Width = 53;
  505. //
  506. // Pay_ShootingName
  507. //
  508. this.Pay_ShootingName.DataPropertyName = "Pay_ShootingName";
  509. this.Pay_ShootingName.HeaderText = "拍摄次数";
  510. this.Pay_ShootingName.Name = "Pay_ShootingName";
  511. this.Pay_ShootingName.ReadOnly = true;
  512. this.Pay_ShootingName.Width = 77;
  513. //
  514. // Pay_AmountOf
  515. //
  516. this.Pay_AmountOf.DataPropertyName = "Pay_AmountOf";
  517. this.Pay_AmountOf.HeaderText = "金额";
  518. this.Pay_AmountOf.Name = "Pay_AmountOf";
  519. this.Pay_AmountOf.ReadOnly = true;
  520. this.Pay_AmountOf.Width = 53;
  521. //
  522. // Pay_CreateDatetime
  523. //
  524. this.Pay_CreateDatetime.DataPropertyName = "Pay_CreateDatetime";
  525. this.Pay_CreateDatetime.HeaderText = "日期";
  526. this.Pay_CreateDatetime.Name = "Pay_CreateDatetime";
  527. this.Pay_CreateDatetime.ReadOnly = true;
  528. this.Pay_CreateDatetime.Width = 53;
  529. //
  530. // Pay_OpenSingle
  531. //
  532. this.Pay_OpenSingle.DataPropertyName = "Pay_UserName";
  533. this.Pay_OpenSingle.HeaderText = "接单人";
  534. this.Pay_OpenSingle.Name = "Pay_OpenSingle";
  535. this.Pay_OpenSingle.ReadOnly = true;
  536. this.Pay_OpenSingle.Width = 65;
  537. //
  538. // Pay_ThePayee
  539. //
  540. this.Pay_ThePayee.DataPropertyName = "Pay_ThePayeeName";
  541. this.Pay_ThePayee.HeaderText = "收款人";
  542. this.Pay_ThePayee.Name = "Pay_ThePayee";
  543. this.Pay_ThePayee.ReadOnly = true;
  544. this.Pay_ThePayee.Width = 65;
  545. //
  546. // Pay_PaymentMethod
  547. //
  548. this.Pay_PaymentMethod.DataPropertyName = "Pay_PaymentMethodName";
  549. this.Pay_PaymentMethod.HeaderText = "付款方式";
  550. this.Pay_PaymentMethod.Name = "Pay_PaymentMethod";
  551. this.Pay_PaymentMethod.ReadOnly = true;
  552. this.Pay_PaymentMethod.Width = 77;
  553. //
  554. // Pay_Category
  555. //
  556. this.Pay_Category.DataPropertyName = "Pay_Category";
  557. this.Pay_Category.HeaderText = "收款类别";
  558. this.Pay_Category.Name = "Pay_Category";
  559. this.Pay_Category.ReadOnly = true;
  560. this.Pay_Category.Width = 77;
  561. //
  562. // Pay_ReceivableProject
  563. //
  564. this.Pay_ReceivableProject.DataPropertyName = "Pay_ReceivableProject";
  565. this.Pay_ReceivableProject.HeaderText = "收款项目";
  566. this.Pay_ReceivableProject.Name = "Pay_ReceivableProject";
  567. this.Pay_ReceivableProject.ReadOnly = true;
  568. this.Pay_ReceivableProject.Width = 77;
  569. //
  570. // Pay_TwoPinsCategory
  571. //
  572. this.Pay_TwoPinsCategory.DataPropertyName = "Pay_TwoPinsCategoryName";
  573. this.Pay_TwoPinsCategory.HeaderText = "二销类别";
  574. this.Pay_TwoPinsCategory.Name = "Pay_TwoPinsCategory";
  575. this.Pay_TwoPinsCategory.ReadOnly = true;
  576. this.Pay_TwoPinsCategory.Width = 77;
  577. //
  578. // PaymentDiscount
  579. //
  580. this.PaymentDiscount.HeaderText = "会员折扣";
  581. this.PaymentDiscount.Name = "PaymentDiscount";
  582. this.PaymentDiscount.ReadOnly = true;
  583. this.PaymentDiscount.Width = 77;
  584. //
  585. // DiscountAmount
  586. //
  587. this.DiscountAmount.HeaderText = "优惠金额";
  588. this.DiscountAmount.Name = "DiscountAmount";
  589. this.DiscountAmount.ReadOnly = true;
  590. this.DiscountAmount.Width = 77;
  591. //
  592. // Pay_Remark
  593. //
  594. this.Pay_Remark.DataPropertyName = "Pay_Remark";
  595. this.Pay_Remark.HeaderText = "备注";
  596. this.Pay_Remark.Name = "Pay_Remark";
  597. this.Pay_Remark.ReadOnly = true;
  598. this.Pay_Remark.Width = 53;
  599. //
  600. // panelEx17
  601. //
  602. this.panelEx17.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  603. this.panelEx17.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  604. this.panelEx17.BorderWidth = 1;
  605. this.panelEx17.Controls.Add(this.labelEx12);
  606. this.panelEx17.Controls.Add(this.btndeleteSK);
  607. this.panelEx17.Dock = System.Windows.Forms.DockStyle.Top;
  608. this.panelEx17.Location = new System.Drawing.Point(3, 8);
  609. this.panelEx17.Name = "panelEx17";
  610. this.panelEx17.Size = new System.Drawing.Size(654, 35);
  611. this.panelEx17.TabIndex = 306;
  612. //
  613. // labelEx12
  614. //
  615. this.labelEx12.AutoSize = true;
  616. this.labelEx12.BackColor = System.Drawing.Color.Transparent;
  617. this.labelEx12.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  618. this.labelEx12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(75)))), ((int)(((byte)(103)))));
  619. this.labelEx12.Location = new System.Drawing.Point(0, 7);
  620. this.labelEx12.Name = "labelEx12";
  621. this.labelEx12.Size = new System.Drawing.Size(56, 17);
  622. this.labelEx12.TabIndex = 126;
  623. this.labelEx12.Text = "全部收款";
  624. //
  625. // btndeleteSK
  626. //
  627. this.btndeleteSK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  628. this.btndeleteSK.BackColor = System.Drawing.Color.Transparent;
  629. this.btndeleteSK.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btndeleteSK.BackImg")));
  630. this.btndeleteSK.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  631. this.btndeleteSK.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  632. this.btndeleteSK.ForeColor = System.Drawing.Color.White;
  633. this.btndeleteSK.IsCustomBackImg = false;
  634. this.btndeleteSK.IsShowText = true;
  635. this.btndeleteSK.Location = new System.Drawing.Point(568, 5);
  636. this.btndeleteSK.Name = "btndeleteSK";
  637. this.btndeleteSK.Size = new System.Drawing.Size(85, 26);
  638. this.btndeleteSK.TabIndex = 305;
  639. this.btndeleteSK.Text = " 删 除";
  640. this.btndeleteSK.UseVisualStyleBackColor = false;
  641. //
  642. // panelEx12
  643. //
  644. this.panelEx12.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  645. this.panelEx12.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  646. this.panelEx12.BorderWidth = 1;
  647. this.panelEx12.Controls.Add(this.dgvData1);
  648. this.panelEx12.Controls.Add(this.panelEx16);
  649. this.panelEx12.Dock = System.Windows.Forms.DockStyle.Top;
  650. this.panelEx12.Location = new System.Drawing.Point(0, 0);
  651. this.panelEx12.Name = "panelEx12";
  652. this.panelEx12.Padding = new System.Windows.Forms.Padding(3);
  653. this.panelEx12.Size = new System.Drawing.Size(660, 243);
  654. this.panelEx12.TabIndex = 2241;
  655. //
  656. // dgvData1
  657. //
  658. this.dgvData1.AllowUserToAddRows = false;
  659. this.dgvData1.AllowUserToDeleteRows = false;
  660. this.dgvData1.AllowUserToResizeRows = false;
  661. this.dgvData1.BackgroundColor = System.Drawing.Color.White;
  662. this.dgvData1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  663. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  664. dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(108)))), ((int)(((byte)(150)))));
  665. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  666. dataGridViewCellStyle5.ForeColor = System.Drawing.Color.White;
  667. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  668. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  669. this.dgvData1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5;
  670. this.dgvData1.ColumnHeadersHeight = 24;
  671. this.dgvData1.dgvColumnHeadersHeight = 24;
  672. this.dgvData1.dgvCurrentColumnOriginalSet = "";
  673. this.dgvData1.dgvCurrentColumnWidth = "";
  674. this.dgvData1.dgvCurrentHideColumn = null;
  675. this.dgvData1.dgvFixedHideColumn = null;
  676. this.dgvData1.dgvGuidName = null;
  677. this.dgvData1.dgvUserEmployeeID = null;
  678. this.dgvData1.Dock = System.Windows.Forms.DockStyle.Fill;
  679. this.dgvData1.EnableHeadersVisualStyles = false;
  680. this.dgvData1.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
  681. this.dgvData1.ImageHeight = 15;
  682. this.dgvData1.ImageWidth = 15;
  683. this.dgvData1.ImgCollapse = ((System.Drawing.Image)(resources.GetObject("dgvData1.ImgCollapse")));
  684. this.dgvData1.ImgExpand = ((System.Drawing.Image)(resources.GetObject("dgvData1.ImgExpand")));
  685. this.dgvData1.IsAutomaticDrawSingleOrDoubleRow = false;
  686. this.dgvData1.IsCompleteBonding = false;
  687. this.dgvData1.IsCopyCellValue = true;
  688. this.dgvData1.IsShowSerialNumber = false;
  689. this.dgvData1.IsSortedRedraw = true;
  690. this.dgvData1.IsSortMode = false;
  691. this.dgvData1.Location = new System.Drawing.Point(3, 38);
  692. this.dgvData1.Name = "dgvData1";
  693. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  694. dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
  695. dataGridViewCellStyle6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  696. dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
  697. dataGridViewCellStyle6.Padding = new System.Windows.Forms.Padding(41);
  698. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  699. dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  700. dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  701. this.dgvData1.RowHeadersDefaultCellStyle = dataGridViewCellStyle6;
  702. this.dgvData1.RowHeadersVisible = false;
  703. this.dgvData1.RowHeadersWidth = 25;
  704. this.dgvData1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  705. this.dgvData1.RowTemplate.Height = 23;
  706. this.dgvData1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  707. this.dgvData1.Size = new System.Drawing.Size(654, 202);
  708. this.dgvData1.StrSecondStageNull = "";
  709. this.dgvData1.StrValueNullColumn = "";
  710. this.dgvData1.TabIndex = 308;
  711. this.dgvData1.ViceCount = 1;
  712. //
  713. // panelEx16
  714. //
  715. this.panelEx16.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  716. this.panelEx16.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  717. this.panelEx16.BorderWidth = 1;
  718. this.panelEx16.Controls.Add(this.btndelectCP);
  719. this.panelEx16.Controls.Add(this.labelEx4);
  720. this.panelEx16.Dock = System.Windows.Forms.DockStyle.Top;
  721. this.panelEx16.Location = new System.Drawing.Point(3, 3);
  722. this.panelEx16.Name = "panelEx16";
  723. this.panelEx16.Size = new System.Drawing.Size(654, 35);
  724. this.panelEx16.TabIndex = 308;
  725. //
  726. // btndelectCP
  727. //
  728. this.btndelectCP.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  729. this.btndelectCP.BackColor = System.Drawing.Color.Transparent;
  730. this.btndelectCP.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btndelectCP.BackImg")));
  731. this.btndelectCP.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  732. this.btndelectCP.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  733. this.btndelectCP.ForeColor = System.Drawing.Color.White;
  734. this.btndelectCP.IsCustomBackImg = false;
  735. this.btndelectCP.IsShowText = true;
  736. this.btndelectCP.Location = new System.Drawing.Point(568, 5);
  737. this.btndelectCP.Name = "btndelectCP";
  738. this.btndelectCP.Size = new System.Drawing.Size(85, 26);
  739. this.btndelectCP.TabIndex = 309;
  740. this.btndelectCP.Text = " 删 除";
  741. this.btndelectCP.UseVisualStyleBackColor = false;
  742. //
  743. // labelEx4
  744. //
  745. this.labelEx4.AutoSize = true;
  746. this.labelEx4.BackColor = System.Drawing.Color.Transparent;
  747. this.labelEx4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  748. this.labelEx4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(75)))), ((int)(((byte)(103)))));
  749. this.labelEx4.Location = new System.Drawing.Point(0, 7);
  750. this.labelEx4.Name = "labelEx4";
  751. this.labelEx4.Size = new System.Drawing.Size(80, 17);
  752. this.labelEx4.TabIndex = 308;
  753. this.labelEx4.Text = "全部加挑物品";
  754. //
  755. // panelEx6
  756. //
  757. this.panelEx6.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  758. this.panelEx6.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  759. this.panelEx6.BorderWidth = 1;
  760. this.panelEx6.Controls.Add(this.btnSave);
  761. this.panelEx6.Controls.Add(this.btnPrint);
  762. this.panelEx6.Controls.Add(this.btnUpdateTime2);
  763. this.panelEx6.Controls.Add(this.txtPlusPickTime);
  764. this.panelEx6.Controls.Add(this.panelEx11);
  765. this.panelEx6.Controls.Add(this.cmbPay_TwoPinsCategory);
  766. this.panelEx6.Controls.Add(this.txtPay_OpenSingle);
  767. this.panelEx6.Controls.Add(this.txtPlusPickItems);
  768. this.panelEx6.Controls.Add(this.txtLessInventory);
  769. this.panelEx6.Controls.Add(this.txtRecordedSinglePerson);
  770. this.panelEx6.Controls.Add(this.txtPlusPickAmount);
  771. this.panelEx6.Controls.Add(this.labelEx26);
  772. this.panelEx6.Controls.Add(this.btnSelect2);
  773. this.panelEx6.Controls.Add(this.btnSet2);
  774. this.panelEx6.Controls.Add(this.labelEx25);
  775. this.panelEx6.Controls.Add(this.flowLayoutPanel1);
  776. this.panelEx6.Controls.Add(this.labelEx5);
  777. this.panelEx6.Controls.Add(this.btnSelect);
  778. this.panelEx6.Controls.Add(this.labelEx9);
  779. this.panelEx6.Controls.Add(this.btnSaveCP);
  780. this.panelEx6.Controls.Add(this.labelEx11);
  781. this.panelEx6.Controls.Add(this.labelEx8);
  782. this.panelEx6.Controls.Add(this.labelEx7);
  783. this.panelEx6.Controls.Add(this.labelEx10);
  784. this.panelEx6.Controls.Add(this.labelEx23);
  785. this.panelEx6.Dock = System.Windows.Forms.DockStyle.Right;
  786. this.panelEx6.Location = new System.Drawing.Point(660, 0);
  787. this.panelEx6.Name = "panelEx6";
  788. this.panelEx6.Size = new System.Drawing.Size(335, 619);
  789. this.panelEx6.TabIndex = 2240;
  790. //
  791. // btnSave
  792. //
  793. this.btnSave.BackColor = System.Drawing.Color.Transparent;
  794. this.btnSave.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSave.BackImg")));
  795. this.btnSave.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  796. this.btnSave.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  797. this.btnSave.ForeColor = System.Drawing.Color.White;
  798. this.btnSave.IsCustomBackImg = false;
  799. this.btnSave.IsShowText = true;
  800. this.btnSave.Location = new System.Drawing.Point(86, 580);
  801. this.btnSave.Name = "btnSave";
  802. this.btnSave.Size = new System.Drawing.Size(90, 26);
  803. this.btnSave.TabIndex = 2247;
  804. this.btnSave.Text = " 保 存";
  805. this.btnSave.UseVisualStyleBackColor = false;
  806. //
  807. // btnPrint
  808. //
  809. this.btnPrint.BackColor = System.Drawing.Color.Transparent;
  810. this.btnPrint.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnPrint.BackImg")));
  811. this.btnPrint.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  812. this.btnPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  813. this.btnPrint.ForeColor = System.Drawing.Color.White;
  814. this.btnPrint.IsCustomBackImg = false;
  815. this.btnPrint.IsShowText = true;
  816. this.btnPrint.Location = new System.Drawing.Point(231, 580);
  817. this.btnPrint.Name = "btnPrint";
  818. this.btnPrint.Size = new System.Drawing.Size(90, 26);
  819. this.btnPrint.TabIndex = 2248;
  820. this.btnPrint.Text = " 打印单据";
  821. this.btnPrint.UseVisualStyleBackColor = false;
  822. //
  823. // btnUpdateTime2
  824. //
  825. this.btnUpdateTime2.BackColor = System.Drawing.Color.Transparent;
  826. this.btnUpdateTime2.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnUpdateTime2.BackImg")));
  827. this.btnUpdateTime2.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  828. this.btnUpdateTime2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  829. this.btnUpdateTime2.ForeColor = System.Drawing.Color.White;
  830. this.btnUpdateTime2.IsCustomBackImg = false;
  831. this.btnUpdateTime2.IsShowText = true;
  832. this.btnUpdateTime2.Location = new System.Drawing.Point(271, 47);
  833. this.btnUpdateTime2.Name = "btnUpdateTime2";
  834. this.btnUpdateTime2.Size = new System.Drawing.Size(50, 22);
  835. this.btnUpdateTime2.TabIndex = 2264;
  836. this.btnUpdateTime2.Text = " 更改";
  837. this.btnUpdateTime2.UseVisualStyleBackColor = false;
  838. //
  839. // txtPlusPickTime
  840. //
  841. this.txtPlusPickTime.CustomFormat = " ";
  842. this.txtPlusPickTime.DateValue = "";
  843. this.txtPlusPickTime.Enabled = false;
  844. this.txtPlusPickTime.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  845. this.txtPlusPickTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  846. this.txtPlusPickTime.IsShowTime = false;
  847. this.txtPlusPickTime.Location = new System.Drawing.Point(86, 47);
  848. this.txtPlusPickTime.Name = "txtPlusPickTime";
  849. this.txtPlusPickTime.Size = new System.Drawing.Size(183, 23);
  850. this.txtPlusPickTime.TabIndex = 2262;
  851. //
  852. // panelEx11
  853. //
  854. this.panelEx11.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  855. this.panelEx11.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  856. this.panelEx11.BorderWidth = 1;
  857. this.panelEx11.Controls.Add(this.cmbtreevStage);
  858. this.panelEx11.Controls.Add(this.labelEx24);
  859. this.panelEx11.Location = new System.Drawing.Point(9, 187);
  860. this.panelEx11.Margin = new System.Windows.Forms.Padding(2);
  861. this.panelEx11.Name = "panelEx11";
  862. this.panelEx11.Size = new System.Drawing.Size(315, 25);
  863. this.panelEx11.TabIndex = 2249;
  864. //
  865. // cmbtreevStage
  866. //
  867. this.cmbtreevStage.AfterSelectLevelFirstNode = true;
  868. this.cmbtreevStage.DropDownHeight = 220;
  869. this.cmbtreevStage.DropDownShow = false;
  870. this.cmbtreevStage.FormattingEnabled = true;
  871. this.cmbtreevStage.IntegralHeight = false;
  872. this.cmbtreevStage.IsNodeMouseClick = true;
  873. this.cmbtreevStage.IsSelectParentNode = false;
  874. this.cmbtreevStage.Location = new System.Drawing.Point(76, 2);
  875. this.cmbtreevStage.Name = "cmbtreevStage";
  876. this.cmbtreevStage.ReadOnly = true;
  877. this.cmbtreevStage.SelectedNode = null;
  878. this.cmbtreevStage.Size = new System.Drawing.Size(235, 20);
  879. this.cmbtreevStage.StrGetName = "";
  880. this.cmbtreevStage.StrGetTagName = "";
  881. this.cmbtreevStage.StrKey = null;
  882. this.cmbtreevStage.TabIndex = 222;
  883. //
  884. // labelEx24
  885. //
  886. this.labelEx24.AutoSize = true;
  887. this.labelEx24.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  888. this.labelEx24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  889. this.labelEx24.Location = new System.Drawing.Point(-2, 4);
  890. this.labelEx24.Name = "labelEx24";
  891. this.labelEx24.Size = new System.Drawing.Size(77, 17);
  892. this.labelEx24.TabIndex = 207;
  893. this.labelEx24.Text = "* 拍摄名称:";
  894. //
  895. // cmbPay_TwoPinsCategory
  896. //
  897. this.cmbPay_TwoPinsCategory.ArrowColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(66)))), ((int)(((byte)(80)))));
  898. this.cmbPay_TwoPinsCategory.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  899. this.cmbPay_TwoPinsCategory.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(168)))), ((int)(((byte)(168)))));
  900. this.cmbPay_TwoPinsCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  901. this.cmbPay_TwoPinsCategory.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  902. this.cmbPay_TwoPinsCategory.Font = new System.Drawing.Font("宋体", 10.5F);
  903. this.cmbPay_TwoPinsCategory.FormattingEnabled = true;
  904. this.cmbPay_TwoPinsCategory.IsCustomColor = false;
  905. this.cmbPay_TwoPinsCategory.Location = new System.Drawing.Point(85, 161);
  906. this.cmbPay_TwoPinsCategory.Name = "cmbPay_TwoPinsCategory";
  907. this.cmbPay_TwoPinsCategory.ReadOnly = false;
  908. this.cmbPay_TwoPinsCategory.Size = new System.Drawing.Size(182, 22);
  909. this.cmbPay_TwoPinsCategory.TabIndex = 2263;
  910. //
  911. // txtPay_OpenSingle
  912. //
  913. this.txtPay_OpenSingle.BackColor = System.Drawing.Color.Transparent;
  914. this.txtPay_OpenSingle.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  915. this.txtPay_OpenSingle.Icon = null;
  916. this.txtPay_OpenSingle.IconIsButton = false;
  917. this.txtPay_OpenSingle.IsPasswordChat = '\0';
  918. this.txtPay_OpenSingle.IsSystemPasswordChar = false;
  919. this.txtPay_OpenSingle.Lines = new string[0];
  920. this.txtPay_OpenSingle.Location = new System.Drawing.Point(85, 131);
  921. this.txtPay_OpenSingle.Margin = new System.Windows.Forms.Padding(0);
  922. this.txtPay_OpenSingle.MaxLength = 32767;
  923. this.txtPay_OpenSingle.MinimumSize = new System.Drawing.Size(0, 24);
  924. this.txtPay_OpenSingle.MouseBack = null;
  925. this.txtPay_OpenSingle.Multiline = false;
  926. this.txtPay_OpenSingle.Name = "txtPay_OpenSingle";
  927. this.txtPay_OpenSingle.NormlBack = null;
  928. this.txtPay_OpenSingle.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  929. this.txtPay_OpenSingle.ReadOnly = true;
  930. this.txtPay_OpenSingle.ScrollBars = System.Windows.Forms.ScrollBars.None;
  931. this.txtPay_OpenSingle.Size = new System.Drawing.Size(182, 25);
  932. this.txtPay_OpenSingle.TabIndex = 2260;
  933. this.txtPay_OpenSingle.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  934. this.txtPay_OpenSingle.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  935. this.txtPay_OpenSingle.WaterText = "";
  936. this.txtPay_OpenSingle.WordWrap = true;
  937. //
  938. // txtPlusPickItems
  939. //
  940. this.txtPlusPickItems.BackColor = System.Drawing.Color.Transparent;
  941. this.txtPlusPickItems.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  942. this.txtPlusPickItems.Icon = null;
  943. this.txtPlusPickItems.IconIsButton = false;
  944. this.txtPlusPickItems.IsPasswordChat = '\0';
  945. this.txtPlusPickItems.IsSystemPasswordChar = false;
  946. this.txtPlusPickItems.Lines = new string[0];
  947. this.txtPlusPickItems.Location = new System.Drawing.Point(85, 103);
  948. this.txtPlusPickItems.Margin = new System.Windows.Forms.Padding(0);
  949. this.txtPlusPickItems.MaxLength = 32767;
  950. this.txtPlusPickItems.MinimumSize = new System.Drawing.Size(0, 24);
  951. this.txtPlusPickItems.MouseBack = null;
  952. this.txtPlusPickItems.Multiline = false;
  953. this.txtPlusPickItems.Name = "txtPlusPickItems";
  954. this.txtPlusPickItems.NormlBack = null;
  955. this.txtPlusPickItems.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  956. this.txtPlusPickItems.ReadOnly = false;
  957. this.txtPlusPickItems.ScrollBars = System.Windows.Forms.ScrollBars.None;
  958. this.txtPlusPickItems.Size = new System.Drawing.Size(182, 25);
  959. this.txtPlusPickItems.TabIndex = 2257;
  960. this.txtPlusPickItems.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  961. this.txtPlusPickItems.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  962. this.txtPlusPickItems.WaterText = "";
  963. this.txtPlusPickItems.WordWrap = true;
  964. //
  965. // txtLessInventory
  966. //
  967. this.txtLessInventory.BackColor = System.Drawing.Color.Transparent;
  968. this.txtLessInventory.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  969. this.txtLessInventory.Icon = null;
  970. this.txtLessInventory.IconIsButton = false;
  971. this.txtLessInventory.IsPasswordChat = '\0';
  972. this.txtLessInventory.IsSystemPasswordChar = false;
  973. this.txtLessInventory.Lines = new string[0];
  974. this.txtLessInventory.Location = new System.Drawing.Point(85, 75);
  975. this.txtLessInventory.Margin = new System.Windows.Forms.Padding(0);
  976. this.txtLessInventory.MaxLength = 32767;
  977. this.txtLessInventory.MinimumSize = new System.Drawing.Size(0, 24);
  978. this.txtLessInventory.MouseBack = null;
  979. this.txtLessInventory.Multiline = false;
  980. this.txtLessInventory.Name = "txtLessInventory";
  981. this.txtLessInventory.NormlBack = null;
  982. this.txtLessInventory.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  983. this.txtLessInventory.ReadOnly = true;
  984. this.txtLessInventory.ScrollBars = System.Windows.Forms.ScrollBars.None;
  985. this.txtLessInventory.Size = new System.Drawing.Size(236, 25);
  986. this.txtLessInventory.TabIndex = 2261;
  987. this.txtLessInventory.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  988. this.txtLessInventory.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  989. this.txtLessInventory.WaterText = "";
  990. this.txtLessInventory.WordWrap = true;
  991. //
  992. // txtRecordedSinglePerson
  993. //
  994. this.txtRecordedSinglePerson.BackColor = System.Drawing.Color.Transparent;
  995. this.txtRecordedSinglePerson.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  996. this.txtRecordedSinglePerson.Icon = null;
  997. this.txtRecordedSinglePerson.IconIsButton = false;
  998. this.txtRecordedSinglePerson.IsPasswordChat = '\0';
  999. this.txtRecordedSinglePerson.IsSystemPasswordChar = false;
  1000. this.txtRecordedSinglePerson.Lines = new string[0];
  1001. this.txtRecordedSinglePerson.Location = new System.Drawing.Point(251, 19);
  1002. this.txtRecordedSinglePerson.Margin = new System.Windows.Forms.Padding(0);
  1003. this.txtRecordedSinglePerson.MaxLength = 32767;
  1004. this.txtRecordedSinglePerson.MinimumSize = new System.Drawing.Size(0, 24);
  1005. this.txtRecordedSinglePerson.MouseBack = null;
  1006. this.txtRecordedSinglePerson.Multiline = false;
  1007. this.txtRecordedSinglePerson.Name = "txtRecordedSinglePerson";
  1008. this.txtRecordedSinglePerson.NormlBack = null;
  1009. this.txtRecordedSinglePerson.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1010. this.txtRecordedSinglePerson.ReadOnly = true;
  1011. this.txtRecordedSinglePerson.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1012. this.txtRecordedSinglePerson.Size = new System.Drawing.Size(70, 25);
  1013. this.txtRecordedSinglePerson.TabIndex = 2259;
  1014. this.txtRecordedSinglePerson.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1015. this.txtRecordedSinglePerson.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1016. this.txtRecordedSinglePerson.WaterText = "";
  1017. this.txtRecordedSinglePerson.WordWrap = true;
  1018. //
  1019. // txtPlusPickAmount
  1020. //
  1021. this.txtPlusPickAmount.BackColor = System.Drawing.Color.Transparent;
  1022. this.txtPlusPickAmount.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1023. this.txtPlusPickAmount.Icon = null;
  1024. this.txtPlusPickAmount.IconIsButton = false;
  1025. this.txtPlusPickAmount.IsPasswordChat = '\0';
  1026. this.txtPlusPickAmount.IsSystemPasswordChar = false;
  1027. this.txtPlusPickAmount.Lines = new string[0];
  1028. this.txtPlusPickAmount.Location = new System.Drawing.Point(85, 19);
  1029. this.txtPlusPickAmount.Margin = new System.Windows.Forms.Padding(0);
  1030. this.txtPlusPickAmount.MaxLength = 32767;
  1031. this.txtPlusPickAmount.MinimumSize = new System.Drawing.Size(0, 24);
  1032. this.txtPlusPickAmount.MouseBack = null;
  1033. this.txtPlusPickAmount.Multiline = false;
  1034. this.txtPlusPickAmount.Name = "txtPlusPickAmount";
  1035. this.txtPlusPickAmount.NormlBack = null;
  1036. this.txtPlusPickAmount.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1037. this.txtPlusPickAmount.ReadOnly = false;
  1038. this.txtPlusPickAmount.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1039. this.txtPlusPickAmount.Size = new System.Drawing.Size(90, 25);
  1040. this.txtPlusPickAmount.TabIndex = 2258;
  1041. this.txtPlusPickAmount.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1042. this.txtPlusPickAmount.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1043. this.txtPlusPickAmount.WaterText = "";
  1044. this.txtPlusPickAmount.WordWrap = true;
  1045. //
  1046. // labelEx26
  1047. //
  1048. this.labelEx26.AutoSize = true;
  1049. this.labelEx26.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1050. this.labelEx26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1051. this.labelEx26.Location = new System.Drawing.Point(6, 164);
  1052. this.labelEx26.Name = "labelEx26";
  1053. this.labelEx26.Size = new System.Drawing.Size(77, 17);
  1054. this.labelEx26.TabIndex = 2254;
  1055. this.labelEx26.Text = "* 二销类别:";
  1056. //
  1057. // btnSelect2
  1058. //
  1059. this.btnSelect2.BackColor = System.Drawing.Color.Transparent;
  1060. this.btnSelect2.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSelect2.BackImg")));
  1061. this.btnSelect2.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1062. this.btnSelect2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1063. this.btnSelect2.ForeColor = System.Drawing.Color.White;
  1064. this.btnSelect2.IsCustomBackImg = false;
  1065. this.btnSelect2.IsShowText = true;
  1066. this.btnSelect2.Location = new System.Drawing.Point(271, 132);
  1067. this.btnSelect2.Name = "btnSelect2";
  1068. this.btnSelect2.Size = new System.Drawing.Size(50, 22);
  1069. this.btnSelect2.TabIndex = 2252;
  1070. this.btnSelect2.Text = " 选择";
  1071. this.btnSelect2.UseVisualStyleBackColor = false;
  1072. //
  1073. // btnSet2
  1074. //
  1075. this.btnSet2.BackColor = System.Drawing.Color.Transparent;
  1076. this.btnSet2.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSet2.BackImg")));
  1077. this.btnSet2.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1078. this.btnSet2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1079. this.btnSet2.ForeColor = System.Drawing.Color.White;
  1080. this.btnSet2.IsCustomBackImg = false;
  1081. this.btnSet2.IsShowText = true;
  1082. this.btnSet2.Location = new System.Drawing.Point(271, 161);
  1083. this.btnSet2.Name = "btnSet2";
  1084. this.btnSet2.Size = new System.Drawing.Size(50, 22);
  1085. this.btnSet2.TabIndex = 2253;
  1086. this.btnSet2.Text = " 设置";
  1087. this.btnSet2.UseVisualStyleBackColor = false;
  1088. //
  1089. // labelEx25
  1090. //
  1091. this.labelEx25.AutoSize = true;
  1092. this.labelEx25.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1093. this.labelEx25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1094. this.labelEx25.Location = new System.Drawing.Point(7, 135);
  1095. this.labelEx25.Name = "labelEx25";
  1096. this.labelEx25.Size = new System.Drawing.Size(77, 17);
  1097. this.labelEx25.TabIndex = 2256;
  1098. this.labelEx25.Text = "* 销售人员:";
  1099. //
  1100. // flowLayoutPanel1
  1101. //
  1102. this.flowLayoutPanel1.Controls.Add(this.panelStageName);
  1103. this.flowLayoutPanel1.Controls.Add(this.panelEx3);
  1104. this.flowLayoutPanel1.Controls.Add(this.panelEx4);
  1105. this.flowLayoutPanel1.Controls.Add(this.panelEx5);
  1106. this.flowLayoutPanel1.Controls.Add(this.panelEx7);
  1107. this.flowLayoutPanel1.Controls.Add(this.panelEx8);
  1108. this.flowLayoutPanel1.Controls.Add(this.panelEx9);
  1109. this.flowLayoutPanel1.Controls.Add(this.panelEx10);
  1110. this.flowLayoutPanel1.Controls.Add(this.panel1);
  1111. this.flowLayoutPanel1.Location = new System.Drawing.Point(7, 256);
  1112. this.flowLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
  1113. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  1114. this.flowLayoutPanel1.Size = new System.Drawing.Size(320, 326);
  1115. this.flowLayoutPanel1.TabIndex = 2255;
  1116. //
  1117. // panelStageName
  1118. //
  1119. this.panelStageName.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1120. this.panelStageName.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1121. this.panelStageName.BorderWidth = 1;
  1122. this.panelStageName.Controls.Add(this.txtStageName);
  1123. this.panelStageName.Controls.Add(this.labelEx1);
  1124. this.panelStageName.Location = new System.Drawing.Point(2, 2);
  1125. this.panelStageName.Margin = new System.Windows.Forms.Padding(2);
  1126. this.panelStageName.Name = "panelStageName";
  1127. this.panelStageName.Size = new System.Drawing.Size(315, 25);
  1128. this.panelStageName.TabIndex = 179;
  1129. //
  1130. // txtStageName
  1131. //
  1132. this.txtStageName.BackColor = System.Drawing.Color.Transparent;
  1133. this.txtStageName.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1134. this.txtStageName.Icon = null;
  1135. this.txtStageName.IconIsButton = false;
  1136. this.txtStageName.IsPasswordChat = '\0';
  1137. this.txtStageName.IsSystemPasswordChar = false;
  1138. this.txtStageName.Lines = new string[0];
  1139. this.txtStageName.Location = new System.Drawing.Point(76, 0);
  1140. this.txtStageName.Margin = new System.Windows.Forms.Padding(0);
  1141. this.txtStageName.MaxLength = 32767;
  1142. this.txtStageName.MinimumSize = new System.Drawing.Size(0, 24);
  1143. this.txtStageName.MouseBack = null;
  1144. this.txtStageName.Multiline = false;
  1145. this.txtStageName.Name = "txtStageName";
  1146. this.txtStageName.NormlBack = null;
  1147. this.txtStageName.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1148. this.txtStageName.ReadOnly = true;
  1149. this.txtStageName.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1150. this.txtStageName.Size = new System.Drawing.Size(236, 25);
  1151. this.txtStageName.TabIndex = 2240;
  1152. this.txtStageName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1153. this.txtStageName.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1154. this.txtStageName.WaterText = "";
  1155. this.txtStageName.WordWrap = true;
  1156. //
  1157. // labelEx1
  1158. //
  1159. this.labelEx1.AutoSize = true;
  1160. this.labelEx1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1161. this.labelEx1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1162. this.labelEx1.Location = new System.Drawing.Point(3, 4);
  1163. this.labelEx1.Name = "labelEx1";
  1164. this.labelEx1.Size = new System.Drawing.Size(77, 17);
  1165. this.labelEx1.TabIndex = 175;
  1166. this.labelEx1.Text = "* 拍摄名称:";
  1167. //
  1168. // panelEx3
  1169. //
  1170. this.panelEx3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1171. this.panelEx3.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1172. this.panelEx3.BorderWidth = 1;
  1173. this.panelEx3.Controls.Add(this.txtPay_ReceivableProject);
  1174. this.panelEx3.Controls.Add(this.labelEx17);
  1175. this.panelEx3.Location = new System.Drawing.Point(2, 31);
  1176. this.panelEx3.Margin = new System.Windows.Forms.Padding(2);
  1177. this.panelEx3.Name = "panelEx3";
  1178. this.panelEx3.Size = new System.Drawing.Size(315, 25);
  1179. this.panelEx3.TabIndex = 171;
  1180. //
  1181. // txtPay_ReceivableProject
  1182. //
  1183. this.txtPay_ReceivableProject.BackColor = System.Drawing.Color.Transparent;
  1184. this.txtPay_ReceivableProject.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1185. this.txtPay_ReceivableProject.Icon = null;
  1186. this.txtPay_ReceivableProject.IconIsButton = false;
  1187. this.txtPay_ReceivableProject.IsPasswordChat = '\0';
  1188. this.txtPay_ReceivableProject.IsSystemPasswordChar = false;
  1189. this.txtPay_ReceivableProject.Lines = new string[0];
  1190. this.txtPay_ReceivableProject.Location = new System.Drawing.Point(76, 0);
  1191. this.txtPay_ReceivableProject.Margin = new System.Windows.Forms.Padding(0);
  1192. this.txtPay_ReceivableProject.MaxLength = 32767;
  1193. this.txtPay_ReceivableProject.MinimumSize = new System.Drawing.Size(0, 24);
  1194. this.txtPay_ReceivableProject.MouseBack = null;
  1195. this.txtPay_ReceivableProject.Multiline = false;
  1196. this.txtPay_ReceivableProject.Name = "txtPay_ReceivableProject";
  1197. this.txtPay_ReceivableProject.NormlBack = null;
  1198. this.txtPay_ReceivableProject.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1199. this.txtPay_ReceivableProject.ReadOnly = true;
  1200. this.txtPay_ReceivableProject.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1201. this.txtPay_ReceivableProject.Size = new System.Drawing.Size(236, 25);
  1202. this.txtPay_ReceivableProject.TabIndex = 2239;
  1203. this.txtPay_ReceivableProject.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1204. this.txtPay_ReceivableProject.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1205. this.txtPay_ReceivableProject.WaterText = "";
  1206. this.txtPay_ReceivableProject.WordWrap = true;
  1207. //
  1208. // labelEx17
  1209. //
  1210. this.labelEx17.AutoSize = true;
  1211. this.labelEx17.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1212. this.labelEx17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1213. this.labelEx17.Location = new System.Drawing.Point(3, 4);
  1214. this.labelEx17.Name = "labelEx17";
  1215. this.labelEx17.Size = new System.Drawing.Size(77, 17);
  1216. this.labelEx17.TabIndex = 174;
  1217. this.labelEx17.Text = "* 收款项目:";
  1218. //
  1219. // panelEx4
  1220. //
  1221. this.panelEx4.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1222. this.panelEx4.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1223. this.panelEx4.BorderWidth = 1;
  1224. this.panelEx4.Controls.Add(this.txtPay_AmountOf);
  1225. this.panelEx4.Controls.Add(this.txtPay_ThePayee);
  1226. this.panelEx4.Controls.Add(this.labelEx20);
  1227. this.panelEx4.Controls.Add(this.labelEx16);
  1228. this.panelEx4.Location = new System.Drawing.Point(2, 60);
  1229. this.panelEx4.Margin = new System.Windows.Forms.Padding(2);
  1230. this.panelEx4.Name = "panelEx4";
  1231. this.panelEx4.Size = new System.Drawing.Size(315, 25);
  1232. this.panelEx4.TabIndex = 172;
  1233. //
  1234. // txtPay_AmountOf
  1235. //
  1236. this.txtPay_AmountOf.BackColor = System.Drawing.Color.Transparent;
  1237. this.txtPay_AmountOf.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1238. this.txtPay_AmountOf.Icon = null;
  1239. this.txtPay_AmountOf.IconIsButton = false;
  1240. this.txtPay_AmountOf.IsPasswordChat = '\0';
  1241. this.txtPay_AmountOf.IsSystemPasswordChar = false;
  1242. this.txtPay_AmountOf.Lines = new string[0];
  1243. this.txtPay_AmountOf.Location = new System.Drawing.Point(76, 0);
  1244. this.txtPay_AmountOf.Margin = new System.Windows.Forms.Padding(0);
  1245. this.txtPay_AmountOf.MaxLength = 32767;
  1246. this.txtPay_AmountOf.MinimumSize = new System.Drawing.Size(0, 24);
  1247. this.txtPay_AmountOf.MouseBack = null;
  1248. this.txtPay_AmountOf.Multiline = false;
  1249. this.txtPay_AmountOf.Name = "txtPay_AmountOf";
  1250. this.txtPay_AmountOf.NormlBack = null;
  1251. this.txtPay_AmountOf.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1252. this.txtPay_AmountOf.ReadOnly = false;
  1253. this.txtPay_AmountOf.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1254. this.txtPay_AmountOf.Size = new System.Drawing.Size(90, 25);
  1255. this.txtPay_AmountOf.TabIndex = 2237;
  1256. this.txtPay_AmountOf.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1257. this.txtPay_AmountOf.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1258. this.txtPay_AmountOf.WaterText = "";
  1259. this.txtPay_AmountOf.WordWrap = true;
  1260. //
  1261. // txtPay_ThePayee
  1262. //
  1263. this.txtPay_ThePayee.BackColor = System.Drawing.Color.Transparent;
  1264. this.txtPay_ThePayee.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1265. this.txtPay_ThePayee.Icon = null;
  1266. this.txtPay_ThePayee.IconIsButton = false;
  1267. this.txtPay_ThePayee.IsPasswordChat = '\0';
  1268. this.txtPay_ThePayee.IsSystemPasswordChar = false;
  1269. this.txtPay_ThePayee.Lines = new string[0];
  1270. this.txtPay_ThePayee.Location = new System.Drawing.Point(242, 0);
  1271. this.txtPay_ThePayee.Margin = new System.Windows.Forms.Padding(0);
  1272. this.txtPay_ThePayee.MaxLength = 32767;
  1273. this.txtPay_ThePayee.MinimumSize = new System.Drawing.Size(0, 24);
  1274. this.txtPay_ThePayee.MouseBack = null;
  1275. this.txtPay_ThePayee.Multiline = false;
  1276. this.txtPay_ThePayee.Name = "txtPay_ThePayee";
  1277. this.txtPay_ThePayee.NormlBack = null;
  1278. this.txtPay_ThePayee.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1279. this.txtPay_ThePayee.ReadOnly = true;
  1280. this.txtPay_ThePayee.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1281. this.txtPay_ThePayee.Size = new System.Drawing.Size(70, 25);
  1282. this.txtPay_ThePayee.TabIndex = 2238;
  1283. this.txtPay_ThePayee.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1284. this.txtPay_ThePayee.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1285. this.txtPay_ThePayee.WaterText = "";
  1286. this.txtPay_ThePayee.WordWrap = true;
  1287. //
  1288. // labelEx20
  1289. //
  1290. this.labelEx20.AutoSize = true;
  1291. this.labelEx20.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1292. this.labelEx20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1293. this.labelEx20.Location = new System.Drawing.Point(3, 4);
  1294. this.labelEx20.Name = "labelEx20";
  1295. this.labelEx20.Size = new System.Drawing.Size(77, 17);
  1296. this.labelEx20.TabIndex = 156;
  1297. this.labelEx20.Text = "* 收款金额:";
  1298. //
  1299. // labelEx16
  1300. //
  1301. this.labelEx16.AutoSize = true;
  1302. this.labelEx16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1303. this.labelEx16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1304. this.labelEx16.Location = new System.Drawing.Point(190, 4);
  1305. this.labelEx16.Name = "labelEx16";
  1306. this.labelEx16.Size = new System.Drawing.Size(56, 17);
  1307. this.labelEx16.TabIndex = 159;
  1308. this.labelEx16.Text = "收款人:";
  1309. //
  1310. // panelEx5
  1311. //
  1312. this.panelEx5.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1313. this.panelEx5.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1314. this.panelEx5.BorderWidth = 1;
  1315. this.panelEx5.Controls.Add(this.cmbPay_PaymentMethod);
  1316. this.panelEx5.Controls.Add(this.labelEx13);
  1317. this.panelEx5.Controls.Add(this.btnSet);
  1318. this.panelEx5.Location = new System.Drawing.Point(2, 89);
  1319. this.panelEx5.Margin = new System.Windows.Forms.Padding(2);
  1320. this.panelEx5.Name = "panelEx5";
  1321. this.panelEx5.Size = new System.Drawing.Size(315, 25);
  1322. this.panelEx5.TabIndex = 173;
  1323. //
  1324. // cmbPay_PaymentMethod
  1325. //
  1326. this.cmbPay_PaymentMethod.AfterSelectLevelFirstNode = true;
  1327. this.cmbPay_PaymentMethod.DropDownHeight = 220;
  1328. this.cmbPay_PaymentMethod.DropDownShow = false;
  1329. this.cmbPay_PaymentMethod.FormattingEnabled = true;
  1330. this.cmbPay_PaymentMethod.IntegralHeight = false;
  1331. this.cmbPay_PaymentMethod.IsNodeMouseClick = true;
  1332. this.cmbPay_PaymentMethod.IsSelectParentNode = false;
  1333. this.cmbPay_PaymentMethod.Location = new System.Drawing.Point(76, 2);
  1334. this.cmbPay_PaymentMethod.Name = "cmbPay_PaymentMethod";
  1335. this.cmbPay_PaymentMethod.ReadOnly = true;
  1336. this.cmbPay_PaymentMethod.SelectedNode = null;
  1337. this.cmbPay_PaymentMethod.Size = new System.Drawing.Size(182, 20);
  1338. this.cmbPay_PaymentMethod.StrGetName = "";
  1339. this.cmbPay_PaymentMethod.StrGetTagName = "";
  1340. this.cmbPay_PaymentMethod.StrKey = null;
  1341. this.cmbPay_PaymentMethod.TabIndex = 221;
  1342. //
  1343. // labelEx13
  1344. //
  1345. this.labelEx13.AutoSize = true;
  1346. this.labelEx13.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1347. this.labelEx13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1348. this.labelEx13.Location = new System.Drawing.Point(3, 4);
  1349. this.labelEx13.Name = "labelEx13";
  1350. this.labelEx13.Size = new System.Drawing.Size(77, 17);
  1351. this.labelEx13.TabIndex = 170;
  1352. this.labelEx13.Text = "* 支付方式:";
  1353. //
  1354. // btnSet
  1355. //
  1356. this.btnSet.BackColor = System.Drawing.Color.Transparent;
  1357. this.btnSet.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSet.BackImg")));
  1358. this.btnSet.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1359. this.btnSet.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1360. this.btnSet.ForeColor = System.Drawing.Color.White;
  1361. this.btnSet.IsCustomBackImg = false;
  1362. this.btnSet.IsShowText = true;
  1363. this.btnSet.Location = new System.Drawing.Point(262, 1);
  1364. this.btnSet.Name = "btnSet";
  1365. this.btnSet.Size = new System.Drawing.Size(50, 22);
  1366. this.btnSet.TabIndex = 191;
  1367. this.btnSet.Text = " 设置";
  1368. this.btnSet.UseVisualStyleBackColor = false;
  1369. //
  1370. // panelEx7
  1371. //
  1372. this.panelEx7.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1373. this.panelEx7.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1374. this.panelEx7.BorderWidth = 1;
  1375. this.panelEx7.Controls.Add(this.txtPay_CreateDatetime);
  1376. this.panelEx7.Controls.Add(this.labelEx14);
  1377. this.panelEx7.Controls.Add(this.btnUpdateTime);
  1378. this.panelEx7.Location = new System.Drawing.Point(2, 118);
  1379. this.panelEx7.Margin = new System.Windows.Forms.Padding(2);
  1380. this.panelEx7.Name = "panelEx7";
  1381. this.panelEx7.Size = new System.Drawing.Size(315, 25);
  1382. this.panelEx7.TabIndex = 175;
  1383. //
  1384. // txtPay_CreateDatetime
  1385. //
  1386. this.txtPay_CreateDatetime.CustomFormat = " ";
  1387. this.txtPay_CreateDatetime.DateValue = "";
  1388. this.txtPay_CreateDatetime.Enabled = false;
  1389. this.txtPay_CreateDatetime.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1390. this.txtPay_CreateDatetime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  1391. this.txtPay_CreateDatetime.IsShowTime = false;
  1392. this.txtPay_CreateDatetime.Location = new System.Drawing.Point(76, 1);
  1393. this.txtPay_CreateDatetime.Name = "txtPay_CreateDatetime";
  1394. this.txtPay_CreateDatetime.Size = new System.Drawing.Size(183, 23);
  1395. this.txtPay_CreateDatetime.TabIndex = 303;
  1396. //
  1397. // labelEx14
  1398. //
  1399. this.labelEx14.AutoSize = true;
  1400. this.labelEx14.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1401. this.labelEx14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1402. this.labelEx14.Location = new System.Drawing.Point(3, 4);
  1403. this.labelEx14.Name = "labelEx14";
  1404. this.labelEx14.Size = new System.Drawing.Size(77, 17);
  1405. this.labelEx14.TabIndex = 161;
  1406. this.labelEx14.Text = "* 收款时间:";
  1407. //
  1408. // btnUpdateTime
  1409. //
  1410. this.btnUpdateTime.BackColor = System.Drawing.Color.Transparent;
  1411. this.btnUpdateTime.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnUpdateTime.BackImg")));
  1412. this.btnUpdateTime.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1413. this.btnUpdateTime.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1414. this.btnUpdateTime.ForeColor = System.Drawing.Color.White;
  1415. this.btnUpdateTime.IsCustomBackImg = false;
  1416. this.btnUpdateTime.IsShowText = true;
  1417. this.btnUpdateTime.Location = new System.Drawing.Point(262, 1);
  1418. this.btnUpdateTime.Name = "btnUpdateTime";
  1419. this.btnUpdateTime.Size = new System.Drawing.Size(50, 22);
  1420. this.btnUpdateTime.TabIndex = 193;
  1421. this.btnUpdateTime.Text = " 更改";
  1422. this.btnUpdateTime.UseVisualStyleBackColor = false;
  1423. //
  1424. // panelEx8
  1425. //
  1426. this.panelEx8.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1427. this.panelEx8.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1428. this.panelEx8.BorderWidth = 1;
  1429. this.panelEx8.Controls.Add(this.txtSecondPin);
  1430. this.panelEx8.Controls.Add(this.labelEx18);
  1431. this.panelEx8.Location = new System.Drawing.Point(2, 147);
  1432. this.panelEx8.Margin = new System.Windows.Forms.Padding(2);
  1433. this.panelEx8.Name = "panelEx8";
  1434. this.panelEx8.Size = new System.Drawing.Size(315, 25);
  1435. this.panelEx8.TabIndex = 176;
  1436. //
  1437. // txtSecondPin
  1438. //
  1439. this.txtSecondPin.BackColor = System.Drawing.Color.Transparent;
  1440. this.txtSecondPin.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1441. this.txtSecondPin.Icon = null;
  1442. this.txtSecondPin.IconIsButton = false;
  1443. this.txtSecondPin.IsPasswordChat = '\0';
  1444. this.txtSecondPin.IsSystemPasswordChar = false;
  1445. this.txtSecondPin.Lines = new string[0];
  1446. this.txtSecondPin.Location = new System.Drawing.Point(76, 0);
  1447. this.txtSecondPin.Margin = new System.Windows.Forms.Padding(0);
  1448. this.txtSecondPin.MaxLength = 32767;
  1449. this.txtSecondPin.MinimumSize = new System.Drawing.Size(0, 24);
  1450. this.txtSecondPin.MouseBack = null;
  1451. this.txtSecondPin.Multiline = false;
  1452. this.txtSecondPin.Name = "txtSecondPin";
  1453. this.txtSecondPin.NormlBack = null;
  1454. this.txtSecondPin.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1455. this.txtSecondPin.ReadOnly = true;
  1456. this.txtSecondPin.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1457. this.txtSecondPin.Size = new System.Drawing.Size(236, 25);
  1458. this.txtSecondPin.TabIndex = 2240;
  1459. this.txtSecondPin.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1460. this.txtSecondPin.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1461. this.txtSecondPin.WaterText = "";
  1462. this.txtSecondPin.WordWrap = true;
  1463. //
  1464. // labelEx18
  1465. //
  1466. this.labelEx18.AutoSize = true;
  1467. this.labelEx18.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1468. this.labelEx18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1469. this.labelEx18.Location = new System.Drawing.Point(3, 4);
  1470. this.labelEx18.Name = "labelEx18";
  1471. this.labelEx18.Size = new System.Drawing.Size(77, 17);
  1472. this.labelEx18.TabIndex = 175;
  1473. this.labelEx18.Text = "* 二销类别:";
  1474. //
  1475. // panelEx9
  1476. //
  1477. this.panelEx9.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1478. this.panelEx9.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1479. this.panelEx9.BorderWidth = 1;
  1480. this.panelEx9.Controls.Add(this.txtPay_Category);
  1481. this.panelEx9.Controls.Add(this.txtSalesperson);
  1482. this.panelEx9.Controls.Add(this.labelEx22);
  1483. this.panelEx9.Controls.Add(this.labelEx21);
  1484. this.panelEx9.Location = new System.Drawing.Point(2, 176);
  1485. this.panelEx9.Margin = new System.Windows.Forms.Padding(2);
  1486. this.panelEx9.Name = "panelEx9";
  1487. this.panelEx9.Size = new System.Drawing.Size(315, 25);
  1488. this.panelEx9.TabIndex = 177;
  1489. //
  1490. // txtPay_Category
  1491. //
  1492. this.txtPay_Category.BackColor = System.Drawing.Color.Transparent;
  1493. this.txtPay_Category.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1494. this.txtPay_Category.Icon = null;
  1495. this.txtPay_Category.IconIsButton = false;
  1496. this.txtPay_Category.IsPasswordChat = '\0';
  1497. this.txtPay_Category.IsSystemPasswordChar = false;
  1498. this.txtPay_Category.Lines = new string[0];
  1499. this.txtPay_Category.Location = new System.Drawing.Point(242, 0);
  1500. this.txtPay_Category.Margin = new System.Windows.Forms.Padding(0);
  1501. this.txtPay_Category.MaxLength = 32767;
  1502. this.txtPay_Category.MinimumSize = new System.Drawing.Size(0, 24);
  1503. this.txtPay_Category.MouseBack = null;
  1504. this.txtPay_Category.Multiline = false;
  1505. this.txtPay_Category.Name = "txtPay_Category";
  1506. this.txtPay_Category.NormlBack = null;
  1507. this.txtPay_Category.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1508. this.txtPay_Category.ReadOnly = true;
  1509. this.txtPay_Category.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1510. this.txtPay_Category.Size = new System.Drawing.Size(70, 25);
  1511. this.txtPay_Category.TabIndex = 2237;
  1512. this.txtPay_Category.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1513. this.txtPay_Category.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1514. this.txtPay_Category.WaterText = "";
  1515. this.txtPay_Category.WordWrap = true;
  1516. //
  1517. // txtSalesperson
  1518. //
  1519. this.txtSalesperson.BackColor = System.Drawing.Color.Transparent;
  1520. this.txtSalesperson.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1521. this.txtSalesperson.Icon = null;
  1522. this.txtSalesperson.IconIsButton = false;
  1523. this.txtSalesperson.IsPasswordChat = '\0';
  1524. this.txtSalesperson.IsSystemPasswordChar = false;
  1525. this.txtSalesperson.Lines = new string[0];
  1526. this.txtSalesperson.Location = new System.Drawing.Point(76, 0);
  1527. this.txtSalesperson.Margin = new System.Windows.Forms.Padding(0);
  1528. this.txtSalesperson.MaxLength = 32767;
  1529. this.txtSalesperson.MinimumSize = new System.Drawing.Size(0, 24);
  1530. this.txtSalesperson.MouseBack = null;
  1531. this.txtSalesperson.Multiline = false;
  1532. this.txtSalesperson.Name = "txtSalesperson";
  1533. this.txtSalesperson.NormlBack = null;
  1534. this.txtSalesperson.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1535. this.txtSalesperson.ReadOnly = true;
  1536. this.txtSalesperson.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1537. this.txtSalesperson.Size = new System.Drawing.Size(90, 25);
  1538. this.txtSalesperson.TabIndex = 2236;
  1539. this.txtSalesperson.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1540. this.txtSalesperson.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1541. this.txtSalesperson.WaterText = "";
  1542. this.txtSalesperson.WordWrap = true;
  1543. //
  1544. // labelEx22
  1545. //
  1546. this.labelEx22.AutoSize = true;
  1547. this.labelEx22.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1548. this.labelEx22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1549. this.labelEx22.Location = new System.Drawing.Point(4, 4);
  1550. this.labelEx22.Name = "labelEx22";
  1551. this.labelEx22.Size = new System.Drawing.Size(77, 17);
  1552. this.labelEx22.TabIndex = 157;
  1553. this.labelEx22.Text = "* 销售人员:";
  1554. //
  1555. // labelEx21
  1556. //
  1557. this.labelEx21.AutoSize = true;
  1558. this.labelEx21.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1559. this.labelEx21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1560. this.labelEx21.Location = new System.Drawing.Point(178, 4);
  1561. this.labelEx21.Name = "labelEx21";
  1562. this.labelEx21.Size = new System.Drawing.Size(68, 17);
  1563. this.labelEx21.TabIndex = 165;
  1564. this.labelEx21.Text = "收款类别:";
  1565. //
  1566. // panelEx10
  1567. //
  1568. this.panelEx10.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1569. this.panelEx10.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1570. this.panelEx10.BorderWidth = 1;
  1571. this.panelEx10.Controls.Add(this.txtPay_Remark);
  1572. this.panelEx10.Controls.Add(this.labelEx15);
  1573. this.panelEx10.Location = new System.Drawing.Point(2, 205);
  1574. this.panelEx10.Margin = new System.Windows.Forms.Padding(2);
  1575. this.panelEx10.Name = "panelEx10";
  1576. this.panelEx10.Size = new System.Drawing.Size(315, 24);
  1577. this.panelEx10.TabIndex = 178;
  1578. //
  1579. // txtPay_Remark
  1580. //
  1581. this.txtPay_Remark.BackColor = System.Drawing.Color.Transparent;
  1582. this.txtPay_Remark.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  1583. this.txtPay_Remark.Icon = null;
  1584. this.txtPay_Remark.IconIsButton = false;
  1585. this.txtPay_Remark.IsPasswordChat = '\0';
  1586. this.txtPay_Remark.IsSystemPasswordChar = false;
  1587. this.txtPay_Remark.Lines = new string[0];
  1588. this.txtPay_Remark.Location = new System.Drawing.Point(76, 0);
  1589. this.txtPay_Remark.Margin = new System.Windows.Forms.Padding(0);
  1590. this.txtPay_Remark.MaxLength = 32767;
  1591. this.txtPay_Remark.MinimumSize = new System.Drawing.Size(0, 24);
  1592. this.txtPay_Remark.MouseBack = null;
  1593. this.txtPay_Remark.Multiline = false;
  1594. this.txtPay_Remark.Name = "txtPay_Remark";
  1595. this.txtPay_Remark.NormlBack = null;
  1596. this.txtPay_Remark.Padding = new System.Windows.Forms.Padding(4, 5, 4, 4);
  1597. this.txtPay_Remark.ReadOnly = false;
  1598. this.txtPay_Remark.ScrollBars = System.Windows.Forms.ScrollBars.None;
  1599. this.txtPay_Remark.Size = new System.Drawing.Size(236, 24);
  1600. this.txtPay_Remark.TabIndex = 2238;
  1601. this.txtPay_Remark.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  1602. this.txtPay_Remark.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
  1603. this.txtPay_Remark.WaterText = "";
  1604. this.txtPay_Remark.WordWrap = true;
  1605. //
  1606. // labelEx15
  1607. //
  1608. this.labelEx15.AutoSize = true;
  1609. this.labelEx15.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1610. this.labelEx15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1611. this.labelEx15.Location = new System.Drawing.Point(36, 4);
  1612. this.labelEx15.Name = "labelEx15";
  1613. this.labelEx15.Size = new System.Drawing.Size(44, 17);
  1614. this.labelEx15.TabIndex = 169;
  1615. this.labelEx15.Text = "备注:";
  1616. //
  1617. // panel1
  1618. //
  1619. this.panel1.Controls.Add(this.btnDelPerformance);
  1620. this.panel1.Controls.Add(this.btnPerformance);
  1621. this.panel1.Controls.Add(this.listBoxPerformance);
  1622. this.panel1.Controls.Add(this.labelEx27);
  1623. this.panel1.Location = new System.Drawing.Point(3, 234);
  1624. this.panel1.Name = "panel1";
  1625. this.panel1.Size = new System.Drawing.Size(314, 88);
  1626. this.panel1.TabIndex = 2268;
  1627. //
  1628. // btnDelPerformance
  1629. //
  1630. this.btnDelPerformance.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1631. this.btnDelPerformance.BackColor = System.Drawing.Color.Transparent;
  1632. this.btnDelPerformance.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnDelPerformance.BackImg")));
  1633. this.btnDelPerformance.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1634. this.btnDelPerformance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1635. this.btnDelPerformance.ForeColor = System.Drawing.Color.White;
  1636. this.btnDelPerformance.IsCustomBackImg = false;
  1637. this.btnDelPerformance.IsShowText = true;
  1638. this.btnDelPerformance.Location = new System.Drawing.Point(261, 2);
  1639. this.btnDelPerformance.Name = "btnDelPerformance";
  1640. this.btnDelPerformance.Size = new System.Drawing.Size(49, 22);
  1641. this.btnDelPerformance.TabIndex = 2265;
  1642. this.btnDelPerformance.Text = "清除";
  1643. this.btnDelPerformance.UseVisualStyleBackColor = false;
  1644. //
  1645. // btnPerformance
  1646. //
  1647. this.btnPerformance.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1648. this.btnPerformance.BackColor = System.Drawing.Color.Transparent;
  1649. this.btnPerformance.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnPerformance.BackImg")));
  1650. this.btnPerformance.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1651. this.btnPerformance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1652. this.btnPerformance.ForeColor = System.Drawing.Color.White;
  1653. this.btnPerformance.IsCustomBackImg = false;
  1654. this.btnPerformance.IsShowText = true;
  1655. this.btnPerformance.Location = new System.Drawing.Point(76, 2);
  1656. this.btnPerformance.Name = "btnPerformance";
  1657. this.btnPerformance.Size = new System.Drawing.Size(182, 22);
  1658. this.btnPerformance.TabIndex = 2266;
  1659. this.btnPerformance.Text = "自定义分配本次业绩";
  1660. this.btnPerformance.UseVisualStyleBackColor = false;
  1661. //
  1662. // listBoxPerformance
  1663. //
  1664. this.listBoxPerformance.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1665. this.listBoxPerformance.FormattingEnabled = true;
  1666. this.listBoxPerformance.HorizontalScrollbar = true;
  1667. this.listBoxPerformance.ItemHeight = 17;
  1668. this.listBoxPerformance.Location = new System.Drawing.Point(76, 27);
  1669. this.listBoxPerformance.Name = "listBoxPerformance";
  1670. this.listBoxPerformance.Size = new System.Drawing.Size(236, 55);
  1671. this.listBoxPerformance.TabIndex = 2267;
  1672. //
  1673. // labelEx27
  1674. //
  1675. this.labelEx27.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1676. this.labelEx27.AutoSize = true;
  1677. this.labelEx27.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1678. this.labelEx27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1679. this.labelEx27.Location = new System.Drawing.Point(6, 28);
  1680. this.labelEx27.Name = "labelEx27";
  1681. this.labelEx27.Size = new System.Drawing.Size(68, 17);
  1682. this.labelEx27.TabIndex = 2265;
  1683. this.labelEx27.Text = "业绩列表:";
  1684. //
  1685. // labelEx5
  1686. //
  1687. this.labelEx5.AutoSize = true;
  1688. this.labelEx5.BackColor = System.Drawing.Color.Transparent;
  1689. this.labelEx5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  1690. this.labelEx5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(75)))), ((int)(((byte)(103)))));
  1691. this.labelEx5.Location = new System.Drawing.Point(11, 4);
  1692. this.labelEx5.Name = "labelEx5";
  1693. this.labelEx5.Size = new System.Drawing.Size(56, 17);
  1694. this.labelEx5.TabIndex = 2240;
  1695. this.labelEx5.Text = "加挑详情";
  1696. //
  1697. // btnSelect
  1698. //
  1699. this.btnSelect.BackColor = System.Drawing.Color.Transparent;
  1700. this.btnSelect.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSelect.BackImg")));
  1701. this.btnSelect.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1702. this.btnSelect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1703. this.btnSelect.ForeColor = System.Drawing.Color.White;
  1704. this.btnSelect.IsCustomBackImg = false;
  1705. this.btnSelect.IsShowText = true;
  1706. this.btnSelect.Location = new System.Drawing.Point(271, 104);
  1707. this.btnSelect.Name = "btnSelect";
  1708. this.btnSelect.Size = new System.Drawing.Size(50, 22);
  1709. this.btnSelect.TabIndex = 2251;
  1710. this.btnSelect.Text = " 选择";
  1711. this.btnSelect.UseVisualStyleBackColor = false;
  1712. //
  1713. // labelEx9
  1714. //
  1715. this.labelEx9.AutoSize = true;
  1716. this.labelEx9.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1717. this.labelEx9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1718. this.labelEx9.Location = new System.Drawing.Point(6, 107);
  1719. this.labelEx9.Name = "labelEx9";
  1720. this.labelEx9.Size = new System.Drawing.Size(77, 17);
  1721. this.labelEx9.TabIndex = 2245;
  1722. this.labelEx9.Text = "* 加挑物品:";
  1723. //
  1724. // btnSaveCP
  1725. //
  1726. this.btnSaveCP.BackColor = System.Drawing.Color.Transparent;
  1727. this.btnSaveCP.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnSaveCP.BackImg")));
  1728. this.btnSaveCP.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  1729. this.btnSaveCP.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  1730. this.btnSaveCP.ForeColor = System.Drawing.Color.White;
  1731. this.btnSaveCP.IsCustomBackImg = false;
  1732. this.btnSaveCP.IsShowText = true;
  1733. this.btnSaveCP.Location = new System.Drawing.Point(241, 214);
  1734. this.btnSaveCP.Name = "btnSaveCP";
  1735. this.btnSaveCP.Size = new System.Drawing.Size(80, 26);
  1736. this.btnSaveCP.TabIndex = 2246;
  1737. this.btnSaveCP.Text = " 保 存";
  1738. this.btnSaveCP.UseVisualStyleBackColor = false;
  1739. //
  1740. // labelEx11
  1741. //
  1742. this.labelEx11.AutoSize = true;
  1743. this.labelEx11.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1744. this.labelEx11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1745. this.labelEx11.Location = new System.Drawing.Point(6, 23);
  1746. this.labelEx11.Name = "labelEx11";
  1747. this.labelEx11.Size = new System.Drawing.Size(77, 17);
  1748. this.labelEx11.TabIndex = 2241;
  1749. this.labelEx11.Text = "* 加挑金额:";
  1750. //
  1751. // labelEx8
  1752. //
  1753. this.labelEx8.AutoSize = true;
  1754. this.labelEx8.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1755. this.labelEx8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1756. this.labelEx8.Location = new System.Drawing.Point(27, 79);
  1757. this.labelEx8.Name = "labelEx8";
  1758. this.labelEx8.Size = new System.Drawing.Size(56, 17);
  1759. this.labelEx8.TabIndex = 2244;
  1760. this.labelEx8.Text = "减库存:";
  1761. //
  1762. // labelEx7
  1763. //
  1764. this.labelEx7.AutoSize = true;
  1765. this.labelEx7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1766. this.labelEx7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1767. this.labelEx7.Location = new System.Drawing.Point(15, 50);
  1768. this.labelEx7.Name = "labelEx7";
  1769. this.labelEx7.Size = new System.Drawing.Size(68, 17);
  1770. this.labelEx7.TabIndex = 2243;
  1771. this.labelEx7.Text = "加挑时间:";
  1772. //
  1773. // labelEx10
  1774. //
  1775. this.labelEx10.AutoSize = true;
  1776. this.labelEx10.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  1777. this.labelEx10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  1778. this.labelEx10.Location = new System.Drawing.Point(199, 23);
  1779. this.labelEx10.Name = "labelEx10";
  1780. this.labelEx10.Size = new System.Drawing.Size(56, 17);
  1781. this.labelEx10.TabIndex = 2242;
  1782. this.labelEx10.Text = "录单人:";
  1783. //
  1784. // labelEx23
  1785. //
  1786. this.labelEx23.AutoSize = true;
  1787. this.labelEx23.BackColor = System.Drawing.Color.Transparent;
  1788. this.labelEx23.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  1789. this.labelEx23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(75)))), ((int)(((byte)(103)))));
  1790. this.labelEx23.Location = new System.Drawing.Point(11, 236);
  1791. this.labelEx23.Name = "labelEx23";
  1792. this.labelEx23.Size = new System.Drawing.Size(176, 17);
  1793. this.labelEx23.TabIndex = 2250;
  1794. this.labelEx23.Text = "收款详情(选择一条加挑项目)";
  1795. //
  1796. // panelEx14
  1797. //
  1798. this.panelEx14.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  1799. this.panelEx14.BorderType = LYFZ.ComponentLibrary.PlBorderType.all;
  1800. this.panelEx14.BorderWidth = 1;
  1801. this.panelEx14.Controls.Add(this.txtArrears);
  1802. this.panelEx14.Controls.Add(this.txtPaid);
  1803. this.panelEx14.Controls.Add(this.txtOrd_Number);
  1804. this.panelEx14.Controls.Add(this.txtCope);
  1805. this.panelEx14.Controls.Add(this.panelEx1);
  1806. this.panelEx14.Controls.Add(this.txtOrd_CustomerName1);
  1807. this.panelEx14.Controls.Add(this.labelEx19);
  1808. this.panelEx14.Controls.Add(this.labelEx6);
  1809. this.panelEx14.Controls.Add(this.lblName1);
  1810. this.panelEx14.Controls.Add(this.labelEx2);
  1811. this.panelEx14.Controls.Add(this.labelEx3);
  1812. this.panelEx14.Dock = System.Windows.Forms.DockStyle.Top;
  1813. this.panelEx14.Location = new System.Drawing.Point(2, 2);
  1814. this.panelEx14.Name = "panelEx14";
  1815. this.panelEx14.Size = new System.Drawing.Size(995, 36);
  1816. this.panelEx14.TabIndex = 2240;
  1817. //
  1818. // FrmLatePayment
  1819. //
  1820. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1821. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1822. this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
  1823. this.ClientSize = new System.Drawing.Size(1009, 734);
  1824. this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
  1825. this.IsUserControlsSize = false;
  1826. this.MaximumSize = new System.Drawing.Size(1920, 1040);
  1827. this.Name = "FrmLatePayment";
  1828. this.Text = "后期收款";
  1829. this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
  1830. this.Controls.SetChildIndex(this.btnAppFormMaximize, 0);
  1831. this.Controls.SetChildIndex(this.btnAppFormExit, 0);
  1832. this.Controls.SetChildIndex(this.btnAppFormMinimize, 0);
  1833. this.Controls.SetChildIndex(this.btnAppFormMenu, 0);
  1834. this.Controls.SetChildIndex(this.btnAppFormSkin, 0);
  1835. this.Controls.SetChildIndex(this.plFormMainContent, 0);
  1836. this.plExMainContainer.ResumeLayout(false);
  1837. this.plFormMainContent.ResumeLayout(false);
  1838. this.panelEx2.ResumeLayout(false);
  1839. this.panelEx15.ResumeLayout(false);
  1840. this.panelEx13.ResumeLayout(false);
  1841. ((System.ComponentModel.ISupportInitialize)(this.dgv2)).EndInit();
  1842. this.panelEx17.ResumeLayout(false);
  1843. this.panelEx17.PerformLayout();
  1844. this.panelEx12.ResumeLayout(false);
  1845. ((System.ComponentModel.ISupportInitialize)(this.dgvData1)).EndInit();
  1846. this.panelEx16.ResumeLayout(false);
  1847. this.panelEx16.PerformLayout();
  1848. this.panelEx6.ResumeLayout(false);
  1849. this.panelEx6.PerformLayout();
  1850. this.panelEx11.ResumeLayout(false);
  1851. this.panelEx11.PerformLayout();
  1852. this.flowLayoutPanel1.ResumeLayout(false);
  1853. this.panelStageName.ResumeLayout(false);
  1854. this.panelStageName.PerformLayout();
  1855. this.panelEx3.ResumeLayout(false);
  1856. this.panelEx3.PerformLayout();
  1857. this.panelEx4.ResumeLayout(false);
  1858. this.panelEx4.PerformLayout();
  1859. this.panelEx5.ResumeLayout(false);
  1860. this.panelEx5.PerformLayout();
  1861. this.panelEx7.ResumeLayout(false);
  1862. this.panelEx7.PerformLayout();
  1863. this.panelEx8.ResumeLayout(false);
  1864. this.panelEx8.PerformLayout();
  1865. this.panelEx9.ResumeLayout(false);
  1866. this.panelEx9.PerformLayout();
  1867. this.panelEx10.ResumeLayout(false);
  1868. this.panelEx10.PerformLayout();
  1869. this.panel1.ResumeLayout(false);
  1870. this.panel1.PerformLayout();
  1871. this.panelEx14.ResumeLayout(false);
  1872. this.panelEx14.PerformLayout();
  1873. this.ResumeLayout(false);
  1874. }
  1875. #endregion
  1876. protected internal ComponentLibrary.PanelEx panelEx2;
  1877. protected internal ComponentLibrary.TextBoxEx txtArrears;
  1878. protected internal ComponentLibrary.TextBoxEx txtPaid;
  1879. protected internal ComponentLibrary.TextBoxEx txtCope;
  1880. protected internal ComponentLibrary.TextBoxEx txtOrd_CustomerName1;
  1881. protected internal ComponentLibrary.TextBoxEx txtOrd_Number;
  1882. private ComponentLibrary.PanelEx panelEx1;
  1883. private ComponentLibrary.LabelEx labelEx3;
  1884. private ComponentLibrary.LabelEx labelEx2;
  1885. protected ComponentLibrary.LabelEx lblName1;
  1886. private ComponentLibrary.LabelEx labelEx6;
  1887. private ComponentLibrary.LabelEx labelEx19;
  1888. private ComponentLibrary.PanelEx panelEx14;
  1889. private ComponentLibrary.PanelEx panelEx15;
  1890. private ComponentLibrary.PanelEx panelEx13;
  1891. protected ComponentLibrary.ButtonForm btndeleteSK;
  1892. private ComponentLibrary.LabelEx labelEx12;
  1893. public ComponentLibrary.DataGridViewEx dgv2;
  1894. private System.Windows.Forms.DataGridViewTextBoxColumn ID;
  1895. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_ShootingName;
  1896. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_AmountOf;
  1897. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_CreateDatetime;
  1898. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_OpenSingle;
  1899. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_ThePayee;
  1900. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_PaymentMethod;
  1901. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_Category;
  1902. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_ReceivableProject;
  1903. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_TwoPinsCategory;
  1904. private System.Windows.Forms.DataGridViewTextBoxColumn PaymentDiscount;
  1905. private System.Windows.Forms.DataGridViewTextBoxColumn DiscountAmount;
  1906. private System.Windows.Forms.DataGridViewTextBoxColumn Pay_Remark;
  1907. private ComponentLibrary.PanelEx panelEx12;
  1908. protected internal ComponentLibrary.DataGridViewEc dgvData1;
  1909. private ComponentLibrary.PanelEx panelEx16;
  1910. protected ComponentLibrary.ButtonForm btndelectCP;
  1911. private ComponentLibrary.LabelEx labelEx4;
  1912. private ComponentLibrary.PanelEx panelEx6;
  1913. protected ComponentLibrary.ButtonForm btnUpdateTime2;
  1914. protected ComponentLibrary.DateTimePickerEx txtPlusPickTime;
  1915. protected internal ComponentLibrary.PanelEx panelEx11;
  1916. protected internal ComponentLibrary.ComboBoxTreeViewEx cmbtreevStage;
  1917. private ComponentLibrary.LabelEx labelEx24;
  1918. protected ComponentLibrary.ComboBoxEx cmbPay_TwoPinsCategory;
  1919. protected internal ComponentLibrary.TextBoxEx txtPay_OpenSingle;
  1920. protected internal ComponentLibrary.TextBoxEx txtPlusPickItems;
  1921. protected internal ComponentLibrary.TextBoxEx txtLessInventory;
  1922. protected internal ComponentLibrary.TextBoxEx txtRecordedSinglePerson;
  1923. protected internal ComponentLibrary.TextBoxEx txtPlusPickAmount;
  1924. private ComponentLibrary.LabelEx labelEx26;
  1925. protected ComponentLibrary.ButtonForm btnSelect2;
  1926. protected ComponentLibrary.ButtonForm btnSet2;
  1927. private ComponentLibrary.LabelEx labelEx25;
  1928. private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  1929. protected internal ComponentLibrary.PanelEx panelStageName;
  1930. protected internal ComponentLibrary.TextBoxEx txtStageName;
  1931. private ComponentLibrary.LabelEx labelEx1;
  1932. private ComponentLibrary.PanelEx panelEx3;
  1933. protected internal ComponentLibrary.TextBoxEx txtPay_ReceivableProject;
  1934. private ComponentLibrary.LabelEx labelEx17;
  1935. private ComponentLibrary.PanelEx panelEx4;
  1936. protected internal ComponentLibrary.TextBoxEx txtPay_AmountOf;
  1937. protected internal ComponentLibrary.TextBoxEx txtPay_ThePayee;
  1938. private ComponentLibrary.LabelEx labelEx20;
  1939. private ComponentLibrary.LabelEx labelEx16;
  1940. private ComponentLibrary.PanelEx panelEx5;
  1941. protected ComponentLibrary.ComboBoxTreeViewEx cmbPay_PaymentMethod;
  1942. private ComponentLibrary.LabelEx labelEx13;
  1943. protected ComponentLibrary.ButtonForm btnSet;
  1944. private ComponentLibrary.PanelEx panelEx7;
  1945. protected ComponentLibrary.DateTimePickerEx txtPay_CreateDatetime;
  1946. private ComponentLibrary.LabelEx labelEx14;
  1947. protected ComponentLibrary.ButtonForm btnUpdateTime;
  1948. private ComponentLibrary.PanelEx panelEx8;
  1949. protected internal ComponentLibrary.TextBoxEx txtSecondPin;
  1950. private ComponentLibrary.LabelEx labelEx18;
  1951. private ComponentLibrary.PanelEx panelEx9;
  1952. protected internal ComponentLibrary.TextBoxEx txtPay_Category;
  1953. protected internal ComponentLibrary.TextBoxEx txtSalesperson;
  1954. private ComponentLibrary.LabelEx labelEx22;
  1955. private ComponentLibrary.LabelEx labelEx21;
  1956. private ComponentLibrary.PanelEx panelEx10;
  1957. protected internal ComponentLibrary.TextBoxEx txtPay_Remark;
  1958. private ComponentLibrary.LabelEx labelEx15;
  1959. private ComponentLibrary.LabelEx labelEx5;
  1960. protected ComponentLibrary.ButtonEx btnSave;
  1961. protected ComponentLibrary.ButtonEx btnPrint;
  1962. protected ComponentLibrary.ButtonForm btnSelect;
  1963. protected ComponentLibrary.LabelEx labelEx9;
  1964. protected ComponentLibrary.ButtonEx btnSaveCP;
  1965. private ComponentLibrary.LabelEx labelEx11;
  1966. protected ComponentLibrary.LabelEx labelEx8;
  1967. protected ComponentLibrary.LabelEx labelEx7;
  1968. protected ComponentLibrary.LabelEx labelEx10;
  1969. private ComponentLibrary.LabelEx labelEx23;
  1970. private ComponentLibrary.PanelEx panelEx17;
  1971. public ComponentLibrary.ListBoxEx listBoxPerformance;
  1972. public ComponentLibrary.ButtonForm btnPerformance;
  1973. private ComponentLibrary.LabelEx labelEx27;
  1974. public System.Windows.Forms.Panel panel1;
  1975. public ComponentLibrary.ButtonForm btnDelPerformance;
  1976. }
  1977. }