|
@@ -56,7 +56,7 @@ namespace MySystem
|
|
if(!string.IsNullOrEmpty(Mer.MerIdcardNo))
|
|
if(!string.IsNullOrEmpty(Mer.MerIdcardNo))
|
|
{
|
|
{
|
|
string startNo = Mer.MerIdcardNo.Substring(0, 6);
|
|
string startNo = Mer.MerIdcardNo.Substring(0, 6);
|
|
- string endNo = Mer.MerIdcardNo.Substring(Mer.MerIdcardNo.Length - 4, 4);
|
|
|
|
|
|
+ string endNo = Mer.MerIdcardNo.Substring(Mer.MerIdcardNo.Length - 4, 4).ToUpper();
|
|
string Name = Mer.MerName;
|
|
string Name = Mer.MerName;
|
|
if (Mer.ProductType == "2")
|
|
if (Mer.ProductType == "2")
|
|
{
|
|
{
|
|
@@ -114,7 +114,7 @@ namespace MySystem
|
|
add.MgrName = Mer.AgentName;
|
|
add.MgrName = Mer.AgentName;
|
|
add.MerStatus = 1;
|
|
add.MerStatus = 1;
|
|
add.KqSnNo = Mer.SnNo;
|
|
add.KqSnNo = Mer.SnNo;
|
|
- add.MerIdcardNo = Mer.MerIdcardNo;
|
|
|
|
|
|
+ add.MerIdcardNo = Mer.MerIdcardNo.ToUpper();
|
|
add.MerRealName = Mer.MerRealName;
|
|
add.MerRealName = Mer.MerRealName;
|
|
add.MerchantMobile = Mer.MerMobile;
|
|
add.MerchantMobile = Mer.MerMobile;
|
|
add.MerchantName = Mer.MerName;
|
|
add.MerchantName = Mer.MerName;
|