fix: correct date_livraison reference in creer_avoir function
This commit is contained in:
parent
ac72d6f896
commit
2705de7a07
1 changed files with 1 additions and 1 deletions
2
api.py
2
api.py
|
|
@ -3729,7 +3729,7 @@ async def creer_avoir(
|
||||||
"client_id": avoir.client_id,
|
"client_id": avoir.client_id,
|
||||||
"date_avoir": (avoir.date_avoir.isoformat() if avoir.date_avoir else None),
|
"date_avoir": (avoir.date_avoir.isoformat() if avoir.date_avoir else None),
|
||||||
"date_livraison": (
|
"date_livraison": (
|
||||||
facture.date_livraison.isoformat() if facture.date_livraison else None
|
avoir.date_livraison.isoformat() if avoir.date_livraison else None
|
||||||
),
|
),
|
||||||
"reference": avoir.reference,
|
"reference": avoir.reference,
|
||||||
"lignes": [
|
"lignes": [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue