[Bug #1230] Fix issue updating OrderElement name when it's changed in TaskElement
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
9d592e15b8
commit
61332622ed
1 changed files with 3 additions and 0 deletions
|
|
@ -239,6 +239,9 @@ public abstract class TaskElement extends BaseEntity {
|
|||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
if (taskSource != null && taskSource.getOrderElement() != null) {
|
||||
taskSource.getOrderElement().setName(name);
|
||||
}
|
||||
}
|
||||
|
||||
public String getNotes() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue