mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-25 23:05:06 +08:00
assign not bind fields of commons
This commit is contained in:
parent
e7399c1092
commit
25b49b9c27
2 changed files with 2 additions and 2 deletions
|
@ -201,7 +201,7 @@ public class GeneralEntityService extends ObservableService {
|
|||
@Override
|
||||
public int assign(ID record, ID to, String[] cascades) {
|
||||
final User toUser = Application.getUserStore().getUser(to);
|
||||
final Record assignAfter = EntityHelper.forUpdate(record, (ID) toUser.getIdentity());
|
||||
final Record assignAfter = EntityHelper.forUpdate(record, (ID) toUser.getIdentity(), false);
|
||||
assignAfter.setID(EntityHelper.OwningUser, (ID) toUser.getIdentity());
|
||||
assignAfter.setID(EntityHelper.OwningDept, (ID) toUser.getOwningDept().getIdentity());
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<div class="error">
|
||||
<div class="block mt-0">
|
||||
<h4 class="mt-0">系统故障</h4>
|
||||
<div>部分服务未能正常启动,请通过快速检查列表排除故障,故障排除后建议重启服务。你也可以获取 <a href="https://getrebuild.com/?utm_source=rebuild">技术支持</a></div>
|
||||
<div>部分服务未能正常启动,请通过快速检查列表排除故障,故障排除后建议重启服务。你也可以获取 <a href="https://getrebuild.com/contact?sn=#tech-supports">技术支持</a></div>
|
||||
</div>
|
||||
</div>
|
||||
<% } %>
|
||||
|
|
Loading…
Reference in a new issue