3
0
Fork 0

## 修改限购提示(366);

This commit is contained in:
cabbage 2025-07-11 18:09:18 +08:00
parent 2d83335200
commit 987a78b89d
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ public class RetailOrderServiceImpl implements IRetailOrderService {
Integer waresNum = waresNumMap.get(waresLimitExt.getWaresCode());
if (null != waresNum
&& waresNum + waresLimitExt.getWaresQuantity() > limitNum) {
throw new ServiceException("商品【" + waresLimitExt.getWaresName() + "】每月限购 \" + limitNum + \"");
throw new ServiceException("商品【" + waresLimitExt.getWaresName() + "】每月限购 " + limitNum + "");
}
}
}