Files
Groupware/SubProject/FCM0000/Inventory/RepInvStockUser.cs
chikyun.kim 63dffe62ef 190806 chi 품목정보에서 카테고리 없는 자료도 보이게 함
품목정보 정렬 기능 추가
190731  로그기록화면(beta)추가
2019-08-06 11:38:05 +09:00

35 lines
811 B
C#

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;
namespace FCM0000.Inventory
{
public partial class RepInvStockUser : Form
{
string userid = string.Empty;
public RepInvStockUser(string uid)
{
InitializeComponent();
this.userid = uid;
}
private void RepInvStock_Load(object sender, EventArgs e)
{
try
{
this.ta.Fill(this.dSReport.PersonInvStock, this.userid);
this.reportViewer1.RefreshReport();
}catch (Exception ex)
{
FCOMMON.Util.MsgE(ex.Message);
}
}
}
}