Add support for making new-style batches from products grid query

Just label batches so far, will have to revisit that
This commit is contained in:
Lance Edgar 2016-11-06 23:31:27 -06:00
parent 4cfd3aa00e
commit 0477561ca6
2 changed files with 137 additions and 30 deletions

View file

@ -1,28 +1,74 @@
## -*- coding: utf-8 -*-
<%inherit file="/base.mako" />
<%def name="title()">Create Products Batch</%def>
<%def name="title()">Products: Create Batch</%def>
<%def name="context_menu_items()">
<li>${h.link_to("Back to Products", url('products'))}</li>
</%def>
<div class="form">
<%def name="head_tags()">
${parent.head_tags()}
<script type="text/javascript">
$(function() {
${h.form(request.current_route_url())}
$('#batch_type').selectmenu();
$('#make-batch').click(function() {
$(this).button('disable').button('option', 'label', "Working, please wait...");
$(this).parents('form:first').submit();
});
});
</script>
</%def>
<ul id="context-menu">
${self.context_menu_items()}
</ul>
% if supported_batches is not Undefined:
<div class="form">
${h.form(request.current_route_url())}
<div class="field-wrapper">
<label for="batch_type">Batch Type</label>
<div class="field">
${h.select('batch_type', None, supported_batches)}
</div>
</div>
<div class="buttons">
<button type="button" id="make-batch">Create Batch</button>
${h.link_to("Cancel", url('products'), class_='button')}
</div>
${h.end_form()}
<div class="field-wrapper">
<label for="provider">Batch Type</label>
<div class="field">
${h.select('provider', None, providers)}
</div>
</div>
<div class="buttons">
${h.submit('create', "Create Batch")}
${h.link_to("Cancel", url('products'), class_='button')}
</div>
% else: ## legacy mode
${h.end_form()}
<div class="form">
</div>
${h.form(request.current_route_url())}
<div class="field-wrapper">
<label for="provider">Batch Type</label>
<div class="field">
${h.select('provider', None, providers)}
</div>
</div>
<div class="buttons">
${h.submit('create', "Create Batch")}
${h.link_to("Cancel", url('products'), class_='button')}
</div>
${h.end_form()}
</div>
% endif