xueyu.liu
3 years ago
10 changed files with 223 additions and 4 deletions
Binary file not shown.
@ -0,0 +1,27 @@ |
|||
using Gm_WMS.DataAccess.DataService; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace Stone.Entity |
|||
{ |
|||
public class Entity_t_ErrTypeLevel : EntityBase |
|||
|
|||
{ |
|||
public static string TableNameNew = "t_ErrTypeLevel"; |
|||
|
|||
public Entity_t_ErrTypeLevel() |
|||
{ |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
|
|||
public Entity_t_ErrTypeLevel(LocalDBService myDB) |
|||
{ |
|||
base.db = myDB; |
|||
base.TableName = TableNameNew; |
|||
base.Init(); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,93 @@ |
|||
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_ErrTypeLevel : F_Base |
|||
{ |
|||
public F_ErrTypeLevel() |
|||
{ |
|||
this.type = "PartOutQty"; |
|||
this.name = "基础资料_累计发货数量"; |
|||
this.entity = new Entity_t_ErrTypeLevel(); |
|||
//this.entityView = new Entity_v_Product();
|
|||
} |
|||
|
|||
public override void GetView(DataGridView dgv) |
|||
{ |
|||
base.GetView(dgv); |
|||
|
|||
dgv.Columns["Code"].HeaderText = "类型编码"; |
|||
dgv.Columns["ErrTypeDesc"].HeaderText = "预警类型"; |
|||
dgv.Columns["ErrLevel"].HeaderText = "级别"; |
|||
dgv.Columns["ToPerson"].HeaderText = "邮件通知人"; |
|||
|
|||
} |
|||
|
|||
public override void Checking(DataRow drData, bool isNew) |
|||
{ |
|||
//base.Checking(drData, isNew);
|
|||
|
|||
|
|||
//if ((new F_CarModel()).GetData("Code='" + drData["CarModelCode"].ToString() + "'") == null)
|
|||
// throw new Exception("车型代码 " + drData["CarModelCode"].ToString() + " 不存在!");
|
|||
|
|||
//if ((new F_Color()).GetData("Code='" + drData["ColorCode"].ToString() + "'") == null)
|
|||
// throw new Exception("颜色代码 " + drData["ColorCode"].ToString() + " 不存在!");
|
|||
|
|||
|
|||
//if (MyStrings.GetLength(drData["Name"].ToString()) > 255) throw new Exception("名称不能超过255个字符!");
|
|||
} |
|||
|
|||
|
|||
public override void InputData(DataSet dsData, LocalDBService db) |
|||
{ |
|||
//Entity_t_Product t_Input = new Entity_t_Product(db);
|
|||
//DataRow drInput = null;
|
|||
|
|||
//foreach (DataRow drData in dsData.Tables[0].Rows)
|
|||
//{
|
|||
|
|||
// drInput = t_Input.Table.NewRow();
|
|||
// drInput["Code"] = drData["存货代码"].ToString().Trim();
|
|||
// drInput["Name"] = drData["存货名称"].ToString().Trim();
|
|||
// drInput["CarModelCode"] = drData["车型代码"].ToString().Trim();
|
|||
// drInput["ColorCode"] = drData["颜色代码"].ToString().Trim();
|
|||
// drInput["Model"] = drData["规格型号"].ToString().Trim();
|
|||
// drInput["Deploy"] = drData["配置"].ToString().Trim();
|
|||
// drInput["BarCode"] = drData["条码号"].ToString();
|
|||
// drInput["PackNumer"] = drData["装箱数量"].ToString();
|
|||
// drInput["IsStandard"] = drData["是否STD件"].ToString();
|
|||
// drInput["State"] = drData["启用"].ToString();
|
|||
|
|||
// 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() + " 已经存在!");
|
|||
|
|||
|
|||
// if ((new Entity_t_CarModel(db)).GetData("", "Code='" + drInput["CarModelCode"].ToString() + "'", "id asc").Tables[0].Rows.Count == 0)
|
|||
// throw new Exception("车型代码 " + drInput["CarModelCode"].ToString() + " 不存在!");
|
|||
|
|||
// if ((new Entity_t_Color(db)).GetData("", "Code='" + drInput["ColorCode"].ToString() + "'", "id asc").Tables[0].Rows.Count == 0)
|
|||
// throw new Exception("颜色代码 " + drInput["ColorCode"].ToString() + " 不存在!");
|
|||
|
|||
|
|||
// if (MyStrings.GetLength(drInput["Name"].ToString()) > 255) throw new Exception("名称不能超过255个字符!");
|
|||
|
|||
// //Checking(drInput, true);
|
|||
// t_Input.Add(drInput);
|
|||
|
|||
//}
|
|||
} |
|||
} |
|||
} |
@ -0,0 +1,36 @@ |
|||
namespace Stone.WinModule.BasicData |
|||
{ |
|||
partial class frmErrTypeLevel |
|||
{ |
|||
/// <summary>
|
|||
/// 必需的设计器变量。
|
|||
/// </summary>
|
|||
private System.ComponentModel.IContainer components = null; |
|||
|
|||
/// <summary>
|
|||
/// 清理所有正在使用的资源。
|
|||
/// </summary>
|
|||
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|||
protected override void Dispose(bool disposing) |
|||
{ |
|||
if (disposing && (components != null)) |
|||
{ |
|||
components.Dispose(); |
|||
} |
|||
base.Dispose(disposing); |
|||
} |
|||
|
|||
#region Windows 窗体设计器生成的代码
|
|||
|
|||
/// <summary>
|
|||
/// 设计器支持所需的方法 - 不要
|
|||
/// 使用代码编辑器修改此方法的内容。
|
|||
/// </summary>
|
|||
private void InitializeComponent() |
|||
{ |
|||
this.components = new System.ComponentModel.Container(); |
|||
} |
|||
|
|||
#endregion
|
|||
} |
|||
} |
@ -0,0 +1,26 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel; |
|||
using System.Data; |
|||
using System.Drawing; |
|||
using System.Text; |
|||
using System.Windows.Forms; |
|||
|
|||
namespace Stone.WinModule.BasicData |
|||
{ |
|||
public partial class frmErrTypeLevel : Stone.WinModule.BasicData.frmBaseMain |
|||
{ |
|||
public frmErrTypeLevel() |
|||
{ |
|||
InitializeComponent(); |
|||
} |
|||
|
|||
public override void Search(string code) |
|||
{ |
|||
base.Search(code); |
|||
|
|||
strWhere += " or [Code] like '%" + code + "%'"; |
|||
|
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue