소스 검색

Fixed not all data being copied when cretaing new form.

Kenric Nugteren 9 달 전
부모
커밋
882373f7ad
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      prs.desktop/MainWindow.xaml.cs

+ 2 - 1
prs.desktop/MainWindow.xaml.cs

@@ -2387,8 +2387,9 @@ public partial class MainWindow : IPanelHostControl
         where TEntityLink : EntityLink<TEntity>, new()
     {
         var entityForm = new TEntityForm();
-        entityForm.Form.ID = form.ID;
+        entityForm.Form.CopyFrom(form);
         entityForm.Description = form.Description;
+        entityForm.FormStarted = DateTime.Now;
         var entity = DFUtils.NewEntity<TEntityForm, TEntity, TEntityLink>(form);
         if (DynamicFormEditWindow.EditDigitalForm(entityForm, out var dataModel, entity))
         {