<오류수정>

1. PMS NO : NULL
2. (주요)작업내용 
(1) Base/Controller/FCommon.cs
    FO/Views/My/MyInfoCheck.cshtml
 -  신청시 주민번호 오류 수정
This commit is contained in:
kdh0120 2021-04-15 00:06:33 +00:00
parent bed5d09284
commit 6a3bb62f3e
2 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ namespace NP.Base.Controllers
ppllog.taxemail = string.Format("{0}@{1}", vm.Assign.taxemail1, vm.Assign.taxemail2); ppllog.taxemail = string.Format("{0}@{1}", vm.Assign.taxemail1, vm.Assign.taxemail2);
if (!string.IsNullOrEmpty(vm.User.userpno1) && !string.IsNullOrEmpty(vm.User.userpno2)) if (!string.IsNullOrEmpty(vm.User.userpno1) && !string.IsNullOrEmpty(vm.User.userpno2))
{ {
ppllog.userpno = string.Format("{0}-{1}", vm.User.userpno1, vm.User.userpno2); ppllog.userpno = string.Format("{0}{1}", vm.User.userpno1, vm.User.userpno2);
} }
ppllog.mobile = string.Format("{0}-{1}-{2}", vm.User.mobile1, vm.User.mobile2, vm.User.mobile3); ppllog.mobile = string.Format("{0}-{1}-{2}", vm.User.mobile1, vm.User.mobile2, vm.User.mobile3);
ppllog.email = string.Format("{0}@{1}", vm.User.email1, vm.User.email2); ppllog.email = string.Format("{0}@{1}", vm.User.email1, vm.User.email2);

View File

@ -30,9 +30,9 @@
<td> <td>
<input type="hidden" name="userpno" id="userpno" value="@u.userpno" /> <input type="hidden" name="userpno" id="userpno" value="@u.userpno" />
<ul class="clsMail mdfy"> <ul class="clsMail mdfy">
<li><input type="text" name="userpno1" id="userpno1" value="@u.userpno.Substring(0,6)" readonly="" style="background-color:#ddd;"></li> <li><input type="text" name="userpno1" id="userpno1" maxlength="6" value="@u.userpno.Substring(0,6)" readonly="" style="background-color:#ddd;"></li>
<li>-</li> <li>-</li>
<li><input type="text" name="userpno2" id="userpno2" value="@u.userpno.Substring(6)"></li> <li><input type="text" name="userpno2" id="userpno2" maxlength="7" value="@u.userpno.Substring(6)"></li>
</ul> </ul>
</td> </td>
</tr> </tr>