fix(mill): 修正生产计划完成状态值
- 将生产计划完成状态从 "done" 修改为 "Done" 以保持一致性
This commit is contained in:
@@ -97,7 +97,7 @@ public class MillProductionPlanServiceImpl implements IMillProductionPlanService
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 2. 更新计划状态为完成(2)
|
// 2. 更新计划状态为完成(2)
|
||||||
plan.setProdStatus("done");
|
plan.setProdStatus("Done");
|
||||||
plan.setUpdateBy(SecurityUtils.getUsername());
|
plan.setUpdateBy(SecurityUtils.getUsername());
|
||||||
int updateResult = planMapper.update(plan);
|
int updateResult = planMapper.update(plan);
|
||||||
if (updateResult <= 0) {
|
if (updateResult <= 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user