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.
36 lines
1.2 KiB
36 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Stone.Entity;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Stone.WinBiz.VerifyData
|
|
{
|
|
public class F_VerifyBill : Stone.WinBiz.BasicData.F_Base
|
|
{
|
|
public F_VerifyBill()
|
|
{
|
|
this.type = "VerifyBill";
|
|
this.name = "校验管理_装箱校验数据";
|
|
this.entity = new Entity_t_VerifyBill();
|
|
}
|
|
|
|
public override void GetView(DataGridView dgv)
|
|
{
|
|
base.GetView(dgv);
|
|
|
|
dgv.Columns["AsnNumber"].HeaderText = "ASN编号";
|
|
dgv.Columns["PackageNo"].HeaderText = "装箱单号";
|
|
dgv.Columns["PackageNo1"].HeaderText = "VDA装箱单号(1)";
|
|
dgv.Columns["PackageNo2"].HeaderText = "VDA装箱单号(2)";
|
|
dgv.Columns["PartNumber"].HeaderText = "零件号";
|
|
dgv.Columns["Qty"].HeaderText = "数量";
|
|
dgv.Columns["BarCode"].HeaderText = "内部装箱单号";
|
|
dgv.Columns["UserName"].HeaderText = "用户名";
|
|
dgv.Columns["AddTime"].HeaderText = "校验时间";
|
|
dgv.Columns["State"].HeaderText = "状态";
|
|
}
|
|
|
|
}
|
|
}
|
|
|