|
@@ -46,7 +46,7 @@ public class CmBrandAuthProductService extends CrudService<CmBrandAuthProductDao
|
|
|
String displaySnCode = product.getSnCode();
|
|
|
if (displaySnCode.length() > 6) {
|
|
|
String prefixStr = displaySnCode.substring(0, 2);
|
|
|
- String suffixStr = displaySnCode.substring(displaySnCode.length() - 3);
|
|
|
+ String suffixStr = displaySnCode.substring(displaySnCode.length() - 4);
|
|
|
displaySnCode = prefixStr;
|
|
|
for (int i = 0; i < product.getSnCode().length() - 6; i++) {
|
|
|
displaySnCode += "*";
|