Skip to content

Commit

Permalink
FIX acc_facto_receiv_bal_eurof: string on the left
Browse files Browse the repository at this point in the history
  • Loading branch information
bealdav committed Oct 14, 2024
1 parent 46cf9ce commit 33a1111
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ def size(size, data, info=None):
else pad(cut(move.invoice_origin, 10), 10, position="left"),
"ref_f": pad(" ", 25), # autre ref facture
"ref_a": pad(
cut(move.invoice_origin, 14) if p_type == "A" else " ", 14
cut(move.invoice_origin, 14, position="left")
if p_type == "A"
else " ",
14,
), # ref facture de l'avoir
"blanc2": pad(" ", 51), # ref facture de l'avoir
"blanc3": pad(" ", 3), # ref facture de l'avoir
Expand Down

0 comments on commit 33a1111

Please sign in to comment.