ClientConsume.cs
上传用户:kuorong
上传日期:2013-04-03
资源大小:240k
文件大小:21k
源码类别:

酒店行业

开发平台:

Java

  1. using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace 酒店管理系统 { public class ClientConsume : 医院管理系统.ParentForm { public static string RZid;//入住单编号
  2. private System.Data.SqlClient.SqlConnection sqlConnection1;
  3. private 酒店管理系统.DataSet2 dataSet21;
  4. private System.Windows.Forms.Label label4;
  5. private System.Windows.Forms.TextBox txt4;
  6. private System.Windows.Forms.TextBox txt5;
  7. private System.Windows.Forms.Label label5;
  8. private System.Windows.Forms.TextBox txt6;
  9. private System.Windows.Forms.Label label6;
  10. private System.Windows.Forms.Label label7;
  11. private System.Windows.Forms.Label label8;
  12. private System.Windows.Forms.ComboBox cmb1;
  13. private System.Windows.Forms.ComboBox cmb2;
  14. private System.Windows.Forms.Button btnSelect;
  15. private System.Windows.Forms.MonthCalendar calen1;
  16. private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
  17. private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
  18. private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
  19. private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;//保存从入住单中选择得到的客人入住单号 private System.ComponentModel.IContainer components = null; public ClientConsume() { // 该调用是 Windows 窗体设计器所必需的。 InitializeComponent(); // TODO: 在 InitializeComponent 调用后添加任何初始化 } /// <summary> /// 清理所有正在使用的资源。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null)  { components.Dispose(); } } base.Dispose( disposing ); } #region 设计器生成的代码 /// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(ClientConsume));
  20. this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
  21. this.dataSet21 = new 酒店管理系统.DataSet2();
  22. this.label4 = new System.Windows.Forms.Label();
  23. this.txt4 = new System.Windows.Forms.TextBox();
  24. this.txt5 = new System.Windows.Forms.TextBox();
  25. this.label5 = new System.Windows.Forms.Label();
  26. this.txt6 = new System.Windows.Forms.TextBox();
  27. this.label6 = new System.Windows.Forms.Label();
  28. this.label7 = new System.Windows.Forms.Label();
  29. this.label8 = new System.Windows.Forms.Label();
  30. this.cmb1 = new System.Windows.Forms.ComboBox();
  31. this.cmb2 = new System.Windows.Forms.ComboBox();
  32. this.btnSelect = new System.Windows.Forms.Button();
  33. this.calen1 = new System.Windows.Forms.MonthCalendar();
  34. this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
  35. this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
  36. this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
  37. this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
  38. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
  39. this.groupBox2.SuspendLayout();
  40. ((System.ComponentModel.ISupportInitialize)(this.dataSet21)).BeginInit();
  41. this.SuspendLayout();
  42. // 
  43. // groupBox1
  44. // 
  45. this.groupBox1.Name = "groupBox1";
  46. // 
  47. // txt2
  48. // 
  49. this.txt2.Name = "txt2";
  50. // 
  51. // label1
  52. // 
  53. this.label1.Name = "label1";
  54. this.label1.Text = "消费内容";
  55. // 
  56. // btnSearch
  57. // 
  58. this.btnSearch.Name = "btnSearch";
  59. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  60. // 
  61. // txt1
  62. // 
  63. this.txt1.Name = "txt1";
  64. // 
  65. // label2
  66. // 
  67. this.label2.Name = "label2";
  68. this.label2.Text = "入住单号";
  69. // 
  70. // txt3
  71. // 
  72. this.txt3.Name = "txt3";
  73. this.txt3.Visible = false;
  74. // 
  75. // label3
  76. // 
  77. this.label3.Name = "label3";
  78. this.label3.Visible = false;
  79. // 
  80. // toolBar1
  81. // 
  82. this.toolBar1.Name = "toolBar1";
  83. this.toolBar1.Size = new System.Drawing.Size(728, 41);
  84. // 
  85. // dataGrid1
  86. // 
  87. this.dataGrid1.DataMember = "帐单明细";
  88. this.dataGrid1.DataSource = this.dataSet21;
  89. this.dataGrid1.Name = "dataGrid1";
  90. this.dataGrid1.Size = new System.Drawing.Size(728, 240);
  91. // 
  92. // groupBox2
  93. // 
  94. this.groupBox2.Controls.Add(this.btnSelect);
  95. this.groupBox2.Controls.Add(this.cmb1);
  96. this.groupBox2.Controls.Add(this.txt4);
  97. this.groupBox2.Controls.Add(this.label4);
  98. this.groupBox2.Controls.Add(this.txt5);
  99. this.groupBox2.Controls.Add(this.label5);
  100. this.groupBox2.Controls.Add(this.txt6);
  101. this.groupBox2.Controls.Add(this.label6);
  102. this.groupBox2.Controls.Add(this.label7);
  103. this.groupBox2.Controls.Add(this.label8);
  104. this.groupBox2.Controls.Add(this.cmb2);
  105. this.groupBox2.Location = new System.Drawing.Point(0, 336);
  106. this.groupBox2.Name = "groupBox2";
  107. this.groupBox2.Size = new System.Drawing.Size(728, 160);
  108. // 
  109. // da1
  110. // 
  111. this.da1.DeleteCommand = this.sqlDeleteCommand1;
  112. this.da1.InsertCommand = this.sqlInsertCommand1;
  113. this.da1.SelectCommand = this.sqlSelectCommand1;
  114. this.da1.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
  115.   new System.Data.Common.DataTableMapping("Table", "帐单明细", new System.Data.Common.DataColumnMapping[] {
  116.   new System.Data.Common.DataColumnMapping("帐单编号", "帐单编号"),
  117.   new System.Data.Common.DataColumnMapping("入住单号", "入住单号"),
  118.   new System.Data.Common.DataColumnMapping("消费内容", "消费内容"),
  119.   new System.Data.Common.DataColumnMapping("消费金额", "消费金额"),
  120.   new System.Data.Common.DataColumnMapping("消费时间", "消费时间"),
  121.   new System.Data.Common.DataColumnMapping("备注", "备注")})});
  122. this.da1.UpdateCommand = this.sqlUpdateCommand1;
  123. // 
  124. // sqlConnection1
  125. // 
  126. this.sqlConnection1.ConnectionString = "workstation id=localhost;Integrated Security=SSPI;Database=hotelbook;";
  127. // 
  128. // dataSet21
  129. // 
  130. this.dataSet21.DataSetName = "DataSet2";
  131. this.dataSet21.Locale = new System.Globalization.CultureInfo("zh-CN");
  132. // 
  133. // label4
  134. // 
  135. this.label4.Location = new System.Drawing.Point(96, 16);
  136. this.label4.Name = "label4";
  137. this.label4.Size = new System.Drawing.Size(100, 16);
  138. this.label4.TabIndex = 0;
  139. this.label4.Text = "入住单号";
  140. // 
  141. // txt4
  142. // 
  143. this.txt4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet21, "帐单明细.入住单号"));
  144. this.txt4.Location = new System.Drawing.Point(96, 32);
  145. this.txt4.Name = "txt4";
  146. this.txt4.ReadOnly = true;
  147. this.txt4.Size = new System.Drawing.Size(176, 21);
  148. this.txt4.TabIndex = 1;
  149. this.txt4.Text = "";
  150. // 
  151. // txt5
  152. // 
  153. this.txt5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet21, "帐单明细.消费金额"));
  154. this.txt5.Location = new System.Drawing.Point(96, 80);
  155. this.txt5.Name = "txt5";
  156. this.txt5.ReadOnly = true;
  157. this.txt5.Size = new System.Drawing.Size(176, 21);
  158. this.txt5.TabIndex = 1;
  159. this.txt5.Text = "";
  160. // 
  161. // label5
  162. // 
  163. this.label5.Location = new System.Drawing.Point(96, 64);
  164. this.label5.Name = "label5";
  165. this.label5.Size = new System.Drawing.Size(100, 16);
  166. this.label5.TabIndex = 0;
  167. this.label5.Text = "消费金额";
  168. // 
  169. // txt6
  170. // 
  171. this.txt6.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet21, "帐单明细.备注"));
  172. this.txt6.Location = new System.Drawing.Point(96, 128);
  173. this.txt6.Name = "txt6";
  174. this.txt6.ReadOnly = true;
  175. this.txt6.Size = new System.Drawing.Size(464, 21);
  176. this.txt6.TabIndex = 1;
  177. this.txt6.Text = "";
  178. // 
  179. // label6
  180. // 
  181. this.label6.Location = new System.Drawing.Point(96, 112);
  182. this.label6.Name = "label6";
  183. this.label6.Size = new System.Drawing.Size(100, 16);
  184. this.label6.TabIndex = 0;
  185. this.label6.Text = "备注";
  186. // 
  187. // label7
  188. // 
  189. this.label7.Location = new System.Drawing.Point(352, 16);
  190. this.label7.Name = "label7";
  191. this.label7.Size = new System.Drawing.Size(100, 16);
  192. this.label7.TabIndex = 0;
  193. this.label7.Text = "消费时间";
  194. // 
  195. // label8
  196. // 
  197. this.label8.Location = new System.Drawing.Point(352, 64);
  198. this.label8.Name = "label8";
  199. this.label8.Size = new System.Drawing.Size(100, 16);
  200. this.label8.TabIndex = 0;
  201. this.label8.Text = "消费内容";
  202. // 
  203. // cmb1
  204. // 
  205. this.cmb1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet21, "帐单明细.消费时间"));
  206. this.cmb1.Enabled = false;
  207. this.cmb1.Location = new System.Drawing.Point(352, 32);
  208. this.cmb1.Name = "cmb1";
  209. this.cmb1.Size = new System.Drawing.Size(208, 20);
  210. this.cmb1.TabIndex = 2;
  211. this.cmb1.DropDown += new System.EventHandler(this.cmb1_DropDown);
  212. this.cmb1.Leave += new System.EventHandler(this.cmb1_Leave);
  213. // 
  214. // cmb2
  215. // 
  216. this.cmb2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.dataSet21, "帐单明细.消费内容"));
  217. this.cmb2.Enabled = false;
  218. this.cmb2.Items.AddRange(new object[] {
  219.   "加收房费",
  220.   "加收水电费",
  221.   "视频点播费",
  222.   "宽带上网费",
  223.   "商品使用费",
  224.   "其他费用"});
  225. this.cmb2.Location = new System.Drawing.Point(352, 80);
  226. this.cmb2.Name = "cmb2";
  227. this.cmb2.Size = new System.Drawing.Size(208, 20);
  228. this.cmb2.TabIndex = 2;
  229. // 
  230. // btnSelect
  231. // 
  232. this.btnSelect.Enabled = false;
  233. this.btnSelect.Image = ((System.Drawing.Image)(resources.GetObject("btnSelect.Image")));
  234. this.btnSelect.Location = new System.Drawing.Point(280, 32);
  235. this.btnSelect.Name = "btnSelect";
  236. this.btnSelect.Size = new System.Drawing.Size(24, 24);
  237. this.btnSelect.TabIndex = 73;
  238. this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
  239. this.btnSelect.MouseUp += new System.Windows.Forms.MouseEventHandler(this.btnSelect_MouseUp);
  240. // 
  241. // calen1
  242. // 
  243. this.calen1.Location = new System.Drawing.Point(432, 208);
  244. this.calen1.Name = "calen1";
  245. this.calen1.TabIndex = 131;
  246. this.calen1.Visible = false;
  247. this.calen1.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calen1_DateSelected);
  248. // 
  249. // sqlSelectCommand1
  250. // 
  251. this.sqlSelectCommand1.CommandText = "SELECT 帐单编号, 入住单号, 消费内容, 消费金额, 消费时间, 备注 FROM 帐单明细 WHERE (入住单号 LIKE @Param3) AND (" +
  252. "消费内容 LIKE @Param4 OR 消费内容 IS NULL)";
  253. this.sqlSelectCommand1.Connection = this.sqlConnection1;
  254. this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param3", System.Data.SqlDbType.VarChar, 36, "入住单号"));
  255. this.sqlSelectCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Param4", System.Data.SqlDbType.VarChar, 40, "消费内容"));
  256. // 
  257. // sqlInsertCommand1
  258. // 
  259. this.sqlInsertCommand1.CommandText = "INSERT INTO 帐单明细(入住单号, 消费内容, 消费金额, 消费时间, 备注) VALUES (@入住单号, @消费内容, @消费金额, @消费时间, " +
  260. "@备注); SELECT 帐单编号, 入住单号, 消费内容, 消费金额, 消费时间, 备注 FROM 帐单明细 WHERE (帐单编号 = @@IDENTITY" +
  261. ")";
  262. this.sqlInsertCommand1.Connection = this.sqlConnection1;
  263. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@入住单号", System.Data.SqlDbType.VarChar, 36, "入住单号"));
  264. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费内容", System.Data.SqlDbType.VarChar, 40, "消费内容"));
  265. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费金额", System.Data.SqlDbType.Money, 8, "消费金额"));
  266. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费时间", System.Data.SqlDbType.DateTime, 4, "消费时间"));
  267. this.sqlInsertCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@备注", System.Data.SqlDbType.VarChar, 80, "备注"));
  268. // 
  269. // sqlUpdateCommand1
  270. // 
  271. this.sqlUpdateCommand1.CommandText = @"UPDATE 帐单明细 SET 入住单号 = @入住单号, 消费内容 = @消费内容, 消费金额 = @消费金额, 消费时间 = @消费时间, 备注 = @备注 WHERE (帐单编号 = @Original_帐单编号) AND (入住单号 = @Original_入住单号) AND (备注 = @Original_备注 OR @Original_备注 IS NULL AND 备注 IS NULL) AND (消费内容 = @Original_消费内容 OR @Original_消费内容 IS NULL AND 消费内容 IS NULL) AND (消费时间 = @Original_消费时间 OR @Original_消费时间 IS NULL AND 消费时间 IS NULL) AND (消费金额 = @Original_消费金额 OR @Original_消费金额 IS NULL AND 消费金额 IS NULL); SELECT 帐单编号, 入住单号, 消费内容, 消费金额, 消费时间, 备注 FROM 帐单明细 WHERE (帐单编号 = @帐单编号)";
  272. this.sqlUpdateCommand1.Connection = this.sqlConnection1;
  273. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@入住单号", System.Data.SqlDbType.VarChar, 36, "入住单号"));
  274. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费内容", System.Data.SqlDbType.VarChar, 40, "消费内容"));
  275. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费金额", System.Data.SqlDbType.Money, 8, "消费金额"));
  276. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@消费时间", System.Data.SqlDbType.DateTime, 4, "消费时间"));
  277. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@备注", System.Data.SqlDbType.VarChar, 80, "备注"));
  278. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_帐单编号", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "帐单编号", System.Data.DataRowVersion.Original, null));
  279. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_入住单号", System.Data.SqlDbType.VarChar, 36, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "入住单号", System.Data.DataRowVersion.Original, null));
  280. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_备注", System.Data.SqlDbType.VarChar, 80, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "备注", System.Data.DataRowVersion.Original, null));
  281. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费内容", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费内容", System.Data.DataRowVersion.Original, null));
  282. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费时间", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费时间", System.Data.DataRowVersion.Original, null));
  283. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费金额", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费金额", System.Data.DataRowVersion.Original, null));
  284. this.sqlUpdateCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@帐单编号", System.Data.SqlDbType.Int, 4, "帐单编号"));
  285. // 
  286. // sqlDeleteCommand1
  287. // 
  288. this.sqlDeleteCommand1.CommandText = @"DELETE FROM 帐单明细 WHERE (帐单编号 = @Original_帐单编号) AND (入住单号 = @Original_入住单号) AND (备注 = @Original_备注 OR @Original_备注 IS NULL AND 备注 IS NULL) AND (消费内容 = @Original_消费内容 OR @Original_消费内容 IS NULL AND 消费内容 IS NULL) AND (消费时间 = @Original_消费时间 OR @Original_消费时间 IS NULL AND 消费时间 IS NULL) AND (消费金额 = @Original_消费金额 OR @Original_消费金额 IS NULL AND 消费金额 IS NULL)";
  289. this.sqlDeleteCommand1.Connection = this.sqlConnection1;
  290. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_帐单编号", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "帐单编号", System.Data.DataRowVersion.Original, null));
  291. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_入住单号", System.Data.SqlDbType.VarChar, 36, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "入住单号", System.Data.DataRowVersion.Original, null));
  292. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_备注", System.Data.SqlDbType.VarChar, 80, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "备注", System.Data.DataRowVersion.Original, null));
  293. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费内容", System.Data.SqlDbType.VarChar, 40, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费内容", System.Data.DataRowVersion.Original, null));
  294. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费时间", System.Data.SqlDbType.DateTime, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费时间", System.Data.DataRowVersion.Original, null));
  295. this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_消费金额", System.Data.SqlDbType.Money, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "消费金额", System.Data.DataRowVersion.Original, null));
  296. // 
  297. // ClientConsume
  298. // 
  299. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  300. this.ClientSize = new System.Drawing.Size(728, 502);
  301. this.Controls.Add(this.calen1);
  302. this.Name = "ClientConsume";
  303. this.Text = "【消费记帐】";
  304. this.Load += new System.EventHandler(this.ClientConsume_Load);
  305. this.Controls.SetChildIndex(this.groupBox1, 0);
  306. this.Controls.SetChildIndex(this.toolBar1, 0);
  307. this.Controls.SetChildIndex(this.dataGrid1, 0);
  308. this.Controls.SetChildIndex(this.groupBox2, 0);
  309. this.Controls.SetChildIndex(this.calen1, 0);
  310. ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
  311. this.groupBox2.ResumeLayout(false);
  312. ((System.ComponentModel.ISupportInitialize)(this.dataSet21)).EndInit();
  313. this.ResumeLayout(false);
  314. } #endregion
  315. //-----显示和消费日期-----
  316. private void cmb1_DropDown(object sender, System.EventArgs e)
  317. {
  318. selectDate(cmb1);
  319. } //----------关闭日期控件的显示----------
  320. private void cmb1_Leave(object sender, System.EventArgs e)
  321. {
  322. calen1.Visible=false;
  323. }
  324. //-----------单击下拉列表框下拉箭头时显示日期以供选择---------------
  325. private void selectDate(ComboBox cb)
  326. {
  327. calen1.Left=cb.Left;//设置日期控件的位置
  328. calen1.Top=cb.Top-calen1.Height-10+groupBox2.Top;
  329. if(cb.Text.Trim()!="")
  330. {
  331. calen1.SelectionStart=Convert.ToDateTime(cb.Text);//日历显示的时间为数据时间
  332. calen1.SelectionEnd=Convert.ToDateTime(cb.Text);
  333. }
  334. calen1.Visible=true;//显示日期
  335. calen1.Show();
  336. }
  337. //-----------从日历控件中选择日期信息------------
  338. private void calen1_DateSelected(object sender, System.Windows.Forms.DateRangeEventArgs e)
  339. {
  340. cmb1.Text=calen1.SelectionEnd.ToString();
  341. }
  342. //-------------根据输入选择消费数据---------------
  343. private void btnSearch_Click(object sender, System.EventArgs e)
  344. {
  345. da1.SelectCommand.Parameters[0].Value="%";
  346. da1.SelectCommand.Parameters[1].Value="%";
  347. if(txt1.Text.Trim()!="")
  348. {
  349. da1.SelectCommand.Parameters[0].Value="%"+txt1.Text.Trim()+"%";
  350. }
  351. if(txt2.Text.Trim()!="")
  352. {
  353. da1.SelectCommand.Parameters[1].Value="%"+txt2.Text.Trim()+"%";
  354. }
  355. dataSet21.Clear();//刷新数据集
  356. da1.Fill(dataSet21);
  357. }
  358. private void ClientConsume_Load(object sender, System.EventArgs e)
  359. {
  360. da1.SelectCommand.Parameters[0].Value="%";
  361. da1.SelectCommand.Parameters[1].Value="%";
  362. da1.Fill(dataSet21);//填充帐单明细
  363. base.dataSet11=this.dataSet21;
  364. this.cmOrders=(CurrencyManager) BindingContext[dataSet21,"帐单明细"];
  365. }
  366. //----------重写设置控件只读属性函数----------
  367. protected override void SetModifyMode(bool blnEdit)
  368. {
  369. base.SetModifyMode (blnEdit);
  370. txt5.ReadOnly=!blnEdit;
  371. txt6.ReadOnly=!blnEdit;
  372. cmb1.Enabled=blnEdit;
  373. cmb2.Enabled=blnEdit;
  374. btnSelect.Enabled=blnEdit;
  375. }
  376. //-------重写新增记录时设置默认值函数--------
  377. protected override void SetDefaultValue()
  378. {
  379. base.SetDefaultValue();
  380. } //-------重写检查非空字段函数--------
  381. protected override bool CheckNotNull()
  382. {
  383. if(txt4.Text.Trim()=="")// 检查入住单号
  384. {
  385. MessageBox.Show("入住单号号不能为空","提示",MessageBoxButtons.OK,MessageBoxIcon.Stop);
  386. return(false);
  387. }
  388. if(txt5.Text.Trim()=="")//检查消费金额
  389. {
  390. MessageBox.Show("请输入消费金额","提示",MessageBoxButtons.OK,MessageBoxIcon.Stop);
  391. return(false);
  392. }
  393. return base.CheckNotNull ();
  394. }
  395. //----------从入住单中双击选择入住单号-----------
  396. private void btnSelect_Click(object sender, System.EventArgs e)
  397. {
  398. string sql="select * from 入住单";
  399. SelectTable newfrm=new SelectTable(sql,2);
  400. newfrm.Text="双击选择入住单号";
  401. newfrm.ShowDialog();
  402. }
  403. private void btnSelect_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
  404. {
  405. if(RZid=="")
  406. return;
  407. txt4.Text=RZid;
  408. } } }