Commit 5c935b02 by 陈浩建

详细地址过滤掉空格

parent ebea03c6
......@@ -190,6 +190,12 @@ public class PackageNewClothes {
* 身份证验证最后一位 x =》 X
*/
idCard = IDCardUtil.IdCardConversion(idCard);
/**
* 详细地址过滤掉空格
*/
address = address.replace(" ","");
/**
* 身份证验证
*/
......@@ -355,6 +361,12 @@ public class PackageNewClothes {
* 身份证验证最后一位 x =》 X
*/
idCard = IDCardUtil.IdCardConversion(idCard);
/**
* 详细地址过滤掉空格
*/
address = address.replace(" ","");
/**
* 身份证验证
*/
......@@ -490,11 +502,16 @@ public class PackageNewClothes {
}else {
sell = "";
}
/**
* 身份证验证最后一位 x =》 X
*/
idCard = IDCardUtil.IdCardConversion(idCard);
/**
* 详细地址过滤掉空格
*/
address = address.replace(" ","");
/**
* 待识别订单返回进入旧订单入口
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment