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.
64 lines
1.7 KiB
64 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Data;
|
|
using Stone.Entity;
|
|
using Gm_WMS.DataAccess.DataService;
|
|
using Stone.Common;
|
|
|
|
namespace Stone.WinBiz.BasicData
|
|
{
|
|
public class F_Color : F_Base
|
|
{
|
|
public F_Color()
|
|
{
|
|
this.type = "Color";
|
|
this.name = "基础资料_颜色";
|
|
this.entity = new Entity_t_Color();
|
|
this.entityView = new Entity_t_Color();
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
base.GetView(dgv);
|
|
|
|
dgv.Columns["CarType"].HeaderText = "车型";
|
|
dgv.Columns["Code"].HeaderText = "颜色";
|
|
|
|
|
|
|
|
}
|
|
|
|
public override void Checking(DataRow drData, bool isNew)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
public override void InputData(DataSet dsData, LocalDBService db)
|
|
{
|
|
Entity_t_Color t_Input = new Entity_t_Color(db);
|
|
DataRow drInput = null;
|
|
|
|
foreach (DataRow drData in dsData.Tables[0].Rows)
|
|
{
|
|
|
|
drInput = t_Input.Table.NewRow();
|
|
drInput["CarType"] = MyStrings.GetString(drData["车型"].ToString().Trim());
|
|
drInput["Code"] = MyStrings.GetString(drData["颜色"].ToString().Trim());
|
|
|
|
if (drInput["Code"].ToString().Trim() == "")
|
|
throw new Exception("颜色 不能为空!");
|
|
|
|
|
|
//if (t_Input.GetData("", "Code='" + drInput["Code"].ToString() + "'", "id asc").Tables[0].Rows.Count > 0)
|
|
// throw new Exception("颜色 " + drInput["Code"].ToString() + " 已经存在!");
|
|
|
|
t_Input.Add(drInput);
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|