add inventory worksheet report

This commit is contained in:
Lance Edgar 2012-11-28 15:47:00 -08:00
parent a53f4477e4
commit 4cd598f33e
3 changed files with 202 additions and 18 deletions

View file

@ -0,0 +1,29 @@
<%inherit file="/reports/base.mako" />
<%def name="title()">Report : Inventory Worksheet</%def>
<p>Please provide the following criteria to generate your report:</p>
<br />
${h.form(request.current_route_url())}
<div class="field-wrapper">
<label for="department">Department</label>
<div class="field">
<select name="department">
% for department in departments:
<option value="${department.uuid}">${department.name}</option>
% endfor
</select>
</div>
</div>
<div class="field">
${h.checkbox('weighted-only', label=h.literal("Include items sold by weight <strong>only</strong>."))}
</div>
<div class="buttons">
${h.submit('submit', "Generate Report")}
</div>
${h.end_form()}