Skip to content

Commit

Permalink
fix: importer fields for records (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Dec 1, 2024
1 parent 7beb82d commit 5e1e85d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ public function handle(): void
'present_voters_supliment' => $row['b3'],
'present_voters_mail' => 0, //$row['b4'],

'votes_valid' => $row['c'],
'votes_null' => $row['d'],
'votes_valid' => $row['e'],
'votes_null' => $row['f'],

'papers_received' => $row['e'],
'papers_unused' => $row['f'],
'papers_received' => $row['c'],
'papers_unused' => $row['d'],

'has_issues' => false,
]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ public function handle(): void
'present_voters_supliment' => $row['b3'],
'present_voters_mail' => 0, //$row['b4'],

'votes_valid' => $row['c'],
'votes_null' => $row['d'],
'votes_valid' => $row['e'],
'votes_null' => $row['f'],

'papers_received' => $row['e'],
'papers_unused' => $row['f'],
'papers_received' => $row['c'],
'papers_unused' => $row['d'],

'has_issues' => false,
]);
Expand Down

0 comments on commit 5e1e85d

Please sign in to comment.