This commit is contained in:
xd 2024-07-27 08:17:05 +08:00
parent 4af474b150
commit 105d18a95e
1 changed files with 1 additions and 0 deletions

View File

@ -765,6 +765,7 @@ public class QuotController extends BaseController
//厂价金额小于10万 不走OA审批
String quotTotalPrice = quot.getQuotTotalPrice();//报价金额
quotTotalPrice = StringUtils.isBlank(quotTotalPrice)?"0":quotTotalPrice;
BigDecimal totalPrice = new BigDecimal(quotTotalPrice);
String allowFactoryPrice = configService.selectConfigByKey("quot:allow.factoryPrice");