Skip to content

Commit

Permalink
FIX acc_facto_receiv_bal_eurof: pad call
Browse files Browse the repository at this point in the history
  • Loading branch information
bealdav committed Oct 14, 2024
1 parent 33a1111 commit 6742a65
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,9 @@ def size(size, data, info=None):
if p_type == "A"
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, position="left")
if p_type == "A"
else " ",
14,
), # ref facture de l'avoir
"ref_a": pad(cut(move.invoice_origin, 14), 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 6742a65

Please sign in to comment.