fix(wms): 修改删除校验提示信息

- 调整发货计划删除时的校验提示文案
- 统一提示信息表述,去除冗余描述
- 保持功能逻辑不变,仅优化用户体验
This commit is contained in:
2025-12-11 09:34:54 +08:00
parent 66c6d6d7c8
commit 409a8e3555

View File

@@ -149,7 +149,7 @@ public class WmsDeliveryPlanServiceImpl implements IWmsDeliveryPlanService {
);
if (count > 0) {
throw new ServiceException("发货计划下存在收货计划明细,无法删除");
throw new ServiceException("计划下存在明细,无法删除");
}
}
}