|
|
@@ -266,7 +266,7 @@ public class SeekPurchaseBomServiceImpl implements SeekPurchaseBomService {
|
|
|
try {
|
|
|
Double amount = Double.valueOf(StringUtilB2C.replaceLineBreak(StringUtilB2C.getStr(amountValue)));
|
|
|
int amountInt = amount.intValue();
|
|
|
- if (amount <= 0 || amount >= 100000000 || amountInt != amount) {
|
|
|
+ if (amount <= 0 || amount >= 1000000000 || amountInt != amount) {
|
|
|
amount = null;
|
|
|
}
|
|
|
seekPurchaseByBatch.setAmount(amount);
|