lxzn-module-tms/src/main/java/org/jeecg/modules/tms/service/impl/OutboundOrderServiceImpl.java
@@ -175,13 +175,14 @@ if (!Objects.equals(outboundOrder.getOrderStatus(), OutBillStatus.DRAFT.getValue())) { throw new JeecgBootException("无法提交非草稿状态的出库申请单!"); } //锁定申请单明细中工具库存 if (lockOutboundStock(id)) { if (!OutStorehouseType.PREPARATION_OUTBOUND.getValue().equals(outboundOrder.getOutStorehouseType())) { //不是从准备单转入的出库申请,执行锁库 lockOutboundStock(id); } //启动流程 if (triggerProcess(outboundOrder)) { outboundOrder.setOrderStatus(OutBillStatus.SUBMITTED.getValue()); updateById(outboundOrder); } } }