| 회원번호 |
@if (!Model.IsAdmin)
{
@Html.HiddenFor(m => m.Assign.ascode)@Model.Assign.ascode
}
else
{
@Html.TextBoxFor(m => m.Assign.ascode, new { @class = "form-control int nocomma text-center" })
}
|
| 법인명 |
@Html.TextBoxFor(m => m.Assign.asname, new { @class = "form-control", @maxlength = "100" }) |
대표자 |
@Html.TextBoxFor(m => m.Assign.ceoname, new { @class = "form-control", @maxlength = "50" }) |
| 사업자등록번호 |
@Html.TextBoxFor(m => m.Assign.brno, new { @class = "form-control int nocomma", @maxlength = "10" }) |
고용보험관리번호 |
@Html.TextBoxFor(m => m.Assign.eino, new { @class = "form-control int nocomma", @maxlength = "13" }) |
| 업태 |
@Html.TextBoxFor(m => m.Assign.btype, new { @class = "form-control", @maxlength = "50" }) |
종목 |
@Html.TextBoxFor(m => m.Assign.bkind, new { @class = "form-control", @maxlength = "50" }) |
| 주소 |
@Html.TextBoxFor(m => m.Assign.post, new { @readonly = "readonly", @style = "width: 70px; background-color: #ddd;", @class = "postno form-control disp-init" }) 주소찾기(클릭 후 상단검색)
@Html.TextBoxFor(m => m.Assign.address1, new { @readonly = "readonly", @style = "background-color: #ddd; width: 300px;", @class = "postadr form-control disp-init", @placeholder = "주소" })
@Html.TextBoxFor(m => m.Assign.address2, new { @class = "postadrsub form-control disp-init", @placeholder = "상세주소", @style = "width: 400px;" })
|
| 사업자등록증 |
@Html.Partial("./Partial/File", Model.FileList.Where(w=>w.fgno==Model.Assign.fgnobno).ToList(), new ViewDataDictionary {
{ "name", "Assign.fgnobno" },{"value", Model.Assign.fgnobno },{ "fname", "fgnobno"},
{"width", null },{"table", "assign" },{ "column", "fgnobno"},{"filecount", 1 },
{"readmode", 0 },{"hidemode", 0 },
{ "isimage", 0 },{ "imageid", "" },{ "dftsrc", "/img/common/profile_sample.jpg" },
{ "fileext", "png,jpg,gif,pdf" }, { "loginfo",Model.Assign.asno+"|9"}})
|
| 기본담당자명 |
@Html.TextBoxFor(m => m.Assign.mname, new { @class = "form-control", @maxlength = "50" }) |
| 기본담당자연락처 |
@Html.TextBoxFor(m => m.Assign.mphone, new { @class = "form-control mobilefmt nocomma", @data_zero = "1", @maxlength = "13" }) |
| 계산서이메일 |
@Html.TextBoxFor(m => m.Assign.taxemail, new { @class = "form-control", @maxlength = "50" }) |
| 상태 |
@Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "1:가입;2:탈퇴;9:정지" }, { "checked", Model.Assign.status }, { "name", "Assign.status" } })
|