FrmDressView.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. using LYFZ.ComponentLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. namespace LYFZ.Software.MainBusiness.Dresses
  11. {
  12. public partial class FrmDressView : LYFZ.Software.UI.Dresses.FrmDressView
  13. {
  14. private delegate void UpdateControl();
  15. public FrmDressView()
  16. {
  17. this.ucPagerEx1.EventPaging += ucPagerEx1_EventPaging;
  18. }
  19. #region 加载
  20. protected override void FrmDressView_Shown(object sender, EventArgs e)
  21. {
  22. try
  23. {
  24. BindDsfm_DressType();
  25. Bind();
  26. #region 权限设置
  27. #region 查看
  28. if (LYFZ.BLL.BLL_ErpUser.GetRights(LYFZ.BLL.BLL_ErpUser.CurrentUserRights.DressView, CustomAttributes.OperatingAuthority.SeeView))
  29. {
  30. btnRecord.Enabled = true;
  31. }
  32. else
  33. {
  34. btnRecord.Enabled = false;
  35. }
  36. #endregion
  37. #endregion
  38. }
  39. catch (Exception ex)
  40. {
  41. MessageBoxCustom.Show(ex.Message);
  42. }
  43. }
  44. #region 获取礼服
  45. /// <summary>
  46. /// 获取礼服
  47. /// </summary>
  48. public void Bind()
  49. {
  50. this.ucPagerEx1.PageCurrent = 1;
  51. this.ucPagerEx1.PageSize = 100;// LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetPageSize();//3;分页条数
  52. this.ucPagerEx1.Bind();
  53. }
  54. #endregion
  55. #endregion
  56. #region 查询
  57. protected override void btnSlect_Click(object sender, EventArgs e)
  58. {
  59. try
  60. {
  61. Bind();
  62. }
  63. catch (Exception ex)
  64. {
  65. MessageBoxCustom.Show(ex.Message);
  66. }
  67. }
  68. #endregion
  69. #region 租售洗记录
  70. protected override void btnRecord_Click(object sender, EventArgs e)
  71. {
  72. try
  73. {
  74. if (dgv.SelectedRows.Count == 0)
  75. {
  76. MessageBoxCustom.Show("请选择你要查看的礼服!");
  77. return;
  78. }
  79. LYFZ.Software.MainBusiness.Dresses.DressView.FrmRecord set = new DressView.FrmRecord();
  80. set.Number = dgv.CurrentRow.Cells["Dsfm_DressNumber"].Value.ToString();
  81. set.ShowDialog();
  82. }
  83. catch (Exception ex)
  84. {
  85. MessageBoxCustom.Show(ex.Message);
  86. }
  87. }
  88. #endregion
  89. #region 绑定礼服类别
  90. /// <summary>
  91. /// 绑定礼服类别
  92. /// </summary>
  93. public void BindDsfm_DressType()
  94. {
  95. CtvDsfm_DressType.TreeView.Nodes.Clear();
  96. #region 绑定二级礼服类别
  97. LYFZ.BLL.BLL_ErpSystemCategory BLLSystemCategory = new BLL.BLL_ErpSystemCategory();
  98. DataTable tbl = BLLSystemCategory.GetList("Sc_ClassParentID='59'").Tables[0];
  99. if (tbl.Rows.Count > 0)
  100. {
  101. TreeNode root = null;
  102. for (int i = 0; i < tbl.Rows.Count; i++)
  103. {
  104. if (i == 0)
  105. {
  106. root = new TreeNode("全部");
  107. this.CtvDsfm_DressType.TreeView.Nodes.Add(root);
  108. }
  109. root = new TreeNode();
  110. root.Text = tbl.Rows[i]["Sc_ClassName"].ToString();
  111. root.Tag = tbl.Rows[i]["Sc_ClassCode"].ToString();
  112. this.CreateTreeViewShop(root.Nodes, tbl.Rows[i]["ID"].ToString());
  113. this.CtvDsfm_DressType.TreeView.Nodes.Add(root);
  114. }
  115. }
  116. #endregion
  117. }
  118. private void CreateTreeViewShop(TreeNodeCollection nodes, string ClassCode)
  119. {
  120. if (ClassCode != "")
  121. {
  122. LYFZ.BLL.BLL_ErpSystemCategory BLLSystemCategory = new BLL.BLL_ErpSystemCategory();
  123. DataTable tbl = BLLSystemCategory.GetList("Sc_ClassParentID=" + ClassCode + "").Tables[0];
  124. if (tbl.Rows.Count > 0)
  125. {
  126. TreeNode node;
  127. for (int i = 0; i < tbl.Rows.Count; i++)
  128. {
  129. node = new TreeNode();
  130. node.Text = tbl.Rows[i]["Sc_ClassName"].ToString();
  131. node.Tag = tbl.Rows[i]["Sc_ClassCode"].ToString();
  132. nodes.Add(node);
  133. }
  134. }
  135. }
  136. }
  137. #endregion
  138. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  139. DataTable dt_DressSaleRentalDetai = null;
  140. LYFZ.BLL.BLL_ErpDressSendWashDetail DressSendWashDetailBll = new BLL.BLL_ErpDressSendWashDetail();
  141. DataTable dt_DressSendWashDetail = null;
  142. #region 画分页
  143. /// <summary>
  144. /// 画分页
  145. /// </summary>
  146. /// <param name="e"></param>
  147. /// <returns></returns>
  148. private int ucPagerEx1_EventPaging(UCPager.EventPagingArg e)
  149. {
  150. LYFZ.UCPager.PageData pageData = new LYFZ.UCPager.PageData();
  151. dgv.Rows.Clear();
  152. DataTable dt = new DataTable();
  153. string StrWhere = "";
  154. if (!string.IsNullOrEmpty(txtkeyword.Text))
  155. {
  156. StrWhere = "";
  157. StrWhere += " 1=1 and (Dsfm_DressNumber like '%" + txtkeyword.Text + "%' or Dsfm_DressName like '%" + txtkeyword.Text + "%' and Dsfm_IsEnabled='1')";
  158. }
  159. if (!string.IsNullOrEmpty(CtvDsfm_DressType.Text) && CtvDsfm_DressType.Text != "全部")
  160. {
  161. StrWhere = "";
  162. StrWhere += " 1=1 and Dsfm_DressType='" + CtvDsfm_DressType.Tag.ToString() + "' and Dsfm_IsEnabled='1'";
  163. }
  164. if (!string.IsNullOrEmpty(CtvDsfm_DressType.Text) && CtvDsfm_DressType.Text != "全部" && !string.IsNullOrEmpty(txtkeyword.Text))
  165. {
  166. StrWhere = "";
  167. StrWhere += " 1=1 and Dsfm_DressType='" + CtvDsfm_DressType.Tag.ToString() + "' and Dsfm_IsEnabled='1' and (Dsfm_DressNumber like '%" + txtkeyword.Text + "%' or Dsfm_DressName like '%" + txtkeyword.Text + "%')";
  168. }
  169. if (CtvDsfm_DressType.Text == "全部" && !string.IsNullOrEmpty(txtkeyword.Text))
  170. {
  171. StrWhere = "";
  172. StrWhere += " 1=1 and Dsfm_DressNumber like '%" + txtkeyword.Text + "%' or Dsfm_DressName like '%" + txtkeyword.Text + "%' and Dsfm_IsEnabled='1'";
  173. }
  174. if (string.IsNullOrEmpty(txtkeyword.Text) && (string.IsNullOrEmpty(CtvDsfm_DressType.Text) || CtvDsfm_DressType.Text == "全部"))
  175. {
  176. StrWhere = " 1=1 and Dsfm_IsEnabled='1'";
  177. }
  178. LYFZ.ComponentLibrary.FrmLoadHandling.LoadDoWorkMethod(delegate(object obj, BackgroundWorker backgroundWorker)
  179. {
  180. pageData.TableName = "View_tb_ErpDressFrom";
  181. pageData.PageIndex = this.ucPagerEx1.PageCurrent;
  182. pageData.PageSize = this.ucPagerEx1.PageSize;
  183. pageData.QueryCondition = StrWhere.ToString();
  184. pageData.QueryFieldName = "ID,Dsfm_DressNumber,Dsfm_DressType,Dsfm_DressName,Dsfm_DressBrand,Dsfm_DressSize,Dsfm_DressQuantity,Dsfm_CostPrice,Dsfm_RentPrice,Dsfm_SalePrice,Dsfm_IsEnabled,Dsfm_PlacedRegion,Dsfm_PicturePath,Dsfm_DressIntroduce,Dsfm_DressDetail,Dsfm_DressRemark,Dsfm_CreateDateTime,Dsfm_CreateName,Dsfm_UpdateDateTime,Dsfm_UpdateName,Dsfm_DressTypeName,Dsfm_PlacedRegionName ";
  185. pageData.OrderStr = " ID desc ";
  186. DataSet da = pageData.QueryDataTable();
  187. dt = da.Tables[0];
  188. if (dt.Rows.Count > 0)
  189. {
  190. #region
  191. dt_DressSaleRentalDetai = DressSaleRentalDetailBll.View_DressSaleRentalDetail("").Tables[0];
  192. dt_DressSendWashDetail = DressSendWashDetailBll.View_DressSendWashDetail("").Tables[0];
  193. #endregion
  194. this.Invoke(new UpdateControl(delegate()
  195. {
  196. for (int t = 0; t < dt.Rows.Count; t++)
  197. {
  198. #region
  199. DataGridViewRow dgvr = new DataGridViewRow();
  200. DataGridViewCell cell = null;
  201. cell = new DataGridViewTextBoxCell();
  202. cell.Value = dt.Rows[t]["ID"].ToString().Trim();
  203. dgvr.Cells.Add(cell);
  204. cell = new DataGridViewTextBoxCell();
  205. cell.Value = dt.Rows[t]["Dsfm_DressTypeName"].ToString().Trim();
  206. dgvr.Cells.Add(cell);
  207. cell = new DataGridViewTextBoxCell();
  208. cell.Value = dt.Rows[t]["Dsfm_DressNumber"].ToString().Trim();
  209. dgvr.Cells.Add(cell);
  210. cell = new DataGridViewTextBoxCell();
  211. cell.Value = dt.Rows[t]["Dsfm_DressName"].ToString().Trim();
  212. dgvr.Cells.Add(cell);
  213. cell = new DataGridViewTextBoxCell();
  214. cell.Value = dt.Rows[t]["Dsfm_PlacedRegionName"].ToString().Trim();
  215. dgvr.Cells.Add(cell);
  216. cell = new DataGridViewTextBoxCell();
  217. cell.Value = dt.Rows[t]["Dsfm_DressQuantity"].ToString().Trim();
  218. dgvr.Cells.Add(cell);
  219. #region 已租
  220. DataRow[] dt_DressSaleRentalDetaiCount = dt_DressSaleRentalDetai.Select(" Dsrd_DressNumber='" + dt.Rows[t]["Dsfm_DressNumber"].ToString().Trim() + "' and Dsro_Type='0'");
  221. cell = new DataGridViewTextBoxCell();
  222. cell.Value = dt_DressSaleRentalDetaiCount.Length;
  223. dgvr.Cells.Add(cell);
  224. #endregion
  225. #region 已售
  226. cell = new DataGridViewTextBoxCell();
  227. dt_DressSaleRentalDetaiCount = dt_DressSaleRentalDetai.Select(" Dsrd_DressNumber='" + dt.Rows[t]["Dsfm_DressNumber"].ToString().Trim() + "' and Dsro_Type='1'");
  228. cell.Value = dt_DressSaleRentalDetaiCount.Length;
  229. dgvr.Cells.Add(cell);
  230. #endregion
  231. #region 送洗
  232. cell = new DataGridViewTextBoxCell();
  233. dt_DressSaleRentalDetaiCount = dt_DressSendWashDetail.Select(" Dswd_DressNumber='" + dt.Rows[t]["Dsfm_DressNumber"].ToString().Trim() + "'");
  234. cell.Value = dt_DressSaleRentalDetaiCount.Length;
  235. dgvr.Cells.Add(cell);
  236. #endregion
  237. cell = new DataGridViewTextBoxCell();
  238. cell.Value = dt.Rows[t]["Dsfm_RentPrice"].ToString().Trim();
  239. dgvr.Cells.Add(cell);
  240. cell = new DataGridViewTextBoxCell();
  241. cell.Value = dt.Rows[t]["Dsfm_SalePrice"].ToString().Trim();
  242. dgvr.Cells.Add(cell);
  243. cell = new DataGridViewTextBoxCell();
  244. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsfm_CreateDateTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  245. dgvr.Cells.Add(cell);
  246. cell = new DataGridViewTextBoxCell();
  247. cell.Value = dt.Rows[t]["Dsfm_DressRemark"].ToString().Trim();
  248. dgvr.Cells.Add(cell);
  249. this.dgv.Rows.Add(dgvr);
  250. dgv.ClearSelection();
  251. #endregion
  252. }
  253. }));
  254. }
  255. });
  256. try
  257. {
  258. this.ucPagerEx1.TbDataSource = dt;
  259. }
  260. catch { }
  261. return pageData.TotalCount;
  262. }
  263. #endregion
  264. }
  265. }