255 lines
		
	
	
		
			8.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			255 lines
		
	
	
		
			8.6 KiB
		
	
	
	
		
			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
 | |
| {
 | |
|     public partial class fLovItem : Form
 | |
|     {
 | |
|         string fn_fpcolsize = "";
 | |
| 
 | |
|         public string itemName { get; set; }
 | |
|         public int item { get; set; }
 | |
|         public string itemmodel { get; set; }
 | |
|         public decimal itemprice { get; set; }
 | |
|         public string SID { get; set; }
 | |
|         public string itemUnit { get; set; }
 | |
|         public string itemSupply { get; set; }
 | |
|         public int itemSupplyidx { get; set; }
 | |
| 
 | |
|         public string itemManu { get; set; }
 | |
| 
 | |
|         public fLovItem(string search_)
 | |
|         {
 | |
|             InitializeComponent();
 | |
| 
 | |
|             fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
 | |
| 
 | |
|             //initial value
 | |
|             itemName = string.Empty;
 | |
|             item = -1;
 | |
|             itemmodel = string.Empty;
 | |
|             itemprice = 0;
 | |
|             SID = string.Empty;
 | |
|             itemUnit = "EA";
 | |
|             itemSupply = string.Empty;
 | |
|             itemSupplyidx = -1;
 | |
|             itemManu = string.Empty;
 | |
| 
 | |
|             this.KeyPreview = true;
 | |
|             this.KeyDown += (s1, e1) =>
 | |
|             {
 | |
|                 if (e1.KeyCode == Keys.Escape) this.Close();
 | |
|             };
 | |
|             this.tbFind.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Enter) Find(); };
 | |
|             this.fpSpread1.KeyDown += (s1, e1) => { btOK.PerformClick(); };
 | |
|             this.fpSpread1.CellDoubleClick += (s1, e1) => { btOK.PerformClick(); };
 | |
|             this.tbFind.Text = search_;
 | |
|         }
 | |
| 
 | |
|         private void fLovItem_Load(object sender, EventArgs e)
 | |
