...
|
...
|
@@ -317,7 +317,7 @@ public class ProductServiceImpl implements ProductService{ |
|
|
|
|
|
private StoragePrice checkSkupCanCancel(Integer skup, Integer status) {
|
|
|
LOGGER.info("checkSkupCanCancel skup = {}", skup);
|
|
|
if (status == null || status < 101 || status > 103) {
|
|
|
if (status == null || status != 1) {
|
|
|
throw new ServiceException(400, "status状态错误:" + skup);
|
|
|
}
|
|
|
StoragePrice sp = storagePriceMapper.selectBySkup(skup);
|
...
|
...
|
|