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.
48 lines
1.5 KiB
48 lines
1.5 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;
|
|
using Stone.WinBiz.BasicData;
|
|
|
|
namespace Stone.WinBiz.Quality
|
|
{
|
|
public class F_Quality : F_Base
|
|
{
|
|
public F_Quality()
|
|
{
|
|
this.type = "Quality";
|
|
this.name = "基础资料_颜色";
|
|
this.entity = new Entity_t_Quality();
|
|
this.entityView = new Entity_t_Quality();
|
|
this.strOrder = "[AddTime] desc";
|
|
this.dateWhere = "[AddTime]>='{0}' and [AddTime]<='{1}'";
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
base.GetView(dgv);
|
|
|
|
dgv.Columns["productionNumber"].HeaderText = "生产号";
|
|
dgv.Columns["itemNumber"].HeaderText = "零件号";
|
|
dgv.Columns["description"].HeaderText = "零件描述";
|
|
dgv.Columns["CarModelCode"].HeaderText = "车型";
|
|
dgv.Columns["partType"].HeaderText = "零件类型";
|
|
dgv.Columns["State"].HeaderText = "质量状态";
|
|
dgv.Columns["Reason"].HeaderText = "缺陷类型";
|
|
dgv.Columns["Responsibility"].HeaderText = "责任方";
|
|
dgv.Columns["Groups"].HeaderText = "班组";
|
|
dgv.Columns["Station"].HeaderText = "工位";
|
|
dgv.Columns["UserName"].HeaderText = "用户";
|
|
dgv.Columns["AddTime"].HeaderText = "时间";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
|