Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#100 improve performance qoh job #111

Merged
merged 6 commits into from
Oct 4, 2015
Prev Previous commit
improved location btn group when running background job
  • Loading branch information
jmiranda committed Oct 4, 2015
commit 36c785feea633bafbcb59ea22df04848c1a68437
18 changes: 10 additions & 8 deletions grails-app/views/inventorySnapshot/_sidebar.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,18 @@
<hr/>
<h2>Re-indexing</h2>
<p>If data is stale or does not exist, you can run a background process that re-indexes the quantity on hand values for the current location and selected date.</p>

<div class="form-group">
<label><i class="icon icon-map-marker"></i> <warehouse:message code="default.location.label" default="Location"/></label>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<input type="radio" name="location" id="currentLocation" autocomplete="off" checked> ${session?.warehouse?.name}
</label>
<label class="btn btn-primary">
<input type="radio" name="location" id="allLocations" autocomplete="off"> All locations
</label>
<div>

<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="location" id="allLocations" autocomplete="off"> All locations
</label>
<label class="btn btn-primary active">
<input type="radio" name="location" id="currentLocation" autocomplete="off" checked> ${session?.warehouse?.name}
</label>
</div>
</div>
</div>
<div class="form-group">
Expand Down