mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-29 01:42:37 +02:00
Merge 9b514ca7c7
into 56bee93346
This commit is contained in:
commit
8d9e3c7294
3 changed files with 50 additions and 13 deletions
|
@ -281,6 +281,12 @@ class Project(db.Model):
|
||||||
.order_by(Bill.id.desc())
|
.order_by(Bill.id.desc())
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def filter(query, start_date, end_date):
|
||||||
|
return (
|
||||||
|
query.filter(Bill.date >= start_date, Bill.date <= end_date)
|
||||||
|
)
|
||||||
|
|
||||||
def get_bill_weights(self):
|
def get_bill_weights(self):
|
||||||
"""
|
"""
|
||||||
Return all bills for this project, along with the sum of weight for each bill.
|
Return all bills for this project, along with the sum of weight for each bill.
|
||||||
|
@ -302,6 +308,9 @@ class Project(db.Model):
|
||||||
"""Ordered version of get_bill_weights"""
|
"""Ordered version of get_bill_weights"""
|
||||||
return self.order_bills(self.get_bill_weights())
|
return self.order_bills(self.get_bill_weights())
|
||||||
|
|
||||||
|
def get_filtered_bill_weights_ordered(self, start_date, end_date):
|
||||||
|
return self.filter(self.get_bill_weights_ordered(), start_date, end_date)
|
||||||
|
|
||||||
def get_member_bills(self, member_id):
|
def get_member_bills(self, member_id):
|
||||||
"""Return the list of bills related to a specific member"""
|
"""Return the list of bills related to a specific member"""
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -105,6 +105,16 @@
|
||||||
<li class="page-item {% if bills.page == bills.pages %}disabled{% endif %}"><a class="page-link" href="{{ url_for('main.list_bills', page=bills.next_num) }}">{{ _("Older bills") }} »</a></li>
|
<li class="page-item {% if bills.page == bills.pages %}disabled{% endif %}"><a class="page-link" href="{{ url_for('main.list_bills', page=bills.next_num) }}">{{ _("Older bills") }} »</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<form action="{{ url_for(".list_bills") }}" method="post">
|
||||||
|
{{ csrf_form.csrf_token }}
|
||||||
|
<label for="start_date">Start Date:</label>
|
||||||
|
<input type="date" id="start_date" name="start_date" value="{{ start_date if start_date else '' }}">
|
||||||
|
|
||||||
|
<label for="end_date">End Date:</label>
|
||||||
|
<input type="date" id="end_date" name="end_date" value="{{ end_date if end_date else '' }}">
|
||||||
|
|
||||||
|
<input type="submit" value="Filter">
|
||||||
|
</form>
|
||||||
<span id="new-bill" class="ml-auto pb-2" {% if not g.project.members %} data-toggle="tooltip" title="{{_('You should start by adding participants')}}" {% endif %}>
|
<span id="new-bill" class="ml-auto pb-2" {% if not g.project.members %} data-toggle="tooltip" title="{{_('You should start by adding participants')}}" {% endif %}>
|
||||||
<a href="{{ url_for('.add_bill') }}" class="btn btn-primary {% if not g.project.members %} disabled {% endif %}" data-toggle="modal" data-keyboard="true" data-target="#bill-form" autofocus>
|
<a href="{{ url_for('.add_bill') }}" class="btn btn-primary {% if not g.project.members %} disabled {% endif %}" data-toggle="modal" data-keyboard="true" data-target="#bill-form" autofocus>
|
||||||
<i class="icon icon-white before-text">{{ static_include("images/plus.svg") | safe }}</i>
|
<i class="icon icon-white before-text">{{ static_include("images/plus.svg") | safe }}</i>
|
||||||
|
|
|
@ -649,7 +649,7 @@ def invite():
|
||||||
return render_template("send_invites.html", form=form, qrcode=qrcode_svg)
|
return render_template("send_invites.html", form=form, qrcode=qrcode_svg)
|
||||||
|
|
||||||
|
|
||||||
@main.route("/<project_id>/")
|
@main.route("/<project_id>/", methods=["GET", "POST"])
|
||||||
def list_bills():
|
def list_bills():
|
||||||
bill_form = get_billform_for(g.project)
|
bill_form = get_billform_for(g.project)
|
||||||
# Used for CSRF validation
|
# Used for CSRF validation
|
||||||
|
@ -673,19 +673,37 @@ def list_bills():
|
||||||
# Each item will be a (weight_sum, Bill) tuple.
|
# Each item will be a (weight_sum, Bill) tuple.
|
||||||
# TODO: improve this awkward result using column_property:
|
# TODO: improve this awkward result using column_property:
|
||||||
# https://docs.sqlalchemy.org/en/14/orm/mapped_sql_expr.html.
|
# https://docs.sqlalchemy.org/en/14/orm/mapped_sql_expr.html.
|
||||||
weighted_bills = g.project.get_bill_weights_ordered().paginate(
|
if request.method == "GET":
|
||||||
per_page=100, error_out=True
|
weighted_bills = g.project.get_bill_weights_ordered().paginate(
|
||||||
)
|
per_page=100, error_out=True
|
||||||
|
)
|
||||||
|
return render_template(
|
||||||
|
"list_bills.html",
|
||||||
|
bills=weighted_bills,
|
||||||
|
member_form=MemberForm(g.project),
|
||||||
|
bill_form=bill_form,
|
||||||
|
csrf_form=csrf_form,
|
||||||
|
add_bill=request.values.get("add_bill", False),
|
||||||
|
current_view="list_bills",
|
||||||
|
)
|
||||||
|
if request.method == "POST":
|
||||||
|
start_date = request.form['start_date']
|
||||||
|
end_date = request.form['end_date']
|
||||||
|
weighted_bills = g.project.get_filtered_bill_weights_ordered(start_date, end_date).paginate(
|
||||||
|
per_page=100, error_out=True
|
||||||
|
)
|
||||||
|
return render_template(
|
||||||
|
"list_bills.html",
|
||||||
|
bills=weighted_bills,
|
||||||
|
member_form=MemberForm(g.project),
|
||||||
|
bill_form=bill_form,
|
||||||
|
csrf_form=csrf_form,
|
||||||
|
add_bill=request.values.get("add_bill", False),
|
||||||
|
current_view="list_bills",
|
||||||
|
start_date=start_date,
|
||||||
|
end_date=end_date,
|
||||||
|
)
|
||||||
|
|
||||||
return render_template(
|
|
||||||
"list_bills.html",
|
|
||||||
bills=weighted_bills,
|
|
||||||
member_form=MemberForm(g.project),
|
|
||||||
bill_form=bill_form,
|
|
||||||
csrf_form=csrf_form,
|
|
||||||
add_bill=request.values.get("add_bill", False),
|
|
||||||
current_view="list_bills",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@main.route("/<project_id>/members/add", methods=["GET", "POST"])
|
@main.route("/<project_id>/members/add", methods=["GET", "POST"])
|
||||||
|
|
Loading…
Reference in a new issue