using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.Dresses.DressManagement { public partial class FrmPreselectedUpdate : LYFZ.Software.UI.Dresses.DressManagement.FrmPreselectedUpdate { public string type; public string Dsro_Number; bool bl = false; public FrmPreselectedUpdate() { this.FormClosed += FrmPreselectedUpdate_FormClosed; } void FrmPreselectedUpdate_FormClosed(object sender, FormClosedEventArgs e) { if (bl) { this.DialogResult = DialogResult.OK; } } #region 加载 protected override void FrmPreselectedUpdate_Shown(object sender, EventArgs e) { try { #region 部门人员绑定 LYFZ.Software.MainBusiness.DoorCityProcess.PublicCodeClasses.BindComboBoxTreeView_DepartmentAndEmployee(this.txtDsro_CreateName, IsFirstNodeNull: true); //LYFZ.BLL.BLL_ErpDepartment BLLerpdepartment = new BLL.BLL_ErpDepartment(); //DataTable tbl = BLLerpdepartment.GetAllList().Tables[0]; //if (tbl.Rows.Count > 0) //{ // TreeNode root = null; // for (int i = 0; i < tbl.Rows.Count; i++) // { // root = new TreeNode(tbl.Rows[i]["Dt_Name"].ToString()); // this.CreateTreeViewDepartmentUser(root.Nodes, tbl.Rows[i]["ID"].ToString()); // this.txtDsro_CreateName.TreeView.Nodes.Add(root); // } //} #endregion if (!string.IsNullOrEmpty(Dsro_Number)) { LYFZ.BLL.BLL_ErpUser UserBll = new BLL.BLL_ErpUser(); LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder(); DataTable dt = new DataTable(); if (type == "0") { lbl1.Visible = false; lbl2.Visible = false; txtDsro_MortgageAmount.Visible = false; txtDsro_ReservationBackTime.Visible = false; } #region 获取预选资料 dt = DressSaleRentalOrderBll.View_DressSaleRentalOrder(" and Dsro_Number='" + Dsro_Number + "'").Tables[0]; if (dt.Rows.Count > 0) { txtDsro_Number.Text = dt.Rows[0]["Dsro_Number"].ToString(); txtDsro_Amount.Text = dt.Rows[0]["Dsro_Amount"].ToString(); if (type == "0") { txtDsro_MortgageAmount.Text = ""; } else { txtDsro_MortgageAmount.Text = dt.Rows[0]["Dsro_MortgageAmount"].ToString(); } txtDsro_CreateName.TagFindText(dt.Rows[0]["Dsro_CreateName"].ToString()); txtDsro_CreateDateTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_CreateDateTime"].ToString()).ToString("yyyy-MM-dd"); txtDsro_Remark.Text = dt.Rows[0]["Dsro_Remark"].ToString(); txtDsro_TakeDressTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_TakeDressTime"].ToString()).ToString("yyyy-MM-dd"); if (type == "0") { txtDsro_ReservationBackTime.Text = ""; } else { txtDsro_ReservationBackTime.Text = Convert.ToDateTime(dt.Rows[0]["Dsro_ReservationBackTime"].ToString()).ToString("yyyy-MM-dd"); } } #endregion bind(); } } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } /// /// 获取礼服资料 /// public void bind() { #region 获取礼服资料 dgv.Rows.Clear(); DataTable dt = new DataTable(); LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailBll = new BLL.BLL_ErpDressSaleRentalDetail(); dt = DressSaleRentalDetailBll.GetList(" Dsrd_Number='" + Dsro_Number + "'").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]["ID"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Dsrd_DressNumber"].ToString().Trim(); 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(); cell.Value = dt.Rows[t]["Dsrd_CostPrice"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[t]["Dsrd_SalePrice"].ToString().Trim(); dgvr.Cells.Add(cell); this.dgv.Rows.Add(dgvr); #endregion dgv.ClearSelection(); } } #endregion } #endregion /// /// dgv单价事件 /// /// /// protected override void dgv_Click(object sender, EventArgs e) { if (dgv.Rows.Count > 0) { LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom(); DataTable dt = new DataTable(); string Dsfm_DressNumber = dgv.CurrentRow.Cells["Dsfm_DressNumber"].Value.ToString(); dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumber + "'").Tables[0]; if (dt.Rows.Count > 0) { string StrPath = BLL.BLL_ErpDressFrom.GetDressFromPath() + "\\" + dt.Rows[0]["Dsfm_PicturePath"]; if (File.Exists(StrPath)) { picDsfm_PicturePath.Image = Image.FromFile(StrPath); } } } } #region 删除 protected override void btndelete_Click(object sender, EventArgs e) { if (this.dgv.SelectedRows.Count == 0) { MessageBoxCustom.Show("请选中你要删除的数据!"); return; } if (MessageBoxCustom.Show("你确定要删除吗?", "删除提示", MessageBoxButtons.YesNo) == DialogResult.Yes) { if (dgv.Rows.Count == 1) { MessageBoxCustom.Show("礼服订单产品只有一件礼服不能删除!"); return; } LYFZ.BLL.BLL_ErpDressSaleRentalDetail bll = new BLL.BLL_ErpDressSaleRentalDetail(); int id = Convert.ToInt32(this.dgv.CurrentRow.Cells["ID"].Value); if (bll.Delete(id) == true) { #region 写入操作日志 string logsContent = "删除礼服名称:" + dgv.CurrentRow.Cells["Dsfm_DressName"].Value.ToString(); LYFZ.BLL.BLL_ErpSystemLogs.WriteSystemLog(LYFZ.EnumPublic.SystemLogsType.删除礼服, logsContent, LYFZ.BLL.BLL_ErpUser.UsersModel.User_EmployeeID, LYFZ.BLL.BLL_ErpUser.UsersModel.User_Name); //LYFZ.BLL.BLL_ErpSystemLogs systemLogsBll = new BLL.BLL_ErpSystemLogs(); //LYFZ.Model.Model_ErpSystemLogs systemLogsModel = new Model.Model_ErpSystemLogs(); //systemLogsModel.Slogs_Type = "user"; //systemLogsModel.Slogs_Topic = "删除礼服"; //systemLogsModel.Slogs_Content = "删除礼服名称:" + dgv.CurrentRow.Cells["Dsfm_DressName"].Value.ToString(); //systemLogsModel.Slogs_UserName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_Name; //systemLogsModel.Slogs_IP = ""; //systemLogsModel.Slogs_CreateDatetime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime(); //systemLogsModel.Slogs_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; //systemLogsBll.Add(systemLogsModel); #endregion MessageBoxCustom.Show("删除成功!"); bind(); } else { MessageBoxCustom.Show("删除失败!"); } } } #endregion #region 修改 protected override void btnSave_Click(object sender, EventArgs e) { try { LYFZ.BLL.BLL_ErpDressSaleRentalOrder DressSaleRentalOrderBll = new BLL.BLL_ErpDressSaleRentalOrder(); DataTable dt = DressSaleRentalOrderBll.GetList(" Dsro_Number='" + Dsro_Number + "'").Tables[0]; LYFZ.Model.Model_ErpDressSaleRentalOrder DressSaleRentalOrderModel = DressSaleRentalOrderBll.GetModel(Convert.ToInt32(dt.Rows[0]["ID"])); #region 判断输入框不能为空 if (dgv.Rows.Count == 0) { MessageBoxCustom.Show("礼服资料不能为空!请选择礼服!"); return; } if (string.IsNullOrEmpty(txtDsro_Number.Text)) { MessageBoxCustom.Show("单号不能为空!"); return; } if (string.IsNullOrEmpty(txtDsro_TakeDressTime.Text)) { MessageBoxCustom.Show("取衣时间不能为空!"); return; } if (type != "0") { if (string.IsNullOrEmpty(txtDsro_ReservationBackTime.Text)) { MessageBoxCustom.Show("还回时间不能为空!"); return; } if (!string.IsNullOrEmpty(txtDsro_TakeDressTime.Text) && !string.IsNullOrEmpty(txtDsro_ReservationBackTime.Text)) { if (Convert.ToDateTime(txtDsro_TakeDressTime.Text) > Convert.ToDateTime(txtDsro_ReservationBackTime.Text)) { MessageBoxCustom.Show("取衣时间必须小于还衣时间!"); return; } } } #endregion #region 修改礼服租售订单表 DressSaleRentalOrderModel.Dsro_Amount = Convert.ToDecimal(txtDsro_Amount.Text == "" ? "0.00" : txtDsro_Amount.Text); if (type == "0") { DressSaleRentalOrderModel.Dsro_MortgageAmount = 0; } else { DressSaleRentalOrderModel.Dsro_MortgageAmount = Convert.ToDecimal(txtDsro_MortgageAmount.Text == "" ? "0.00" : txtDsro_MortgageAmount.Text); } DressSaleRentalOrderModel.Dsro_TakeDressTime = Convert.ToDateTime(txtDsro_TakeDressTime.Text.ToString()); if (type == "0") { DressSaleRentalOrderModel.Dsro_ReservationBackTime = Convert.ToDateTime(null); } else { //LYFZ.BLL.BLL_ErpSystemConfigure SystemConfigureBll = new BLL.BLL_ErpSystemConfigure(); //DataTable dts = SystemConfigureBll.GetList("Sconfig_Code='AlsoClothesDay'").Tables[0]; //DateTime Day = new DateTime(); //if (dts.Rows.Count > 0) //{ // Day = Convert.ToDateTime(txtDsro_TakeDressTime.Text).AddDays(Convert.ToDouble(dts.Rows[0]["Sconfig_Value"].ToString())); //} //else { Day = Convert.ToDateTime(txtDsro_TakeDressTime.Text); } DressSaleRentalOrderModel.Dsro_ReservationBackTime = Convert.ToDateTime(txtDsro_ReservationBackTime.Text.ToString()); } DressSaleRentalOrderModel.Dsro_Remark = txtDsro_Remark.Text.Trim(); DressSaleRentalOrderModel.Dsro_UpdateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime(); DressSaleRentalOrderModel.Dsro_UpdateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; DressSaleRentalOrderModel.Dsro_CreateName = txtDsro_CreateName.Tag.ToString(); DressSaleRentalOrderBll.Update(DressSaleRentalOrderModel); #endregion bl = true; MessageBoxCustom.Show("保存成功!"); } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } #endregion #region 关闭 protected override void btnClose_Click(object sender, EventArgs e) { this.Close(); } #endregion #region 时间输入框设置 protected override void txtDsro_ReservationBackTime_Leave(object sender, EventArgs e) { if (this.txtDsro_ReservationBackTime.Text.Trim() != "") { if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDsro_ReservationBackTime.Text.Trim()) == false) { this.txtDsro_ReservationBackTime.Text = ""; MessageBoxCustom.Show("还回时间格式输入错误"); txtDsro_ReservationBackTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd"); } } } protected override void txtDsro_ReservationBackTime_Enter(object sender, EventArgs e) { if (this.txtDsro_ReservationBackTime.Text == "") { txtDsro_ReservationBackTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd"); } } protected override void txtDsro_TakeDressTime_Leave(object sender, EventArgs e) { if (this.txtDsro_TakeDressTime.Text.Trim() != "") { if (LYFZ.Command.Command_Validate.IsDateTime(this.txtDsro_TakeDressTime.Text.Trim()) == false) { this.txtDsro_TakeDressTime.Text = ""; MessageBoxCustom.Show("取衣时间格式输入错误"); txtDsro_TakeDressTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd"); } } } protected override void txtDsro_TakeDressTime_Enter(object sender, EventArgs e) { if (this.txtDsro_TakeDressTime.Text == "") { txtDsro_TakeDressTime.Text = Convert.ToDateTime(LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime()).ToString("yyyy-MM-dd"); } } #endregion #region 输入框设置 protected override void txtDsro_MortgageAmount_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件 } else if (Char.IsPunctuation(e.KeyChar)) { if (e.KeyChar == '.') { if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1) { e.Handled = true; } } else { e.Handled = true; } } } protected override void txtDsro_Amount_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar)) { e.Handled = true; //获取或设置一个值,指示是否处理过System.Windows.Forms.Control.KeyPress事件 } else if (Char.IsPunctuation(e.KeyChar)) { if (e.KeyChar == '.') { if (((System.Windows.Forms.TextBox)sender).Text.LastIndexOf('.') != -1) { e.Handled = true; } } else { e.Handled = true; } } } #endregion #region 绑定第二级人员 /// /// 绑定第二级人员 /// /// TreeView的节点集合 /// 数据源 /// private void CreateTreeViewDepartmentUser(TreeNodeCollection nodes, string ClassCode) { if (ClassCode != "") { LYFZ.BLL.BLL_ErpUser BLLerpuser = new BLL.BLL_ErpUser(); DataTable tbl = BLLerpuser.GetList("User_Department='" + ClassCode + "' and id!='1' and User_Status='在职'").Tables[0]; if (tbl.Rows.Count > 0) { TreeNode node; for (int i = 0; i < tbl.Rows.Count; i++) { node = new TreeNode(); node.Text = tbl.Rows[i]["User_Name"].ToString(); node.Tag = tbl.Rows[i]["User_EmployeeID"].ToString(); node.Name = tbl.Rows[i]["User_Account"].ToString(); nodes.Add(node); } } } } #endregion #region 选择 protected override void btnSelect_Click(object sender, EventArgs e) { LYFZ.Software.MainBusiness.Dresses.FrmDressManagement set = new MainBusiness.Dresses.FrmDressManagement(); set.Type = "Update"; set.TakeTimeClothes = txtDsro_TakeDressTime.Text; set.ShowDialog(); if (!string.IsNullOrEmpty(set.Qd)) { #region 获取礼服资料 LYFZ.BLL.BLL_ErpDressFrom DressFromBll = new BLL.BLL_ErpDressFrom(); string[] Dsfm_DressNumbers = set.Qd.Split(','); for (int t = 0; t < Dsfm_DressNumbers.Length; t++) { DataTable dt = DressFromBll.View_tb_ErpDressFrom(" and Dsfm_DressNumber='" + Dsfm_DressNumbers[t] + "'").Tables[0]; #region DataGridViewRow dgvr = new DataGridViewRow(); DataGridViewCell cell = null; cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[0]["ID"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[0]["Dsfm_DressNumber"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[0]["Dsfm_DressName"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = "1"; dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[0]["Dsfm_CostPrice"].ToString().Trim(); dgvr.Cells.Add(cell); cell = new DataGridViewTextBoxCell(); cell.Value = dt.Rows[0]["Dsfm_SalePrice"].ToString().Trim(); dgvr.Cells.Add(cell); this.dgv.Rows.Add(dgvr); #endregion } dgv.ClearSelection(); #endregion } } #endregion #region 保存 protected override void btnOk_Click(object sender, EventArgs e) { try { DataTable dt = new DataTable(); string ty = ""; LYFZ.BLL.BLL_ErpOrder Orderbll = new LYFZ.BLL.BLL_ErpOrder(); LYFZ.BLL.BLL_ErpDressSaleRentalDetail DressSaleRentalDetailbll=new BLL.BLL_ErpDressSaleRentalDetail(); LYFZ.Model.Model_ErpDressSaleRentalDetail DressSaleRentalDetailModel = new Model.Model_ErpDressSaleRentalDetail(); //增加 string Dsro_Number = txtDsro_Number.Text.Trim(); if (dgv.Rows.Count > 0) { for (int i = 0; i < dgv.Rows.Count; i++) { string Dsfm_DressNumber = dgv.Rows[i].Cells["Dsfm_DressNumber"].Value.ToString(); dt = DressSaleRentalDetailbll.GetList("Dsrd_DressNumber='" + Dsfm_DressNumber + "' and Dsrd_Number='" + Dsro_Number + "'").Tables[0]; if (dt.Rows.Count <= 0) { #region 判断礼服是否撞期 if (dgv.Rows.Count > 0) { DataTable dt_DressSaleRentalDetail = Orderbll.GetView_Custom("View_DressSaleRentalDetail", StrWhere: "Dsro_Type='0' and Dsrd_BackStatus='3'", ShowColumnName: "Id,Dsrd_Number,Dsrd_DressNumber,Dsrd_DressName,Dsrd_SaleRentalQuantity,Dsrd_CostPrice,Dsrd_SalePrice,Dsrd_BackTime,Dsrd_BackStatus,Dsrd_BackRemark,Dsrd_CreateDateTime,Dsrd_CreateName,Dsrd_UpdateDateTime,Dsrd_UpdateName,Dsro_Number,Dsro_Type,Dsro_Amount,Dsro_MortgageAmount,Dsro_CustomerNumber,Dsro_TakeDressTime,Dsro_ReservationBackTime,Dsro_Remark,Dsro_CreateDateTime,Dsro_CreateName,Dsro_UpdateDateTime,Dsro_UpdateName,Cus_Name,还衣天数,还衣天数取衣日期,还衣天数加还衣日期,Dsfm_RentPrice").Tables[0]; for (int y = 0; y < dgv.Rows.Count; y++) { //选择取衣时间 DateTime TakeClothesTime = Convert.ToDateTime(txtDsro_TakeDressTime.Text); DataRow[] row_DSRD = dt_DressSaleRentalDetail.Select(" Dsrd_DressNumber='" + Dsfm_DressNumber + "' "); if (row_DSRD.Length > 0) { for (int t = 0; t < row_DSRD.Length; t++) { DateTime StarTime = Convert.ToDateTime(row_DSRD[t]["还衣天数取衣日期"]); DateTime StarEnd = Convert.ToDateTime(row_DSRD[t]["还衣天数加还衣日期"]); if (TakeClothesTime >= StarTime && TakeClothesTime <= StarEnd) { ty = "1"; } } if (ty == "1") { MessageBoxCustom.Show("(礼服编号:" + Dsfm_DressNumber + " " + " 礼服名称:" + dgv.Rows[i].Cells["Dsfm_DressName"].Value.ToString() + ") 已经撞期,无法租售"); return; } } } } #endregion DressSaleRentalDetailModel.Dsrd_Number = Dsro_Number; DressSaleRentalDetailModel.Dsrd_DressNumber = dgv.Rows[i].Cells["Dsfm_DressNumber"].Value.ToString(); DressSaleRentalDetailModel.Dsrd_DressName = dgv.Rows[i].Cells["Dsfm_DressName"].Value.ToString(); DressSaleRentalDetailModel.Dsrd_SaleRentalQuantity = Convert.ToInt32(dgv.Rows[i].Cells["Dsfm_DressQuantity"].Value); DressSaleRentalDetailModel.Dsrd_CostPrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_CostPrice"].Value); DressSaleRentalDetailModel.Dsrd_SalePrice = Convert.ToDecimal(dgv.Rows[i].Cells["Dsfm_SalePrice"].Value); DressSaleRentalDetailModel.Dsrd_CreateDateTime = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.GetServerDateTime(); DressSaleRentalDetailModel.Dsrd_CreateName = LYFZ.Software.MainBusiness.CommonLogical.SuccessfulLogin.LoginUserModel.User_EmployeeID; DressSaleRentalDetailModel.Dsrd_BackTime = Convert.ToDateTime(null); DressSaleRentalDetailModel.Dsrd_BackStatus = "3"; DressSaleRentalDetailModel.Dsrd_BackRemark = ""; DressSaleRentalDetailbll.Add(DressSaleRentalDetailModel); } } } MessageBoxCustom.Show("保存成功!"); bind(); } catch (Exception ex) { MessageBoxCustom.Show(ex.Message); } } #endregion } }