fix(mill): 修正生产计划完成状态值

- 将生产计划完成状态从 "done" 修改为 "Done" 以保持一致性
This commit is contained in:
2026-05-06 15:11:57 +08:00
parent 55ccb0c5c6
commit a9a4e2304c

View File

@@ -97,7 +97,7 @@ public class MillProductionPlanServiceImpl implements IMillProductionPlanService
}
// 2. 更新计划状态为完成(2)
plan.setProdStatus("done");
plan.setProdStatus("Done");
plan.setUpdateBy(SecurityUtils.getUsername());
int updateResult = planMapper.update(plan);
if (updateResult <= 0) {