schangxiang@126.com
2025-09-04 9fcc7df37205632d94665af7fc7ea56650e79789
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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();
        }
 
 
 
    }
}