This commit is contained in:
xd 2024-06-03 07:58:35 +08:00
parent 214c60a713
commit ea00a18ad2
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ public class quotJswController extends BaseController {
public R<String> updateQuot(@RequestBody String quotJson)
{
quotModel quot = JSON.parseObject(quotJson, quotModel.class);
if(StringUtils.isBlank(quot.getQuotJswCode())){
/*if(StringUtils.isBlank(quot.getQuotJswCode())){
return R.fail("金思维报价单号不能为空");
}
if(StringUtils.isBlank(quot.getQuotCode())){
@ -37,7 +37,7 @@ public class quotJswController extends BaseController {
}
if(StringUtils.isBlank(quot.getQuotMatpriceDiff())){
return R.fail("整单料价价差率不能为空");
}
}*/
return R.ok();
}
}