Removed bill type from the Bills html table

This commit is contained in:
Tom Roussel 2024-03-09 10:13:39 +01:00
parent 0e2534fb12
commit 4c2b357032
2 changed files with 1 additions and 3 deletions

View file

@ -117,7 +117,6 @@
<table id="bill_table" class="col table table-striped table-hover table-responsive-sm">
<thead>
<tr><th>{{ _("When?") }}
</th><th>{{ _("Bill Type") }}
</th><th>{{ _("Who paid?") }}
</th><th>{{ _("For what?") }}
</th><th>{{ _("For whom?") }}
@ -133,7 +132,6 @@
{{ bill.date }}
</span>
</td>
<td>{{ bill.bill_type.value }}</td>
<td>{{ bill.payer }}</td>
<td>{{ bill.what }}</td>
<td>{% if bill.owers|length == g.project.members|length -%}

View file

@ -866,7 +866,7 @@ def settle(amount, ower_id, payer_id):
payer_id=ower_id,
project_default_currency=g.project.default_currency,
bill_type="Reimbursement",
what="settlement",
what="Settlement",
)
session.update()