Răsfoiți Sursa

Fix Trello importation for ChecklistItems

ZeBBy 7 ani în urmă
părinte
comite
e721dba1e2
1 a modificat fișierele cu 10 adăugiri și 6 ștergeri
  1. 10 6
      models/trelloCreator.js

+ 10 - 6
models/trelloCreator.js

@@ -429,17 +429,21 @@ export class TrelloCreator {
         const checklistId = Checklists.direct.insert(checklistToCreate);
         // keep track of Trello id => WeKan id
         this.checklists[checklist.id] = checklistId;
-        // Now add the items to the checklist
+        // Now add the items to the checklistItems
+        var counter = 0;
         const itemsToCreate = [];
         checklist.checkItems.forEach((item) => {
-          itemsToCreate.push({
-            _id: checklistId + itemsToCreate.length,
+          counter++;
+          const checklistItemTocreate = {
+            _id: checklistId + counter,
             title: item.name,
-            isFinished: item.state === 'complete',
+            checklistId: this.checklists[checklist.id],
+            cardId: this.cards[checklist.idCard],
             sort: item.pos,
-          });
+            isFinished: item.state === 'complete',
+          };
+          ChecklistItems.direct.insert(checklistItemTocreate);
         });
-        Checklists.direct.update(checklistId, {$set: {items: itemsToCreate}});
       }
     });
   }