FrmRecord.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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.DressView
  11. {
  12. public partial class FrmRecord : LYFZ.Software.UI.Dresses.DressView.FrmRecord
  13. {
  14. public string Number;
  15. public FrmRecord()
  16. {
  17. }
  18. #region 加载
  19. protected override void FrmRecord_Shown(object sender, EventArgs e)
  20. {
  21. WaitForm wf = new WaitForm();
  22. wf.ShowForm(this);
  23. try
  24. {
  25. bind();
  26. wf.CloseForm();
  27. wf = null;
  28. }
  29. catch
  30. {
  31. wf.CloseForm();
  32. wf = null;
  33. }
  34. }
  35. public void bind()
  36. {
  37. if (!string.IsNullOrEmpty(Number))
  38. {
  39. dgv.Rows.Clear();
  40. #region 获取租售
  41. LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
  42. DataTable dt = new DataTable();
  43. if (radAll.Checked)
  44. {
  45. dt = DressSaleRentalDetailBll.View_DressSaleRentalDetail(" and Dsrd_DressNumber='" + Number + "' and (Dsro_Type='1' or Dsro_Type='0' )").Tables[0];
  46. }
  47. else
  48. {
  49. dt = DressSaleRentalDetailBll.View_DressSaleRentalDetail(" and Dsrd_DressNumber='" + Number + "' and (Dsro_Type='1' or Dsro_Type='0' ) and Dsrd_BackStatus='3'").Tables[0];
  50. }
  51. if (dt.Rows.Count > 0)
  52. {
  53. for (int t = 0; t < dt.Rows.Count; t++)
  54. {
  55. #region
  56. DataGridViewRow dgvr = new DataGridViewRow();
  57. DataGridViewCell cell = null;
  58. cell = new DataGridViewTextBoxCell();
  59. cell.Value = dt.Rows[t]["Dsrd_Number"].ToString().Trim();
  60. dgvr.Cells.Add(cell);
  61. cell = new DataGridViewTextBoxCell();
  62. cell.Value = dt.Rows[t]["Cus_Name"].ToString().Trim();
  63. dgvr.Cells.Add(cell);
  64. cell = new DataGridViewTextBoxCell();
  65. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_TakeDressTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  66. dgvr.Cells.Add(cell);
  67. cell = new DataGridViewTextBoxCell();
  68. if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "0")
  69. {
  70. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_ReservationBackTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  71. }
  72. else { cell.Value = ""; }
  73. dgvr.Cells.Add(cell);
  74. cell = new DataGridViewTextBoxCell();
  75. if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "0")
  76. {
  77. cell.Value = "租";
  78. }
  79. if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "1")
  80. {
  81. cell.Value = "售";
  82. }
  83. dgvr.Cells.Add(cell);
  84. cell = new DataGridViewTextBoxCell();
  85. cell.Value = dt.Rows[t]["Dsrd_DressName"].ToString().Trim();
  86. dgvr.Cells.Add(cell);
  87. cell = new DataGridViewTextBoxCell();
  88. cell.Value = dt.Rows[t]["Dsrd_SaleRentalQuantity"].ToString().Trim();
  89. dgvr.Cells.Add(cell);
  90. cell = new DataGridViewTextBoxCell();
  91. if (dt.Rows[t]["Dsrd_BackStatus"].ToString().Trim() == "1")
  92. {
  93. cell.Value = "已还";
  94. }
  95. if (dt.Rows[t]["Dsrd_BackStatus"].ToString().Trim() == "3")
  96. {
  97. cell.Value = "未还";
  98. }
  99. dgvr.Cells.Add(cell);
  100. cell = new DataGridViewTextBoxCell();
  101. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsrd_CreateDateTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  102. dgvr.Cells.Add(cell);
  103. cell = new DataGridViewTextBoxCell();
  104. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  105. cell.Value = UserBll.GetUserName(dt.Rows[t]["Dsrd_CreateName"].ToString().Trim());
  106. dgvr.Cells.Add(cell);
  107. this.dgv.Rows.Add(dgvr);
  108. #endregion
  109. }
  110. dgv.ClearSelection();
  111. }
  112. #endregion
  113. #region 获取送洗
  114. LYFZ.BLL.BLL_ErpDressSendWashDetail DressSendWashDetailBll = new BLL.BLL_ErpDressSendWashDetail();
  115. dt = new DataTable();
  116. if (radAll.Checked)
  117. {
  118. dt = DressSendWashDetailBll.View_DressSendWashDetail(" and Dswd_DressNumber='" + Number + "'").Tables[0];
  119. }
  120. else
  121. {
  122. dt = DressSendWashDetailBll.View_DressSendWashDetail(" and Dswd_DressNumber='" + Number + "' and Dswd_BackStatus='3'").Tables[0];
  123. }
  124. if (dt.Rows.Count > 0)
  125. {
  126. for (int t = 0; t < dt.Rows.Count; t++)
  127. {
  128. #region
  129. DataGridViewRow dgvr = new DataGridViewRow();
  130. DataGridViewCell cell = null;
  131. cell = new DataGridViewTextBoxCell();
  132. cell.Value = dt.Rows[t]["Dswo_Number"].ToString().Trim();
  133. dgvr.Cells.Add(cell);
  134. cell = new DataGridViewTextBoxCell();
  135. cell.Value = "";
  136. dgvr.Cells.Add(cell);
  137. cell = new DataGridViewTextBoxCell();
  138. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswo_SendWashTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  139. dgvr.Cells.Add(cell);
  140. cell = new DataGridViewTextBoxCell();
  141. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswo_ReservationBackTime"].ToString().Trim()).ToString("yyyy-MM-dd");
  142. dgvr.Cells.Add(cell);
  143. cell = new DataGridViewTextBoxCell();
  144. cell.Value = "洗";
  145. dgvr.Cells.Add(cell);
  146. cell = new DataGridViewTextBoxCell();
  147. cell.Value = dt.Rows[t]["Dswd_DressName"].ToString().Trim();
  148. dgvr.Cells.Add(cell);
  149. cell = new DataGridViewTextBoxCell();
  150. cell.Value = dt.Rows[t]["Dswd_SendWashQuantity"].ToString().Trim();
  151. dgvr.Cells.Add(cell);
  152. cell = new DataGridViewTextBoxCell();
  153. if (dt.Rows[t]["Dswd_BackStatus"].ToString().Trim() == "1")
  154. {
  155. cell.Value = "已还";
  156. }
  157. if (dt.Rows[t]["Dswd_BackStatus"].ToString().Trim() == "3")
  158. {
  159. cell.Value = "未还";
  160. }
  161. dgvr.Cells.Add(cell);
  162. cell = new DataGridViewTextBoxCell();
  163. cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswd_CreateDatetime"].ToString().Trim()).ToString("yyyy-MM-dd");
  164. dgvr.Cells.Add(cell);
  165. cell = new DataGridViewTextBoxCell();
  166. LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
  167. cell.Value = UserBll.GetUserName(dt.Rows[t]["Dswd_CreateName"].ToString().Trim());
  168. dgvr.Cells.Add(cell);
  169. this.dgv.Rows.Add(dgvr);
  170. #endregion
  171. }
  172. dgv.ClearSelection();
  173. }
  174. #endregion
  175. lblCount.Text = dgv.Rows.Count.ToString();
  176. }
  177. }
  178. #endregion
  179. #region 未还
  180. protected override void radNotyet_Click(object sender, EventArgs e)
  181. {
  182. WaitForm wf = new WaitForm();
  183. wf.ShowForm(this);
  184. try
  185. {
  186. bind();
  187. wf.CloseForm();
  188. wf = null;
  189. }
  190. catch
  191. {
  192. wf.CloseForm();
  193. wf = null;
  194. }
  195. }
  196. #endregion
  197. #region 全部
  198. protected override void radAll_Click(object sender, EventArgs e)
  199. {
  200. WaitForm wf = new WaitForm();
  201. wf.ShowForm(this);
  202. try
  203. {
  204. bind();
  205. wf.CloseForm();
  206. wf = null;
  207. }
  208. catch
  209. {
  210. wf.CloseForm();
  211. wf = null;
  212. }
  213. }
  214. #endregion
  215. }
  216. }