123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- using LYFZ.ComponentLibrary;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.Dresses.DressView
- {
- public partial class FrmRecord : LYFZ.Software.UI.Dresses.DressView.FrmRecord
- {
- public string Number;
- public FrmRecord()
- {
-
- }
- #region 加载
- protected override void FrmRecord_Shown(object sender, EventArgs e)
- {
- WaitForm wf = new WaitForm();
- wf.ShowForm(this);
-
- try
- {
- bind();
- wf.CloseForm();
- wf = null;
- }
- catch
- {
- wf.CloseForm();
- wf = null;
- }
- }
- public void bind()
- {
- if (!string.IsNullOrEmpty(Number))
- {
- dgv.Rows.Clear();
- #region 获取租售
- LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail();
- DataTable dt = new DataTable();
- if (radAll.Checked)
- {
- dt = DressSaleRentalDetailBll.View_DressSaleRentalDetail(" and Dsrd_DressNumber='" + Number + "' and (Dsro_Type='1' or Dsro_Type='0' )").Tables[0];
- }
- else
- {
- dt = DressSaleRentalDetailBll.View_DressSaleRentalDetail(" and Dsrd_DressNumber='" + Number + "' and (Dsro_Type='1' or Dsro_Type='0' ) and Dsrd_BackStatus='3'").Tables[0];
- }
- if (dt.Rows.Count > 0)
- {
- for (int t = 0; t < dt.Rows.Count; t++)
- {
- #region
- DataGridViewRow dgvr = new DataGridViewRow();
- DataGridViewCell cell = null;
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dsrd_Number"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Cus_Name"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_TakeDressTime"].ToString().Trim()).ToString("yyyy-MM-dd");
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "0")
- {
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsro_ReservationBackTime"].ToString().Trim()).ToString("yyyy-MM-dd");
- }
- else { cell.Value = ""; }
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "0")
- {
- cell.Value = "租";
- }
- if (dt.Rows[t]["Dsro_Type"].ToString().Trim() == "1")
- {
- cell.Value = "售";
- }
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dsrd_DressName"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dsrd_SaleRentalQuantity"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- if (dt.Rows[t]["Dsrd_BackStatus"].ToString().Trim() == "1")
- {
- cell.Value = "已还";
- }
- if (dt.Rows[t]["Dsrd_BackStatus"].ToString().Trim() == "3")
- {
- cell.Value = "未还";
- }
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dsrd_CreateDateTime"].ToString().Trim()).ToString("yyyy-MM-dd");
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
- cell.Value = UserBll.GetUserName(dt.Rows[t]["Dsrd_CreateName"].ToString().Trim());
- dgvr.Cells.Add(cell);
- this.dgv.Rows.Add(dgvr);
- #endregion
- }
- dgv.ClearSelection();
- }
- #endregion
- #region 获取送洗
- LYFZ.BLL.BLL_ErpDressSendWashDetail DressSendWashDetailBll = new BLL.BLL_ErpDressSendWashDetail();
- dt = new DataTable();
- if (radAll.Checked)
- {
- dt = DressSendWashDetailBll.View_DressSendWashDetail(" and Dswd_DressNumber='" + Number + "'").Tables[0];
- }
- else
- {
- dt = DressSendWashDetailBll.View_DressSendWashDetail(" and Dswd_DressNumber='" + Number + "' and Dswd_BackStatus='3'").Tables[0];
- }
- if (dt.Rows.Count > 0)
- {
- for (int t = 0; t < dt.Rows.Count; t++)
- {
- #region
- DataGridViewRow dgvr = new DataGridViewRow();
- DataGridViewCell cell = null;
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dswo_Number"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = "";
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswo_SendWashTime"].ToString().Trim()).ToString("yyyy-MM-dd");
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswo_ReservationBackTime"].ToString().Trim()).ToString("yyyy-MM-dd");
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = "洗";
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dswd_DressName"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = dt.Rows[t]["Dswd_SendWashQuantity"].ToString().Trim();
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- if (dt.Rows[t]["Dswd_BackStatus"].ToString().Trim() == "1")
- {
- cell.Value = "已还";
- }
- if (dt.Rows[t]["Dswd_BackStatus"].ToString().Trim() == "3")
- {
- cell.Value = "未还";
- }
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- cell.Value = Convert.ToDateTime(dt.Rows[t]["Dswd_CreateDatetime"].ToString().Trim()).ToString("yyyy-MM-dd");
- dgvr.Cells.Add(cell);
- cell = new DataGridViewTextBoxCell();
- LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser();
- cell.Value = UserBll.GetUserName(dt.Rows[t]["Dswd_CreateName"].ToString().Trim());
- dgvr.Cells.Add(cell);
- this.dgv.Rows.Add(dgvr);
- #endregion
- }
- dgv.ClearSelection();
- }
- #endregion
- lblCount.Text = dgv.Rows.Count.ToString();
- }
- }
- #endregion
- #region 未还
- protected override void radNotyet_Click(object sender, EventArgs e)
- {
- WaitForm wf = new WaitForm();
- wf.ShowForm(this);
- try
- {
- bind();
- wf.CloseForm();
- wf = null;
- }
- catch
- {
- wf.CloseForm();
- wf = null;
- }
- }
- #endregion
- #region 全部
- protected override void radAll_Click(object sender, EventArgs e)
- {
- WaitForm wf = new WaitForm();
- wf.ShowForm(this);
- try
- {
- bind();
- wf.CloseForm();
- wf = null;
- }
- catch
- {
- wf.CloseForm();
- wf = null;
- }
- }
- #endregion
- }
- }
|