no message

This commit is contained in:
2024-10-11 00:00:30 +03:00
parent a11b7711f7
commit f317ab1aa1
341 changed files with 1866 additions and 1688 deletions

View File

@@ -1,6 +1,6 @@
package Visual_DVM_2021.Passes.All;
import Common.Current_;
import Common.Utils.CommonUtils;
import Common.Utils.Utils_;
import _VisualDVM.Current;
import _VisualDVM.Visual.UI;
import _VisualDVM.Repository.BugReport.BugReport;
@@ -50,7 +50,7 @@ public class AppendBugReportField extends ComponentsRepositoryPass<BugReport> {
Command(new ServerExchangeUnit_2021(ServerCode.GetObjectCopyByPK, "", new Pair<>(BugReport.class, target.id)));
target.SynchronizeFields((BugReport) response.object);
oldValue = (String) BugReport.class.getField(fieldName).get(target);
newValue = oldValue + "\n" + CommonUtils.Brackets(CommonUtils.print_date(
newValue = oldValue + "\n" + Utils_.Brackets(Utils_.print_date(
new Date())) + " " + Current.getAccount().name
+ " : " + addition;
//2. дописываем нужное поле.
@@ -85,7 +85,7 @@ public class AppendBugReportField extends ComponentsRepositoryPass<BugReport> {
}
passes.get(PassCode.Email).Do(
new EmailMessage(
message_header + " " + CommonUtils.Brackets(Current.getAccount().name),
message_header + " " + Utils_.Brackets(Current.getAccount().name),
message_text,
BugReportInterface.getRecipients(target)
)