|
@@ -226,6 +226,12 @@ public class SaleQuotationController {
|
|
|
public Result<String> edit(@RequestBody SaleQuotationPage saleQuotationPage) {
|
|
|
SaleQuotation saleQuotation = new SaleQuotation();
|
|
|
BeanUtils.copyProperties(saleQuotationPage, saleQuotation);
|
|
|
+
|
|
|
+ String getSourceCode = saleQuotation.getSourceCode();
|
|
|
+
|
|
|
+ if(StringUtils.isBlank(getSourceCode)){
|
|
|
+ return Result.error("网络异常,请刷新后重试 !");
|
|
|
+ }
|
|
|
SaleQuotation saleQuotationEntity = saleQuotationService.getById(saleQuotation.getId());
|
|
|
if (saleQuotationEntity == null) {
|
|
|
return Result.error("未找到对应数据");
|
|
@@ -247,6 +253,13 @@ public class SaleQuotationController {
|
|
|
public Result<String> editHis(@RequestBody SaleQuotationPage saleQuotationPage) {
|
|
|
SaleQuotation saleQuotation = new SaleQuotation();
|
|
|
BeanUtils.copyProperties(saleQuotationPage, saleQuotation);
|
|
|
+
|
|
|
+ String getSourceCode = saleQuotation.getSourceCode();
|
|
|
+
|
|
|
+ if(StringUtils.isBlank(getSourceCode)){
|
|
|
+ return Result.error("网络异常,请刷新后重试 !");
|
|
|
+ }
|
|
|
+
|
|
|
SaleQuotation saleQuotationEntity = saleQuotationService.getById(saleQuotation.getId());
|
|
|
if (saleQuotationEntity == null) {
|
|
|
return Result.error("未找到对应数据");
|