Initial commit

This commit is contained in:
ChiKyun Kim
2025-07-17 16:11:46 +09:00
parent 4865711adc
commit 4a1b1924ba
743 changed files with 230954 additions and 0 deletions

View File

@@ -0,0 +1,68 @@
using AR;
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;
namespace Project.Dialog.Debug
{
public partial class fSendInboutData : Form
{
public fSendInboutData()
{
InitializeComponent();
}
public class reelinfo
{
public string ReelId { get; set; }
public string C { get; set; }
public reelinfo()
{
}
}
private void button1_Click(object sender, EventArgs e)
{
//post
var reelinfo = new
{
AMKOR_SID = tbsid.Text,
AMKOR_BATCH = tbbatch.Text,
REEL_ID = tbrid.Text,
REEL_VENDOR_LOT = tblot.Text,
REEL_AMKOR_SID = tbsid.Text,
REEL_QTY = tbqty.Text,
REEL_MANUFACTURER = tbvname.Text,
REEL_PRODUCTION_DATE = tbmfg.Text,
REEL_INCH_INFO = tbinch.Text,
REEL_PART_NUM = tbpart.Text,
EQP_ID = tbeqid.Text,
EQP_NAME = tbeqname.Text,
BADGE = tbbadge.Text,
OPER_NAME = tboper.Text,
HOST_NAME = System.Net.Dns.GetHostEntry("").HostName,
};
var rlt = Amkor.RestfulService.Inbound_label_attach_reel_info(reelinfo, out string errmsg);
if (rlt == false) UTIL.MsgE(errmsg);
}
private void button2_Click(object sender, EventArgs e)
{
//read
}
private void fSendInboutData_Load(object sender, EventArgs e)
{
tbeqid.Text = AR.SETTING.Data.MCID;
tbeqname.Text = $"Label Attach {tbeqid.Text}";
}
}
}