Skip to content

Commit

Permalink
Add in line to print out invoice id. (#1141)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Mar 14, 2023
1 parent abb75c3 commit 94f9e1f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ async def _process_jv_details_feedback(ejv_file, has_errors, line, receipt_numbe
# Work around for CAS, they said fix the feedback files.
line = _fix_invoice_line(line)
invoice_id = int(line[205:315])
logger.info('Invoice id - %s', invoice_id)
invoice: InvoiceModel = InvoiceModel.find_by_id(invoice_id)
invoice_link: EjvInvoiceLinkModel = db.session.query(EjvInvoiceLinkModel).filter(
EjvInvoiceLinkModel.ejv_header_id == ejv_header_model_id).filter(
Expand Down

0 comments on commit 94f9e1f

Please sign in to comment.