Skip to content

Commit

Permalink
Rollback payment_line_item.py changes. (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored May 5, 2022
1 parent a8a627c commit 84e3411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pay-api/src/pay_api/services/payment_line_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def create(invoice_id: int, fee: FeeSchedule, **kwargs):
user: UserContext = kwargs['user']
p = PaymentLineItem()
p.invoice_id = invoice_id
p.total = fee.total
p.total = fee.total_excluding_service_fees
p.fee_schedule_id = fee.fee_schedule_id
p.description = fee.description
p.filing_fees = fee.fee_amount
Expand Down

0 comments on commit 84e3411

Please sign in to comment.