------------------------ =====* ISBN 체크 프로그램 *===== ★작업완료★ a. 현재 마크팀 배포완료. - 추후 수정사항발생시 수정할 것. ------------------------ ===== 작업중 ===== 주문관리 폼 재 수정작업중 - 팩스 및 이메일 기록 폼 제작해야함. ㄴ> 작업 완료후 검토하고, 회계로 넘어갈 것. - 회계전환 취소. ㄴ> 작업 완료. 검토중. 검토완료후 마크작업으로 넘어갈 것. (사장님 지시) ===== 보류 ===== b. 마크목록 폼 작성중 1. 엑셀반출 기능 추가중 사용 작업대기중 c. 마크 반입 폼 수정중 1. 불러오기는 되나 저장 기능이 필요함. ===== 완료 ===== 1. 주문관리 팩스연동 완료 2. 전송된 팩스 확인 작업개시, 이메일 전송모듈 수정완료. 3. 주문관리에서 주문처와 목록 검색하는 폼 검색 모듈도 재수정 완료함. 4. 데이터베이스 내 이미지URL을 가져오는작업 완료 목록집계 폼 재 수정작업 완료 - 확인 및 수정 필요. ISBN 체크 프로그램 => 본프로그램에 이식중. ㄴ> 코드는 다 옮겼으나 기존 사용하던 방식과 조금 달라서 버그발생 가능성 있음. ㄴ> 버그 체크 계속 해볼것. 21-04-15 ㄴ> 21_04_20 버그 없음. 2. 마크편집 폼 수정 중 (마크 반출 test프로젝트 진행완료, 본 프로젝트에 적용중. / 저장기능활성화 작업완료) 2-1. 기존의 칸채우기에서 예상되지 못한 버그가 발생하여 칸채우기 숨김. 2-2. 008태크 재배치 => TextBox에 적용완료. 변경사항 메모장으로 넘기는 작업 완료. 2-3. 저장기능 완료. (04.14 체크해볼것 - 완료) 주문관리 작업중 (DataGridView 주문처 엔터키 입력시 검색되게끔 하는 코드작성중) - 21.04.27 완료
184 lines
7.1 KiB
C#
184 lines
7.1 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.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using WindowsFormsApp1.Mac;
|
|
|
|
namespace WindowsFormsApp1.마크
|
|
{
|
|
public partial class Check_ISBN_Sub : Form
|
|
{
|
|
Check_ISBN ci;
|
|
public int row;
|
|
public string Call_API = string.Empty;
|
|
int rowidx;
|
|
public Check_ISBN_Sub(Check_ISBN _ci)
|
|
{
|
|
InitializeComponent();
|
|
ci = _ci;
|
|
}
|
|
|
|
private void btn_Close_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void Check_ISBN_Sub_Load(object sender, EventArgs e)
|
|
{
|
|
Sort_data();
|
|
same_chk(); // 비슷한거 색깔표시
|
|
|
|
dataGridView1.CurrentCell = dataGridView1.Rows[0].Cells[0];
|
|
this.ActiveControl = dataGridView1;
|
|
rowidx = 0;
|
|
}
|
|
private void Sort_data()
|
|
{
|
|
tb_book_name.Text = ci.dataGridView1.Rows[row].Cells["book_name"].Value.ToString();
|
|
tb_author.Text = ci.dataGridView1.Rows[row].Cells["author"].Value.ToString();
|
|
tb_book_comp.Text = ci.dataGridView1.Rows[row].Cells["book_comp"].Value.ToString();
|
|
|
|
if (ci.dataGridView1.Rows[row].Cells["unit"].Value != null)
|
|
tb_price.Text = ci.dataGridView1.Rows[row].Cells["unit"].Value.ToString();
|
|
|
|
else tb_price.Text = "";
|
|
|
|
string data = ci.dataGridView1.Rows[row].Cells["api_data"].Value.ToString();
|
|
|
|
// 도서명 / 저자 / 출판사 / isbn / 출간일 / 카테고리 / 품절여부
|
|
string[] tmp = data.Split('|');
|
|
string[] grid = { "", "", "", "", "", "", "", "", "" };
|
|
|
|
int idx = 9;
|
|
for(int a= 0; a < tmp.Length; a++)
|
|
{
|
|
if (a % idx == 0) grid[0] = tmp[a];
|
|
if (a % idx == 1) grid[1] = tmp[a];
|
|
if (a % idx == 2) grid[2] = tmp[a];
|
|
if (a % idx == 3) grid[3] = tmp[a];
|
|
if (a % idx == 4) grid[4] = tmp[a];
|
|
if (a % idx == 5) grid[5] = change_Date_type(tmp[a]);
|
|
if (a % idx == 6) grid[6] = tmp[a];
|
|
if (a % idx == 7) grid[7] = tmp[a];
|
|
if (a % idx == 8) { grid[8] = tmp[a]; dataGridView1.Rows.Add(grid); }
|
|
}
|
|
}
|
|
private string change_Date_type(string date)
|
|
{
|
|
if (Call_API == "알라딘") {
|
|
MessageBox.Show(date);
|
|
return String.Format("{0:yyyy/MM/dd}", DateTime.Parse(date.Remove(date.IndexOf(" G"))));
|
|
}
|
|
else if (Call_API == "네이버")
|
|
return DateTime.ParseExact(date, "yyyyMMdd", null).ToString("yyyy-MM-dd");
|
|
else
|
|
return date;
|
|
}
|
|
private void same_chk()
|
|
{
|
|
// 도서명, 저자, 출판사, ISBN, 정가
|
|
string[] ori_data = { tb_book_name.Text,
|
|
tb_author.Text,
|
|
tb_book_comp.Text,
|
|
tb_isbn.Text,
|
|
tb_price.Text.Replace(",", "") };
|
|
|
|
for (int a = 0; a < dataGridView1.Rows.Count; a++)
|
|
{
|
|
int chk_idx = 0;
|
|
|
|
if (dataGridView1.Rows[a].Cells["book_name"].Value.ToString() == ori_data[0])
|
|
{
|
|
chk_idx++;
|
|
}
|
|
if (dataGridView1.Rows[a].Cells["author"].Value.ToString().Contains(ori_data[1]) == true)
|
|
{
|
|
chk_idx++;
|
|
}
|
|
if (dataGridView1.Rows[a].Cells["book_comp"].Value.ToString() == ori_data[2])
|
|
{
|
|
chk_idx++;
|
|
}
|
|
if (chk_idx >= 2)
|
|
{
|
|
int pay = Convert.ToInt32(dataGridView1.Rows[a].Cells["price"].Value.ToString());
|
|
int price = 0;
|
|
if (ori_data[4] != "")
|
|
price = Convert.ToInt32(ori_data[4]);
|
|
|
|
if (price - 500 <= pay && pay <= price + 500)
|
|
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.Yellow;
|
|
|
|
else
|
|
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.LightGray;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
|
|
{
|
|
rowidx = e.RowIndex;
|
|
}
|
|
|
|
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
|
|
{
|
|
|
|
if (e != null) { rowidx = e.RowIndex; }
|
|
string book_name = dataGridView1.Rows[rowidx].Cells["book_name"].Value.ToString();
|
|
string author = dataGridView1.Rows[rowidx].Cells["author"].Value.ToString();
|
|
string book_comp = dataGridView1.Rows[rowidx].Cells["book_comp"].Value.ToString();
|
|
string isbn = dataGridView1.Rows[rowidx].Cells["isbn"].Value.ToString();
|
|
string price = dataGridView1.Rows[rowidx].Cells["price"].Value.ToString();
|
|
string Date = dataGridView1.Rows[rowidx].Cells["pubDate"].Value.ToString();
|
|
string category = dataGridView1.Rows[rowidx].Cells["category"].Value.ToString();
|
|
string sold = dataGridView1.Rows[rowidx].Cells["sold_out"].Value.ToString();
|
|
string image = dataGridView1.Rows[rowidx].Cells["Column1"].Value.ToString();
|
|
|
|
ci.dataGridView1.Rows[row].Cells["search_book_name"].Value = book_name;
|
|
ci.dataGridView1.Rows[row].Cells["search_author"].Value = author;
|
|
ci.dataGridView1.Rows[row].Cells["search_book_comp"].Value = book_comp;
|
|
ci.dataGridView1.Rows[row].Cells["isbn"].Value = isbn;
|
|
ci.dataGridView1.Rows[row].Cells["price"].Value = price;
|
|
ci.dataGridView1.Rows[row].Cells["pubDate"].Value = Date;
|
|
ci.dataGridView1.Rows[row].Cells["category"].Value = category;
|
|
ci.dataGridView1.Rows[row].Cells["sold_out"].Value = sold;
|
|
ci.dataGridView1.Rows[row].Cells["image"].Value = image;
|
|
|
|
ci.dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.Yellow;
|
|
|
|
this.Close();
|
|
}
|
|
|
|
private void dataGridView1_KeyDown(object sender, KeyEventArgs e)
|
|
{
|
|
if (e.KeyCode == Keys.Enter) { dataGridView1_CellDoubleClick(null, null); }
|
|
if (e.KeyCode == Keys.Up)
|
|
{
|
|
rowidx--;
|
|
if (rowidx < 0)
|
|
rowidx = 0;
|
|
}
|
|
if (e.KeyCode == Keys.Down)
|
|
{
|
|
rowidx++;
|
|
if (rowidx > dataGridView1.Rows.Count - 1)
|
|
rowidx = dataGridView1.Rows.Count - 1;
|
|
}
|
|
if (e.KeyCode == Keys.Escape)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
|
|
{
|
|
Skill_Grid sg = new Skill_Grid();
|
|
sg.Print_Grid_Num(sender, e);
|
|
}
|
|
}
|
|
}
|