Merge branch 'dev_lzh_wms_20260120' into wms_dev

This commit is contained in:
zhou-hongcheng
2026-02-02 14:53:02 +08:00
@@ -129,7 +129,13 @@ public class ShiftManageImpl extends ServiceImpl<ShiftManageMapper, ShiftManage>
shiftMaterialDetailList.add(shiftMaterialDetail);
});
iShiftMaterialDetailService.saveBatch(shiftMaterialDetailList);
return this.updateById(shiftManage);
Boolean b;
if (shiftManage.getShiftManageId() == null){
b = this.save(shiftManage);
}else {
b = this.updateById(shiftManage);
}
return b;
}
/**