* unimarc

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

* ISBN 체크 프로그램 - ★작업완료★
 a. 현재 마크팀 배포완료. - 추후 수정사항발생시 수정할 것.

TODOLIST
1. 주문관리 팩스연동 완료
2. 전송된 팩스 확인 작업개시
This commit is contained in:
SeungHo Yang
2021-04-08 18:38:14 +09:00
parent 4e2ebbe7e9
commit 2106b47104
28 changed files with 234 additions and 97 deletions

View File

@@ -1138,6 +1138,7 @@ namespace WindowsFormsApp1
private void button3_Click(object sender, EventArgs e)
{
/*
string FilePath = string.Empty;
string filename = string.Empty;
@@ -1155,7 +1156,9 @@ namespace WindowsFormsApp1
MessageBox.Show("엑셀파일만 적용이 가능합니다! | " + Path.GetExtension(filename));
return;
}
}
if (FilePath == "") return;
FTP ftp = new FTP();
@@ -1170,8 +1173,7 @@ namespace WindowsFormsApp1
{
foreach(FileInfo info in dirInfo.GetFiles())
{
if(Path.GetFileName(info.Name) == filename)
{
if(Path.GetFileName(info.Name) == filename) {
if(ftp.UpLoad(path, info.FullName) == false) {
MessageBox.Show("FTP Upload 실패");
}
@@ -1185,7 +1187,8 @@ namespace WindowsFormsApp1
// 바로빌 FAX API연동
Barobill_FAX fax = new Barobill_FAX();
fax.Send_BaroFax(filename);
fax.Send_BaroFax(filename, "", "");
*/
}
}
}