영문저자기호셋팅화면추가, 4인이상 처리시에 서명+출판사 옵션 추가, 4인이상 셋팅여부를 거래처정보에 추가

This commit is contained in:
2025-11-10 21:55:02 +09:00
parent f516deaf69
commit 241cf656b4
13 changed files with 474 additions and 209 deletions

View File

@@ -129,12 +129,14 @@ namespace UniMarc.마크
AuthorSymbol.Symbol sb = new AuthorSymbol.Symbol();
cb_FirstAuthor.Items.AddRange(sb.authorBook);
cb_authorType.Items.AddRange(sb.authorType);
cb_authorTypeK.Items.AddRange(sb.authorType);
cb_authorTypeE.Items.AddRange(sb.authorType);
cb_FirstBook.Items.AddRange(sb.authorFirst);
cb_FirstAuthor.SelectedItem = Symbol_Type[0];
cb_authorType.SelectedItem = Symbol_Type[1];
cb_FirstBook.SelectedItem = Symbol_Type[2];
cb_authorTypeK.SelectedItem = Symbol_Type[1];
cb_authorTypeE.SelectedItem = Symbol_Type[2];
cb_FirstBook.SelectedItem = Symbol_Type[3];
#endregion
#region
@@ -426,9 +428,9 @@ namespace UniMarc.마크
mp.dataGridView1.Rows[row].Cells["idx"].Value.ToString(),
mp.dataGridView1.Rows[row].Cells["ISBN"].Value.ToString()
};
string[] Symbol_Type = {
cb_FirstAuthor.Text, cb_authorType.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
};
//string[] Symbol_Type = {
// cb_FirstAuthor.Text, cb_authorTypeK.Text, cb_authorTypeE.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
//};
Init(marc);
}
@@ -441,9 +443,9 @@ namespace UniMarc.마크
"",
si.dataGridView1.Rows[row].Cells["ISBN"].Value.ToString()
};
string[] Symbol_Type = {
cb_FirstAuthor.Text, cb_authorType.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
};
//string[] Symbol_Type = {
// cb_FirstAuthor.Text, cb_authorTypeK.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
//};
Init(marc);
}
@@ -671,7 +673,7 @@ namespace UniMarc.마크
mp.dataGridView1.Rows[row].Cells["ISBN"].Value.ToString()
};
string[] Symbol_Type = {
cb_FirstAuthor.Text, cb_authorType.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
cb_FirstAuthor.Text, cb_authorTypeK.Text, cb_authorTypeE.Text, cb_FirstBook.Text, cb_divType.Text, cb_divNum.Text
};
Init(marc);
@@ -745,7 +747,8 @@ namespace UniMarc.마크
if (cb_FirstBook.SelectedIndex == 0)
isType[1] = true;
string authorType = cb_authorType.SelectedItem.ToString();
string authorTypeK = cb_authorTypeK.SelectedItem.ToString();
string authorTypeE = cb_authorTypeE.SelectedItem.ToString();
string ClassSymbol = string.Empty;
string Author = string.Empty;
@@ -811,7 +814,7 @@ namespace UniMarc.마크
AuthorSymbol.Symbol sb = new AuthorSymbol.Symbol();
string AuthorSymbol = sb.SymbolAuthor(Author, BookName, authorType, isType);
string AuthorSymbol = sb.SymbolAuthor(Author, BookName, authorTypeK, authorTypeE, isType);
lbl_AuthorSymbol.Text = AuthorSymbol;
lbl_ClassSymbol.Text = ClassSymbol;