FrmTheScenery.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Collections;
  10. using LYFZ.Software.MainBusiness.DoorCityProcess;
  11. namespace LYFZ.Software.MainBusiness.InitialSet.PackagesGoods
  12. {
  13. public partial class FrmTheScenery : LYFZ.Software.UI.InitialSet.PackagesGoods.FrmTheScenery
  14. {
  15. LYFZ.BLL.BLL_ErpOrder orbll = new BLL.BLL_ErpOrder();
  16. LYFZ.BLL.BLL_ErpTheScenery tsbll = new BLL.BLL_ErpTheScenery();
  17. public FrmTheScenery()
  18. {
  19. }
  20. /// <summary>
  21. /// 套系大类类型(0:订单景点,1:礼包景点)
  22. /// </summary>
  23. public int StrPackagesType;
  24. /// <summary>
  25. /// 景点类型(0:景点,1:次数)
  26. /// </summary>
  27. public string StrSightsType;
  28. /// <summary>
  29. /// 是否保存
  30. /// </summary>
  31. public bool IsSaveed = false;
  32. /// <summary>
  33. /// 确定后的选择景点数据
  34. /// </summary>
  35. public DataTable tbl_Select = new DataTable();
  36. /// <summary>
  37. /// 确定后的选择景点数据
  38. /// </summary>
  39. public ArrayList ListArray = new ArrayList();
  40. /// <summary>
  41. /// 加载数据
  42. /// </summary>
  43. /// <param name="sender"></param>
  44. /// <param name="e"></param>
  45. protected override void FrmTheScenery_Load(object sender, EventArgs e)
  46. {
  47. //string StrWhereN = " And Tsc_PackagesMainClass = '" + this.StrPackagesType + "'";
  48. string StrTableName = "tb_ErpTheScenery Left Join tb_ErpSystemCategory on Sc_ClassCode = Tsc_Rating";
  49. string StrWhere = "Tsc_IsDisable='0' and Tsc_Type='" + this.StrSightsType + "'";
  50. string StrColumns = "tb_ErpTheScenery.ID,Tsc_Name,Tsc_Type,Tcs_Category,Tsc_PackagesMainClass,Tsc_Rating,Sc_ClassName AS Tsc_RatingName,Tsc_Introduction,Tsc_DetailsOf,Tsc_Address,Tsc_CostPrice,Tsc_SalesPrice,"+
  51. "Tsc_Remark,Tsc_Thumbnail,Tsc_PhotoAlbum,Tsc_IsDisable,Tsc_CreateDatetime,Tsc_CreateName,Tsc_UpdateDatetime,Tsc_UpdateName,CASE Tcs_Category WHEN 0 THEN '内景' ELSE '外景' END AS Tcs_CategoryName";
  52. DataTable dt = orbll.GetView_Custom(StrTableName, StrWhere: StrWhere, ShowColumnName: StrColumns).Tables[0];
  53. //DataTable dt = tsbll.View_ErpTheScenery("Tsc_IsDisable='0' and Tsc_Type='" + this.StrSightsType + "' And Tsc_PackagesMainClass = '" + this.StrPackagesType + "'").Tables[0];
  54. this.dgv.AutoGenerateColumns = false;
  55. this.dgv.DataSource = dt;
  56. this.dgv.ClearSelection();
  57. if (this.StrSightsType.ToString() == "1")
  58. {
  59. this.dgv.Columns["Tsc_SalesPrice"].Visible = false;
  60. this.dgv.Columns["Tsc_CostPrice"].Visible = false;
  61. }
  62. this.dgv.Columns["ID"].Visible = false;
  63. }
  64. /// <summary>
  65. /// 双击事件增加商品
  66. /// </summary>
  67. /// <param name="sender"></param>
  68. /// <param name="e"></param>
  69. protected override void dgv_DoubleClick(object sender, EventArgs e)
  70. {
  71. try
  72. {
  73. if (this.dgv.Rows.Count > 0)
  74. {
  75. if (this.dgv.CurrentCell.ColumnIndex >= 0 && this.dgv.CurrentRow.Index >= 0)
  76. {
  77. object ID = this.dgv.CurrentRow.Cells["ID"].Value;
  78. string Tsc_Name = this.dgv.CurrentRow.Cells["Tsc_Name"].Value.ToString();
  79. bool IsFind = false;
  80. for (int i = 0; i < this.lst.Items.Count; i++)
  81. {
  82. ListItem listitem = (ListItem)this.lst.Items[i];
  83. if (listitem.StrValue.Equals(ID))
  84. { IsFind = true; break; }
  85. }
  86. if (!IsFind)
  87. { this.lst.Items.Add(new ListItem(Tsc_Name, ID)); }
  88. }
  89. }
  90. }
  91. catch (Exception ex)
  92. { MessageBoxCustom.Show(ex.Message); }
  93. }
  94. /// <summary>
  95. /// 按钮增加商品
  96. /// </summary>
  97. /// <param name="sender"></param>
  98. /// <param name="e"></param>
  99. protected override void btnRight_Click(object sender, EventArgs e)
  100. {
  101. if (this.dgv.SelectedRows.Count == 0)
  102. { MessageBoxCustom.Show("请选择景点名称"); return; }
  103. object ID = this.dgv.CurrentRow.Cells["ID"].Value;
  104. string Tsc_Name = this.dgv.CurrentRow.Cells["Tsc_Name"].Value.ToString();
  105. bool IsFind = false;
  106. for (int i = 0; i < this.lst.Items.Count; i++)
  107. {
  108. ListItem listitem = (ListItem)this.lst.Items[i];
  109. if (listitem.StrValue.Equals(ID))
  110. { IsFind = true; break; }
  111. }
  112. if (!IsFind)
  113. { this.lst.Items.Add(new ListItem(Tsc_Name, ID)); }
  114. }
  115. /// <summary>
  116. /// 移除商品
  117. /// </summary>
  118. /// <param name="sender"></param>
  119. /// <param name="e"></param>
  120. protected override void btnLeft_Click(object sender, EventArgs e)
  121. {
  122. if (this.lst.Items.Count > 0)
  123. { this.lst.Items.Remove(this.lst.SelectedItem); }
  124. }
  125. /// <summary>
  126. /// 确定
  127. /// </summary>
  128. /// <param name="sender"></param>
  129. /// <param name="e"></param>
  130. protected override void btnSave_Click(object sender, EventArgs e)
  131. {
  132. if (lst.Items.Count > 0)
  133. {
  134. string StrWhere = "";
  135. for (int i = 0; i < lst.Items.Count; i++)
  136. {
  137. ListItem listitem = (ListItem)this.lst.Items[i];
  138. ListArray.Add(listitem);
  139. StrWhere += "'" + listitem.StrValue + "',";
  140. }
  141. StrWhere = "ID in (" + StrWhere.TrimEnd(',') + ")";
  142. tbl_Select = orbll.GetView_Custom("tb_ErpTheScenery", StrWhere: StrWhere, ShowColumnName: "*").Tables[0];
  143. if (tbl_Select.Rows.Count > 0)
  144. { this.IsSaveed = true; }
  145. }
  146. this.Close();
  147. }
  148. }
  149. }