using Sunny.UI; using sunui.forms; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using WMS.Model; using WMS.Untils; namespace WMS.UI.SynthesizeQuery { public partial class FrmQueLiaoAlert : UIForm { public FrmQueLiaoAlert(WMS.yunneiWCS.task _task) { InitializeComponent(); this.lbl_materialCode1.Text = _task.materialCode; this.lbl_materialName1.Text = _task.materialName; this.lbl_supplier1.Text = _task.queLiaoSupplier; this.lbl_createtime1.Text = Convert.ToDateTime(_task.createTime).ToString("yyyy-MM-dd HH:mm:ss"); this.lbl_msg1.Text = _task.remark; } private void FrmHandOutStore_Load(object sender, EventArgs e) { } private void button_confirm_Click(object sender, EventArgs e) { this.Close(); } } }