* unimarc

a. 팩스전송 완료.
 b. 마크목록 폼 작성중
  1. 엑셀반출 기능 추가중 사용 작업중
  2. 마크편집 폼 수정 중 (마크 반출 test프로젝트 진행완료, 본 프로젝트에 적용중. / 저장기능활성화 작업완료)
   2-1. 기존의 칸채우기에서 예상되지 못한 버그가 발생하여 칸채우기 숨김.
   2-2. 008태크 재배치 => TextBox에 적용완료. 변경사항 메모장으로 넘기는 작업 진행해야함.
   2-3. 현재 TODO : 저장기능

TODOLIST
1. 팩스로 전송될 엑셀파일 밑작업마무리 (입력될 파라미터만 적용하면 실사용가능)
2. 알라딘API, 네이버 API연동중 자잘한 버그 수정작업 필요.
3. Form3 => Line 62 수정작업 필요함.
This commit is contained in:
SeungHo Yang
2021-04-01 18:47:31 +09:00
parent 9eeb4b5ad6
commit 1c0d786a90
22 changed files with 232 additions and 107 deletions

View File

@@ -91,7 +91,6 @@ namespace ISBN_Check_test
}
private string change_Date_type(string date)
{
MessageBox.Show(date);
if (Call_API == "알라딘")
return String.Format("{0:yyyy/MM/dd}", DateTime.Parse(date.Remove(date.IndexOf(" G"))));
else if (Call_API == "네이버")
@@ -106,7 +105,7 @@ namespace ISBN_Check_test
tb_author.Text,
tb_book_comp.Text,
tb_isbn.Text,
tb_price.Text };
tb_price.Text.Replace(",","") };
for(int a= 0; a < dataGridView1.Rows.Count - 1; a++)
@@ -124,7 +123,15 @@ namespace ISBN_Check_test
}
if (chk_idx >= 2) {
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.Yellow;
int price = Convert.ToInt32(ori_data[4]);
int pay = Convert.ToInt32(dataGridView1.Rows[a].Cells["price"].Value.ToString());
if(price-5000 <= pay && pay <= price + 5000)
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.Yellow;
else
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.LightGray;
}
}
}