//保存按钮操作 private void save_Product_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.tb_productNO.Text.Trim())) { MessageBox.Show("半成品编号不能为空"); return; } HYPDM.Entities.PDM_ALL_PRODUCT temp_product = new HYPDM.Entities.PDM_ALL_PRODUCT(); temp_product.PRODUCTID = Guid.NewGuid().ToString(); temp_product.PRODUCTNO = this.tb_productNO.Text; temp_product.MODELTYPE = this.tb_modeType.Text; temp_product.PRODUCTTYPE = this.tb_productType.Text; temp_product.PRODUCTLEVEL = this.m_type; temp_product.VERSION = "V" + DateTime.Now.ToString("yyyyMMddHHmm"); temp_product.STATUS = "已创建"; temp_product.CREATER = CommonVar.userName; //temp_product.MODIFIER = ""; temp_product.CREATETIME = DateTime.Now.ToString(); //temp_product.MODIFYTIME ; temp_product.MEMO_ZH = this.tb_memoZH.Text; temp_product.MEMO_EN = this.tb_memoEN.Text; temp_product.MEMO = this.rtb_memo.Text; temp_product.Save(); MessageBox.Show("保存成功"); this.Product = temp_product; this.DialogResult = DialogResult.OK; }
//保存按钮操作 private void save_Product_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.tb_productNO.Text.Trim())) { MessageBox.Show("半成品编号不能为空"); return; } HYPDM.Entities.PDM_ALL_PRODUCT temp_product = new HYPDM.Entities.PDM_ALL_PRODUCT(); temp_product.PRODUCTID = Guid.NewGuid().ToString(); temp_product.PRODUCTNO = this.tb_productNO.Text; temp_product.MODELTYPE = this.tb_modeType.Text; temp_product.PRODUCTTYPE = this.tb_productType.Text; temp_product.PRODUCTLEVEL = this.m_type; temp_product.VERSION = "V"+DateTime.Now.ToString("yyyyMMddHHmm"); temp_product.STATUS = "已创建"; temp_product.CREATER = CommonVar.userName; //temp_product.MODIFIER = ""; temp_product.CREATETIME = DateTime.Now.ToString(); //temp_product.MODIFYTIME ; temp_product.MEMO_ZH = this.tb_memoZH.Text; temp_product.MEMO_EN = this.tb_memoEN.Text; temp_product.MEMO = this.rtb_memo.Text; temp_product.Save(); MessageBox.Show("保存成功"); this.Product = temp_product; this.DialogResult = DialogResult.OK; }
/// <summary> /// 基本信息--新建按钮操作 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void toolBaseReg_Click(object sender, EventArgs e) { //1.判断产品编号是否为空 if (string.IsNullOrEmpty(this.tb_productNo.Text.Trim())) { MessageBox.Show("产品编号不能为空"); return; } DataTable dt = m_AllProductService.GetListByNoDetail(this.tb_productNo.Text.Trim()); //1.判断产品是否存在,如果存在是否生产新版本 if (dt.Rows.Count > 0) { if (MessageBox.Show("该产品已存在,是否生产新版本?\n如果不是请更改产品编号!", "确认", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.No) { return; } } //3.保存新的产品记录 HYPDM.Entities.PDM_ALL_PRODUCT temp_product = new HYPDM.Entities.PDM_ALL_PRODUCT(); temp_product.PRODUCTID = Guid.NewGuid().ToString(); temp_product.PRODUCTNO = this.tb_productNo.Text; temp_product.MODELTYPE = this.tb_modelType.Text; temp_product.PRODUCTTYPE = this.tb_productType.Text; temp_product.PRODUCTLEVEL = this.m_type; temp_product.VERSION = "V" + DateTime.Now.ToString("yyyyMMddHHmmss"); temp_product.STATUS = "已创建"; temp_product.CREATER = LoginInfo.LoginID; //temp_product.MODIFIER = ""; temp_product.CREATETIME = DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss"); //temp_product.MODIFYTIME ; temp_product.MEMO_ZH = this.tb_memoZh.Text; temp_product.MEMO_EN = this.tb_memoEn.Text; temp_product.MEMO = this.rtbMemo.Text; temp_product.DEL_FLAG = "N"; temp_product.Save(); MessageBox.Show("保存成功"); //4. 判断显示状态 if (this.opStatus) { //a.显示(派生历史记录,ERC,文档,图纸,技术任务单,产品结构,版本)等tab页面 this.tabControl.TabPages.Add(tab_ProRecord); // this.tabControl.TabPages.Add(tab_Change); this.tabControl.TabPages.Add(tab_Doc); this.tabControl.TabPages.Add(tab_Drawing); this.tabControl.TabPages.Add(tab_productStruct); //this.tabControl.TabPages.Add(tab_TelTask); this.tabControl.TabPages.Add(tab_Version); this.tabControl.TabPages.Add(tab_ExtPro); //b.改变显示属性(产品清空状态 ,产品配置状态) this.opStatus = false; } //5.更新(派生历史记录,ERC,文档,图纸,技术任务单,产品结构,版本)等tab页面列表显示,更新基本属性信息 this.m_product = temp_product; allinit(); }
/// <summary> /// 基本信息--新建按钮操作 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void toolBaseReg_Click(object sender, EventArgs e) { //1.判断产品编号是否为空 if (string.IsNullOrEmpty(this.tb_productNo.Text.Trim())) { MessageBox.Show("产品编号不能为空"); return; } DataTable dt = m_AllProductService.GetListByNoDetail(this.tb_productNo.Text.Trim()); //1.判断产品是否存在,如果存在是否生产新版本 if (dt.Rows.Count>0) { if (MessageBox.Show("该产品已存在,是否生产新版本?\n如果不是请更改产品编号!", "确认", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.No) { return; } } //3.保存新的产品记录 HYPDM.Entities.PDM_ALL_PRODUCT temp_product = new HYPDM.Entities.PDM_ALL_PRODUCT(); temp_product.PRODUCTID = Guid.NewGuid().ToString(); temp_product.PRODUCTNO = this.tb_productNo.Text; temp_product.MODELTYPE = this.tb_modelType.Text; temp_product.PRODUCTTYPE = this.tb_productType.Text; temp_product.PRODUCTLEVEL = this.m_type; temp_product.VERSION = "V" + DateTime.Now.ToString("yyyyMMddHHmmss"); temp_product.STATUS = "已创建"; temp_product.CREATER = LoginInfo.LoginID; //temp_product.MODIFIER = ""; temp_product.CREATETIME = DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss"); //temp_product.MODIFYTIME ; temp_product.MEMO_ZH = this.tb_memoZh.Text; temp_product.MEMO_EN = this.tb_memoEn.Text; temp_product.MEMO = this.rtbMemo.Text; temp_product.DEL_FLAG ="N"; temp_product.Save(); MessageBox.Show("保存成功"); //4. 判断显示状态 if (this.opStatus) { //a.显示(派生历史记录,ERC,文档,图纸,技术任务单,产品结构,版本)等tab页面 this.tabControl.TabPages.Add(tab_ProRecord); // this.tabControl.TabPages.Add(tab_Change); this.tabControl.TabPages.Add(tab_Doc); this.tabControl.TabPages.Add(tab_Drawing); this.tabControl.TabPages.Add(tab_productStruct); //this.tabControl.TabPages.Add(tab_TelTask); this.tabControl.TabPages.Add(tab_Version); this.tabControl.TabPages.Add(tab_ExtPro); //b.改变显示属性(产品清空状态 ,产品配置状态) this.opStatus = false; } //5.更新(派生历史记录,ERC,文档,图纸,技术任务单,产品结构,版本)等tab页面列表显示,更新基本属性信息 this.m_product = temp_product; allinit(); }