修复:新增组织复制自定义板编号配置时错误增加organid=1的seq数据

This commit is contained in:
gaoqr
2026-03-19 14:43:47 +08:00
parent 4fb19a6bf6
commit b600e18132
@@ -596,7 +596,9 @@ public class OrganServiceImpl implements OrganService {
.build()); .build());
// 初始化组织自定义板编号序列 // 初始化组织自定义板编号序列
customPlateNoSeqMapper.insert(new CustomPlateNoSeqDO()); CustomPlateNoSeqDO customPlateNoSeqDO = new CustomPlateNoSeqDO();
customPlateNoSeqDO.setOrganId(organId);
customPlateNoSeqMapper.insert(customPlateNoSeqDO);
} }
} }