You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.5 KiB
87 lines
2.5 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
using System.Drawing;
|
||
|
using System.Text;
|
||
|
using System.Windows.Forms;
|
||
|
using Stone.Common;
|
||
|
|
||
|
namespace Stone.WinModule.BasicData
|
||
|
{
|
||
|
public partial class frmPartsFamilyDetail : Stone.WinModule.BasicData.frmBaseMainDetail
|
||
|
{
|
||
|
public frmPartsFamilyDetail()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void frmColorDetail_Load(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override bool GetData()
|
||
|
{
|
||
|
if (!MyValidator.IsEmpty(this.txtCode, "")) return false;
|
||
|
if (!MyValidator.IsEmpty(this.txtName, "")) return false;
|
||
|
base.GetData();
|
||
|
drData["Code"] = MyStrings.GetString(this.txtCode.Text.Trim());
|
||
|
drData["Name"] = MyStrings.GetString(this.txtName.Text.Trim());
|
||
|
drData["CarModelCode"] = MyStrings.GetString(this.txtCarModelCode.Text.Trim());
|
||
|
drData["Memo"] = MyStrings.GetString(this.txtMemo.Text.Trim());
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public override bool SetData()
|
||
|
{
|
||
|
if (type == 2)
|
||
|
{
|
||
|
this.txtCode.ReadOnly = true;
|
||
|
}
|
||
|
|
||
|
if (base.SetData())
|
||
|
{
|
||
|
this.txtCode.Text = drData["Code"].ToString();
|
||
|
this.txtName.Text = drData["Name"].ToString();
|
||
|
this.txtCarModelCode.Text = drData["CarModelCode"].ToString();
|
||
|
this.txtMemo.Text = drData["Memo"].ToString();
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public override void Clear()
|
||
|
{
|
||
|
base.Clear();
|
||
|
this.txtCode.Text = "";
|
||
|
this.txtName.Text = "";
|
||
|
this.txtCarModelCode.Text = "";
|
||
|
this.txtMemo.Text = "";
|
||
|
this.txtCode.Focus();
|
||
|
}
|
||
|
|
||
|
private void txtCarModelCode_OnSelectClick(object sender, EventArgs e)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
frmCarModel frm = new frmCarModel();
|
||
|
frm.m_Base = new WinBiz.BasicData.F_CarModel();
|
||
|
frm.init();
|
||
|
|
||
|
if (frm.ShowSelect(this.txtCarModelCode.Text.Trim())== System.Windows.Forms.DialogResult.OK)
|
||
|
{
|
||
|
this.txtCarModelCode.Text = frm.SelectValue;
|
||
|
}
|
||
|
frm.Dispose();
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
MyMessageBox.ShowErrorMessage(ex.Message);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|