=====* unimarc *=====

== TODO ==
기타 추가적인 버그 잡을것. / 바로빌 세금계산서알아볼것.

===== 작업중 =====

===== 보류 =====
 b. 마크목록 폼 작성중
  1. 엑셀반출 기능 추가중 사용 작업대기중

 c. 마크 반입 폼 수정중
  1. 불러오기는 되나 저장 기능이 필요함.

===== 완료 =====
21.06.21 마크검색 작업완료

마크 편집창에서 메모장, 미리보기, 표지크게보기 기능 추가

21.06.08 자동업데이트 기능 완료 - 프로젝트가 새로 바뀜.

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 완료
This commit is contained in:
SeungHo Yang
2021-06-21 18:34:32 +09:00
parent 2d5f25ac4f
commit 50d5d90789
20 changed files with 1913 additions and 894 deletions

View File

@@ -9,6 +9,8 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using WindowsFormsApp1.Account;
using WindowsFormsApp1.Convenience;
using WindowsFormsApp1.Delivery;
@@ -17,8 +19,6 @@ using WindowsFormsApp1.Home;
using WindowsFormsApp1.Mac;
using WindowsFormsApp1.Work_log;
using WindowsFormsApp1.;
using System.IO;
using WindowsFormsApp1.;
using WindowsFormsApp1.;
@@ -59,6 +59,7 @@ namespace WindowsFormsApp1
if (result[3] == null) { }
else {
toolStripLabel2.Text = result[5];
toolStripLabel1.Text = "이용자 : " + result[3];
User = result[3];
}
@@ -73,6 +74,7 @@ namespace WindowsFormsApp1
catch { }
}
#region
// 홈 탭 클릭이벤트
private User_Infor User_Infor;
private Home_User_manage home_User_Manage;
@@ -189,7 +191,9 @@ namespace WindowsFormsApp1
Home_ledger_Of_Use.Show();
}
}
#endregion
#region
// 납품관리 탭 클릭 이벤트
Commodity_registration Del_commodity_Registration;
List_Lookup del_list_lookup;
@@ -307,7 +311,9 @@ namespace WindowsFormsApp1
del_bring_Back.Show();
}
}
#endregion
#region
// 회계 탭 클릭 이벤트
Remit_reg2 Acc_remit_Reg2;
Purchase_Input Acc_purchase_Input;
@@ -493,6 +499,9 @@ namespace WindowsFormsApp1
Acc_bill_Manage.Show();
}
}
#endregion
#region
// 마크 탭 이벤트
Setup_Shortcut Mac_shortcut;
@@ -836,6 +845,9 @@ namespace WindowsFormsApp1
Mac_equip_Manage.Show();
}
}
#endregion
#region
// 작업일지 탭 이벤트
Work_Log work_Log;
@@ -855,7 +867,9 @@ namespace WindowsFormsApp1
work_Log.Show();
}
}
#endregion
#region
// 편의기능 탭 이벤트
Calendar calendar;
Talk talk;
@@ -1002,7 +1016,9 @@ namespace WindowsFormsApp1
sale_Member_Manage.Show();
}
}
#endregion
#region
// 마스터 탭 이벤트
User_manage master_user_Manage;
Notice_Send master_notice_Send;
@@ -1101,26 +1117,6 @@ namespace WindowsFormsApp1
master_batch_Processing.Show();
}
}
private void button1_Click(object sender, EventArgs e)
{
// 엑셀 테스트
Excel_text et = new Excel_text();
// et.mk_Excel_Order();
}
private void button2_Click(object sender, EventArgs e)
{
ExcelTest.Marc marc = new ExcelTest.Marc();
marc.Show();
}
private void button3_Click(object sender, EventArgs e)
{
string tmp = "[가로수(남경)]갖고놀거";
tmp = tmp.Substring(tmp.IndexOf(']') + 1);
MessageBox.Show(tmp);
}
#endregion
}
}