Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
🐛
Don't import only the last remittance...
· 748ad7eb
ynerant
authored
Jul 26, 2020
748ad7eb
Hide whitespace changes
Inline
Side-by-side
management/commands/import_transaction.py
View file @
748ad7eb
...
...
@@ -284,7 +284,7 @@ class Command(ImportCommand):
@transaction.atomic
def
import_remittances
(
self
,
cur
,
chunk_size
):
bulk_mgr
=
BulkCreateManager
(
chunk_size
=
chunk_size
)
cur
.
execute
(
"
SELECT id, date, commentaire, close FROM remises
WHERE id = 105
ORDER BY id;
"
)
cur
.
execute
(
"
SELECT id, date, commentaire, close FROM remises ORDER BY id;
"
)
n
=
cur
.
rowcount
pk_remittance
=
1
...
...
@@ -309,7 +309,7 @@ class Command(ImportCommand):
@timed
def
import_checks
(
self
,
cur
):
cur
.
execute
(
"
SELECT id, nom, prenom, banque, idtransaction, idremise
"
"
FROM cheques
WHERE idremise = 105
ORDER BY id;
"
)
"
FROM cheques ORDER BY id;
"
)
n
=
cur
.
rowcount
for
idx
,
row
in
enumerate
(
cur
):
...
...