-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(SIAE): script pour aider le rattachement à leur réseau (grâce à …
…des import csv) (#1109)
- Loading branch information
Showing
1 changed file
with
66 additions
and
0 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
lemarche/networks/management/commands/link_siae_to_network.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import csv | ||
|
||
from lemarche.networks.models import Network | ||
from lemarche.siaes.models import Siae | ||
from lemarche.utils.commands import BaseCommand | ||
|
||
|
||
class Command(BaseCommand): | ||
""" | ||
poetry run python manage.py link_siae_to_network --file file.csv --network 8 --siret-column 'SIRET' --dry-run | ||
poetry run python manage.py link_siae_to_network --file file.csv --network 8 --siret-column 'SIRET' | ||
""" | ||
|
||
def add_arguments(self, parser): | ||
parser.add_argument("--file", type=str, help="Path to the CSV file") | ||
parser.add_argument("--network", type=int, help="Network ID") | ||
parser.add_argument("--siret-column", dest="siret_column", help="Name of the SIRET column") | ||
parser.add_argument("--dry-run", dest="dry_run", action="store_true", help="Dry run (no changes to the DB)") | ||
|
||
def handle(self, *args, **options): | ||
siae_list = list() | ||
network = Network.objects.get(id=options["network"]) | ||
|
||
self.stdout_info("-" * 80) | ||
self.stdout_info("Reading file...") | ||
|
||
with open(options["file"]) as csv_file: | ||
csvreader = csv.DictReader(csv_file, delimiter=",") | ||
for index, row in enumerate(csvreader): | ||
row["index"] = index + 2 | ||
siae_list.append(row) | ||
|
||
self.stdout_info(f"Found {len(siae_list)} siae.") | ||
|
||
self.stdout_info("-" * 80) | ||
self.stdout_info(f"Network to attach: {network.name}") | ||
self.stdout_info(f"Siae already linked: {network.siaes.count()}") | ||
|
||
self.stdout_info("-" * 80) | ||
self.stdout_info("Running for loop...") | ||
|
||
siae_missing = 0 | ||
siae_has_network = 0 | ||
siae_network_added = 0 | ||
|
||
for index, s in enumerate(siae_list): | ||
siae_qs = Siae.objects.filter(siret=s[options["siret_column"]]) | ||
if siae_qs.count(): | ||
for siae in siae_qs: | ||
if network in siae.networks.all(): | ||
# Siae Network already linked | ||
siae_has_network += 1 | ||
else: | ||
# Siae Network new link | ||
siae_network_added += 1 | ||
if not options["dry_run"]: | ||
siae.networks.add(network) | ||
else: | ||
# Siae missing | ||
siae_missing += 1 | ||
|
||
self.stdout_info("-" * 80) | ||
self.stdout_info("Recap") | ||
self.stdout_info(f"Siae not found: {siae_missing}") | ||
self.stdout_info(f"Siae already linked: {siae_has_network}") | ||
self.stdout_info(f"Siae new links: {siae_network_added}") |