Skip to content

Commit

Permalink
modify line start
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkhao committed May 7, 2024
1 parent 695d147 commit 23a5a60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions export_invoice_edi_auchan/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ def _prepare_export_data(self, idx):
)
)
# segment ligne de fatcure
for idx, line in enumerate(self.invoice_line_ids, start=0):
for idx, line in enumerate(self.invoice_line_ids, start=1):
res.append(
self._render_segment(
LIGSegment,
{
"line": line,
"line_num": idx,
"line_num": str(idx),
},
)
)
Expand Down

0 comments on commit 23a5a60

Please sign in to comment.