Skip to content

Commit

Permalink
some fixes for importService
Browse files Browse the repository at this point in the history
  • Loading branch information
relaxdd committed May 31, 2023
1 parent 1cb0bc7 commit bc30350
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/service/ImportService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,20 @@ class ImportService {

if (!check) continue
else {
it['tableId'] = this.active
list.push(it)
const item: IWorkTableRow = {
id: it.id,
tableId: this.active,
start: it.start,
finish: it.finish,
entity: it.entity,
isPaid: it.isPaid,
description: it.description,
}

list.push(item)
}
}

return list
}
}
Expand Down

0 comments on commit bc30350

Please sign in to comment.