1、调整合同

2、调整项目
3、调整付款管理
This commit is contained in:
2026-08-26 02:31:01 +08:00
parent 8075d3bf4d
commit 792a988c11
13 changed files with 159 additions and 26 deletions
@@ -134,7 +134,7 @@ public class CurrencyServiceImpl extends BaseServiceImpl<CurrencyMapper, Currenc
successCount++;
} catch (Exception exception) {
String message = exception instanceof ServiceException ? exception.getMessage() : "导入失败";
excel.setErrorMessage("" + (index + 2) + "行:" + message);
excel.setErrorMessage(message);
errorList.add(excel);
}
}
@@ -159,7 +159,7 @@ public class RegionServiceImpl extends ServiceImpl<RegionMapper, Region> impleme
this.save(region);
}
} catch (Exception exception) {
excel.setErrorMessage("" + (index + 2) + "行:" + exception.getMessage());
excel.setErrorMessage(exception.getMessage());
errorList.add(excel);
}
}