北京安通林JIS系统
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.
 
 
 

44 lines
1.0 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Stone.WinBiz.BasicData;
using Stone.Entity;
using System.Windows.Forms;
using Stone.Common;
using Stone.WinBiz.SystemData;
namespace Stone.WinBiz.JisData
{
public class F_PJISItem : F_Base
{
public string address = "";
public F_PJISItem(string _address)
{
address = _address;
this.type = "PJISItem";
this.dateWhere = "[DelveryDate]>='{0}' and [DelveryDate]<='{1}'";
this.name = $"PJIS-Item-{F_Common.GetAddress(_address)}";
this.entity = new Entity_t_PJISItem();
}
public override void GetView(DataGridView dgv)
{
base.GetView(dgv);
}
public override void BindPageData(string strWhere)
{
if (entityView == null) entityView = entity;
dsMain = entityView.GetData("", $"({strWhere}) and [Address]='{address}'", strOrder);
dsMain.Tables[0].TableName = "Data";
}
}
}