using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using CoreFS.CA06; using Pur.Entity; using Pur.Entity.ck; namespace Pur.Pop_upWindow { public partial class frmPopJLDaTaReview : FrmPmsBase { private ExcDeliverySubC sub = new ExcDeliverySubC(); public frmPopJLDaTaReview() { InitializeComponent(); } public frmPopJLDaTaReview(OpeBase OB,ExcDeliverySubC subC) { InitializeComponent(); this.ob = OB; sub = subC; } private void frmPopJLDaTaReview_Load(object sender, EventArgs e) { if(sub!=null) { txt_icNo.Text = sub.DeliverySubId; txt_poorder.Text = sub.DeliverySubLineSqe; txt_suppCode.Text = sub.CreateUserid; txt_suppName.Text = sub.CreateName; txt_itemCode.Text = sub.ItemCode; txt_itemName.Text = sub.ItemName; txt_deliveryLocation.Text = sub.UpdateName; txt_deliveryLocationCode.Text = sub.UpdateUserid; txt_A_length.Checked = sub.DeleteName == "1" ? true : false; txt_A_length1.Checked = sub.DeleteName == "0" ? true : false; txt_carNum.Text = sub.CarNum; } } } }