* unimarc
a. 팩스전송 완료. b. 마크목록 폼 작성중 1. 엑셀반출 기능 추가중 사용 작업중 2. 마크편집 폼 수정 중 (마크 반출 test프로젝트 진행완료, 본 프로젝트에 적용중. / 저장기능활성화 작업완료) 2-1. 기존의 칸채우기에서 예상되지 못한 버그가 발생하여 칸채우기 숨김. 2-2. 008태크 재배치 => TextBox에 적용완료. 변경사항 메모장으로 넘기는 작업 완료. 2-3. 저장기능 완료. (04.14 체크해볼것) * ISBN 체크 프로그램 - ★작업완료★ a. 현재 마크팀 배포완료. - 추후 수정사항발생시 수정할 것. -- 완료 -- 1. 주문관리 팩스연동 완료 2. 전송된 팩스 확인 작업개시, 이메일 전송모듈 수정완료. 3. 주문관리에서 주문처와 목록 검색하는 폼 검색 모듈도 재수정 완료함.
This commit is contained in:
@@ -15,6 +15,7 @@ namespace ExcelTest
|
||||
public string find;
|
||||
public string change;
|
||||
public string call = "";
|
||||
private string data008 = string.Empty;
|
||||
string tbName = "";
|
||||
public int checkCout = 0;
|
||||
public bool gridViewChk = false; // True / False
|
||||
@@ -997,6 +998,7 @@ namespace ExcelTest
|
||||
if (check == false) { ArrayChar[idx] = '0'; }
|
||||
else if(check == true) { ArrayChar[idx] = '1'; }
|
||||
text008.Text = new string(ArrayChar);
|
||||
Apply_Main_marc();
|
||||
}
|
||||
/// <summary>
|
||||
/// 색상 변경함수
|
||||
@@ -1991,6 +1993,7 @@ namespace ExcelTest
|
||||
string result = TagNum[a].Substring(0, 3);
|
||||
if (TagNum[a].Substring(0,3) == "008") {
|
||||
text008.Text = field[a].Replace("▲", "");
|
||||
data008 = text008.Text;
|
||||
}
|
||||
else {
|
||||
}
|
||||
@@ -2011,8 +2014,11 @@ namespace ExcelTest
|
||||
string text = text008.Text;
|
||||
string comboName = ((ComboBox)sender).Name;
|
||||
int comboIdx = ((ComboBox)sender).SelectedIndex;
|
||||
|
||||
|
||||
text008.Text = tag008.combo_Change(text, comboName, comboIdx);
|
||||
|
||||
Apply_Main_marc();
|
||||
|
||||
// 입력일자 (00-05)
|
||||
// 발행년유형 (6)
|
||||
// 발행년1 (07-10)
|
||||
@@ -2037,6 +2043,12 @@ namespace ExcelTest
|
||||
// 언어 (35-37) v
|
||||
// 한국정부기관부호 (38-39)
|
||||
}
|
||||
private void Apply_Main_marc()
|
||||
{
|
||||
string text = text008.Text;
|
||||
richTextBox1.Text = richTextBox1.Text.Replace(data008, text);
|
||||
data008 = text;
|
||||
}
|
||||
private void col008res_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (text008.Text.Length < 3) { return; }
|
||||
@@ -2059,6 +2071,19 @@ namespace ExcelTest
|
||||
}
|
||||
text = new string(textArray);
|
||||
text008.Text = text;
|
||||
Apply_Main_marc();
|
||||
}
|
||||
private void input_date_ValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
string date = input_date.Value.ToString();
|
||||
date = date.Substring(0, 10);
|
||||
date = date.Replace("-", "");
|
||||
date = date.Remove(0, 2);
|
||||
|
||||
text008.Text = text008.Text.Remove(0, 6);
|
||||
text008.Text = date + text008.Text;
|
||||
|
||||
Apply_Main_marc();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user