|         {
 | |
|             refreshData(this.tbFind.Text);
 | |
|             this.Show();
 | |
|             Application.DoEvents();
 | |
|             if (this.bs.Count >0) fpSpread1.Focus();
 | |
|             else
 | |
|             {
 | |
|                 tbFind.Focus();
 | |
|                 tbFind.SelectAll();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         Boolean searchOk = false;
 | |
|         void refreshData(string search)
 | |
|         {
 | |
|             if(search == "")
 | |
|             {
 | |
|                // MessageBox.Show("검색어가 없습니다.");
 | |
|                 tbFind.Focus();
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 //search data
 | |
|                 this.ta.FillSearch(this.dsMSSQL.Items, "%" + search + "%", FCOMMON.info.Login.gcode);
 | |
|                 FPUtil.ColSizeLoad(ref this.fpSpread1, fn_fpcolsize);
 | |
| 
 | |
|                 //검색을 수행
 | |
|                 this.taPMP.Fill(this.dSPMP.SPMaster, "%" + search + "%");
 | |
|                 this.arDatagridView1.AutoResizeColumns();
 | |
|                 searchOk = true;
 | |
|             }
 | |
|             
 | |
|             
 | |
|         }
 | |
| 
 | |
|         private void itemsBindingNavigatorSaveItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             var drv = bs.Current as DataRowView;
 | |
|             if (drv == null)
 | |
|             {
 | |
|                 itemName = string.Empty;
 | |
|                 item = -1;
 | |
|                 itemmodel = string.Empty;
 | |
|                 itemprice = 0;
 | |
|                 itemSupply = string.Empty;
 | |
|                 itemSupplyidx = -1;
 | |
|                 itemManu = string.Empty;
 | |
|                 itemUnit = "EA";
 | |
|                 SID = string.Empty;
 | |
|                 return;
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 var dr = drv.Row as dsMSSQL.ItemsRow;
 | |
|                 item = dr.idx;
 | |
|                 if (dr.IsnameNull()) itemName = string.Empty;
 | |
|                 else itemName = dr.name;
 | |
|                 if (dr.IsmodelNull()) itemmodel = string.Empty;
 | |
|                 else itemmodel = dr.model;
 | |
|                 if (dr.IsmanuNull()) itemManu = string.Empty;
 | |
|                 else itemManu = dr.manu;
 | |
|                 if (dr.IspriceNull()) itemprice = 0;
 | |
|                 else itemprice = dr.price;
 | |
|                 if (dr.IssupplyNull()) itemSupply = string.Empty;
 | |
|                 else itemSupply = dr.supply;
 | |
|                 if (dr.IssupplyidxNull()) itemSupplyidx = -1;
 | |
|                 else itemSupplyidx = dr.supplyidx;
 | |
|                 if (dr.IsunitNull()) itemUnit = "EA";
 | |
|                 else itemUnit = dr.unit;
 | |
|                 SID = dr.sid;
 | |
|             }
 | |
| 
 | |
|             if (itemName.isEmpty() || item == -1) DialogResult = System.Windows.Forms.DialogResult.Cancel;
 | |
|             else DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
|         }
 | |
| 
 | |
|         private void bs_CurrentChanged(object sender, EventArgs e)
 | |
|         {
 | |
|             var drv = this.bs.Current as DataRowView;
 | |
|             var img = this.pictureBox1.Image;
 | |
|             if (drv == null)
 | |
|             {
 | |
|                 this.pictureBox1.Image = null;
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 try
 | |
|                 {
 | |
|                     var dr = drv.Row as dsMSSQL.ItemsRow;
 | |
|                     var img1 = FCOMMON.DBM.GetImageData("Items", "image", dr.idx);
 | |
|                     if (img1 != null) this.pictureBox1.Image = img1;
 | |
|                     else this.pictureBox1.Image = null;
 | |
|                 }
 | |
|                 catch 
 | |
|                 {
 | |
|                     this.pictureBox1.Image = null;
 | |
|                 }
 | |
| 
 | |
|             }
 | |
|             if (img != null) img.Dispose();
 | |
|         }
 | |
| 
 | |
|         private void dv_KeyDown(object sender, KeyEventArgs e)
 | |
|         {
 | |
|             if (e.KeyCode == Keys.Enter)
 | |
|             {
 | |
| 
 | |
|                 btOK.PerformClick();
 | |
|             }
 | |
| 
 | |
|         }
 | |
| 
 | |
|         private void dv_DoubleClick(object sender, EventArgs e)
 | |
|         {
 | |
|             btOK.PerformClick();
 | |
|         }
 | |
| 
 | |
|         private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 | |
|         {
 | |
|             var drv = this.bs.Current as DataRowView;
 | |
|             if (drv == null) return;
 | |
|             var dr = drv.Row as dsMSSQL.ItemsRow;
 | |
|             if (dr.RowState == DataRowState.Deleted || dr.RowState == DataRowState.Detached ||
 | |
|                 dr.RowState == DataRowState.Added)
 | |
|             {
 | |
|                 FCOMMON.Util.MsgE("이미지는 등록 완료된 아이템만 가능합니다. 먼저 저장한 후 다시 시도하세요.");
 | |
|                 return;
 | |
|             }
 | |
|             OpenFileDialog od = new OpenFileDialog();
 | |
|             if (od.ShowDialog() != System.Windows.Forms.DialogResult.OK) return;
 | |
|             var image = Image.FromFile(od.FileName);
 | |
|             if (!FCOMMON.DBM.setImageData(image, "Items", "image", dr.idx))
 | |
|             {
 | |
|                 FCOMMON.Util.MsgE("등록 실패");
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 this.pictureBox1.Image = Image.FromFile(od.FileName);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private void resetToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             foreach (FarPoint.Win.Spread.Column col in this.fpSpread1.ActiveSheet.Columns)
 | |
|             {
 | |
|                 col.Width = 100;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private void saveToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             FPUtil.ColsizeSave(this.fpSpread1, fn_fpcolsize);
 | |
|         }
 | |
| 
 | |
|         private void loadToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             FPUtil.ColSizeLoad(ref this.fpSpread1, fn_fpcolsize);
 | |
|         }
 | |
| 
 | |
|         private void btFind_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             Find();
 | |
|         }
 | |
|         void Find()
 | |
|         {
 | |
|             var search = tbFind.Text.Trim();
 | |
|             refreshData(search);
 | |
|             tbFind.SelectAll();
 | |
|             tbFind.Focus();
 | |
|         }
 | |
| 
 | |
|         private void btAdd_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             if(searchOk==false)
 | |
|             {
 | |
|                 FCOMMON.Util.MsgE("먼저 검색을 통해서 아이템을 찾은 후 없다면 신규추가를 눌러 주세요");
 | |
|                 tbFind.Focus();
 | |
|                 tbFind.SelectAll();
 | |
|                 return;
 | |
|             }
 | |
|             var f = new Item.fItemAdd();
 | |
|             if(f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
 | |
|             {
 | |
|                 itemName = f.tbName.Text.Trim();
 | |
|                 item = f.newIDX;
 | |
|                 itemmodel = f.tbModel.Text.Trim();
 | |
|                 itemManu = f.tbManu.Text.Trim();
 | |
|                 decimal price;
 | |
|                 decimal.TryParse(f.tbPrice.Text.Replace(",",""),out price);
 | |
|                 itemprice =price;// decimal.Parse(f.tbPrice.Text.Trim().Replace(",",""));
 | |
|                 SID = f.tbSid.Text.Trim();
 | |
|                 itemUnit = f.tbUnit.Text.Trim();
 | |
|                 itemSupply = f.tbSupply.Text.Trim();
 | |
|                 itemSupplyidx = int.Parse(f.tbSupplyIdx.Text);
 | |
|                 DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | 
