주문내역 엑셀 업로드기능에서 공백제거 추가, 주문내역에서 품목정보 생성하는 기능 추가(관리자)

This commit is contained in:
chi
2024-01-26 11:33:04 +09:00
parent 5d7945d5c9
commit d2c5ed6bd4
39 changed files with 1198 additions and 968 deletions

View File

@@ -1,4 +1,5 @@
using FCOMMON;
using FarPoint.Win.Spread;
using FCOMMON;
using System;
using System.Collections.Generic;
using System.ComponentModel;
@@ -13,6 +14,7 @@ namespace FCM0000
{
public partial class fSIDListSelect : Form
{
public string selectbatch = "";
public fSIDListSelect(string sid,DataTable dt)
{
InitializeComponent();
@@ -25,11 +27,18 @@ namespace FCM0000
if (e1.KeyCode == Keys.Escape) this.Close();
};
this.Width += 150;
this.dv1.Tag = sid;
}
private void toolStripButton1_Click(object sender, EventArgs e)
{
DBM.InsertLog("SIDCHK", this.Text);
var drv = this.bs.Current as DataRowView;
var dr = drv.Row as DataRow;
var v_vatch = dr["batch_no"];
if (v_vatch != null) selectbatch = v_vatch.ToString();
else selectbatch = "";
DialogResult = DialogResult.OK;
}
@@ -42,5 +51,15 @@ namespace FCM0000
{
this.dv1.AutoResizeColumns();
}
private void btopenspm_Click(object sender, EventArgs e)
{
var drv = this.bs.Current as DataRowView;
var dr = drv.Row as DataRow;
var sid = this.dv1.Tag.ToString();
var url = @"https://atknet.amkor.co.kr/#/department/ee/spm";
FCOMMON.Util.RunExplorer(url);
}
}
}