编辑订单不允许修改上级

This commit is contained in:
gaoqr
2026-04-16 19:15:49 +08:00
parent 2ed11039bb
commit 81d33ca911
@@ -260,6 +260,8 @@ public class OrderServiceImpl implements OrderService {
}
// 订单类型
updateObj.setOrderType(getOrderType(parentId, updateReqVO.getOrderType()));
// 不允许修改上级
updateObj.setParentId(null);
orderMapper.updateById(updateObj);
}