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();
|
}
|
}
|
}
|