feat: 实现出库单带明细创建 Service(含 CodeGen 单据号生成)

- IostorInvService 接口新增 createIostorInvWithDetails 方法
- IostorInvServiceImpl 实现:单据号生成、主表+明细事务写入
- ErrorCodeConstants 新增 IOSTOR_INV_BILL_CODE_GENERATE_FAIL
This commit is contained in:
zhouz
2026-07-22 09:49:07 +08:00
parent 6c8020d1c3
commit a8d18e304c
3 changed files with 84 additions and 0 deletions

View File

@@ -25,4 +25,7 @@ public interface ErrorCodeConstants {
// ================ 组盘记录相关错误码 =================
ErrorCode GROUP_PLATE_NOT_EXISTS = new ErrorCode(9, "组盘记录不存在");
// ========== 出入库单 1-030-001-000 ==========
ErrorCode IOSTOR_INV_BILL_CODE_GENERATE_FAIL = new ErrorCode(1_030_001_000, "单据号生成失败,请稍后重试");
}