雅琪诺MES智能条码管理系统
jhz
2022-06-30 0d3b2bd4edaa7385e4ff96370c877be237af054b
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace SCM
{
    public partial class Xt_UserDataRight : Form
    {
        public Xt_UserDataRight()
        {
            InitializeComponent();
        }
 
        public string sUserName;
 
        private void Xt_UserDataRight_Load(object sender, EventArgs e)
        {
 
        }
 
        private void cmdWH_Click(object sender, EventArgs e)
        {
            Gy_UserWarehouseRelation oWHDept = new Gy_UserWarehouseRelation();
            oWHDept.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew;
            oWHDept.txtHUserID.Text = sUserName;
            oWHDept.ShowDialog();
        }
 
        private void cmdDept_Click(object sender, EventArgs e)
        {
            Gy_UserDeptRelation oUserDept = new Gy_UserDeptRelation();
            oUserDept.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew;
            oUserDept.txtHUserID.Text = sUserName;
            oUserDept.ShowDialog();
        }
 
        private void cmdJiTai_Click(object sender, EventArgs e)
        {
            Gy_UserJiTaiRelation oUserDept = new Gy_UserJiTaiRelation();
            oUserDept.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew;
            oUserDept.txtHUserID.Text = sUserName;
            oUserDept.ShowDialog();
        }
 
        private void cmdGongDuan_Click(object sender, EventArgs e)
        {
            Gy_UserGongDuanRelation oUserDept = new Gy_UserGongDuanRelation();
            oUserDept.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew;
            oUserDept.txtHUserID.Text = sUserName;
            oUserDept.ShowDialog();
        }
 
        private void cmdOrg_Click(object sender, EventArgs e)
        {
 
            Gy_UserORGRelation oOrg = new Gy_UserORGRelation();
            oOrg.BillStatus = DBUtility.ClsPub.Enum_BillStatus.BillStatus_AddNew;
            oOrg.txtHUserID.Text = sUserName;
            oOrg.ShowDialog();
        }
    }
}