=====* ISBN 조회 *=====

Yes24 - 가격 검색 추가.
DateTime 버그 수정.
검색시 몇개가 검색됬는지 표출.

=====* unimarc *=====
- 목록등록 -
머리글에 맞춰 숫자 입력기능 추가

- 목록조회 -
거래처 엔터시 명단이 출력되고 그 상태에서 엔터 입력 시 해당 데이터 선택으로 간주. 데이터 조회창으로 이관.

- 목록집계 -
필터링 테스트 코드 삭제
엔터 입력시 검색기능 추가
납품처명 필터링 추가

- 주문관리 -
주문할 때 선택 내용 엑셀로 임시저장 추가 + 양식수정, 엑셀 내용 수정.
임시저장된 파일을 미리 설정된 거래처 주문방법에 따라 팩스/메일로 나뉘어져 보내게 됨.
팩스시 FTP업로드, 바로빌 FAX 전송, 전송결과와 주문수량 주문일자 등 자체 DB에 저장됨.
전송결과를 알아볼수있는 창도 리뉴얼.
This commit is contained in:
SeungHo Yang
2021-07-09 16:56:13 +09:00
parent f860054b7f
commit a93843bf5f
48 changed files with 3930 additions and 377 deletions

View File

@@ -21,6 +21,7 @@ using WindowsFormsApp1.Work_log;
using WindowsFormsApp1.;
using WindowsFormsApp1.;
using WindowsFormsApp1.;
using UniMarc.;
namespace WindowsFormsApp1
{
@@ -328,8 +329,24 @@ namespace WindowsFormsApp1
Sales_Not_Pay Acc_sales_Not_Pay;
Sales_Book Acc_sales_book;
Bill_manage Acc_bill_Manage;
Part_time Acc_part_time;
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
if (Acc_part_time != null)
{
Acc_part_time.Focus();
}
else
{
Acc_part_time = new Part_time(this);
Acc_part_time.MdiParent = this;
// Acc_part_time.WindowState = FormWindowState.Maximized;
Acc_part_time.FormClosed += (o, ea) => Acc_part_time = null;
Acc_part_time.Show();
}
}
private void ToolStripMenuItem_Click(object sender, EventArgs e)
{
if (Acc_remit_Reg2 != null)
@@ -1118,5 +1135,6 @@ namespace WindowsFormsApp1
}
}
#endregion
}
}