Refactor orderfooter and quantity display

* Unit, others_quantitiy and other_tolerance is now in orderfooter
* We display the missing units in the article row now.
This commit is contained in:
sandoz 2009-11-01 18:33:14 +01:00
parent 646a6b11f5
commit fd1eb8a1d7
5 changed files with 58 additions and 22 deletions

View File

@ -11,9 +11,8 @@
<tr> <tr>
<th>Name</th> <th>Name</th>
<th></th> <th></th>
<th style="width:7em;">Gebinde</th>
<th style="width:4.5em;">Preis</th> <th style="width:4.5em;">Preis</th>
<th id="col_packages"><acronym title="insgesamt bestellte Gebinde">Best</acronym></th> <th style="width:7em;">Fehlende Einheiten</th>
<th id="col_required">Menge</th> <th id="col_required">Menge</th>
<th id="col_tolerance">Toleranz</th> <th id="col_tolerance">Toleranz</th>
<th>Summe</th> <th>Summe</th>
@ -42,14 +41,17 @@
onmouseover="$('article-info_<%= order_article.id %>').show();" onmouseout="$('article-info_<%= order_article.id %>').hide();"> onmouseover="$('article-info_<%= order_article.id %>').show();" onmouseout="$('article-info_<%= order_article.id %>').hide();">
<td class="name"><%= order_article.article.name %></td> <td class="name"><%= order_article.article.name %></td>
<td><%=h order_article.article.origin %></td> <td><%=h order_article.article.origin %></td>
<td><%= @order.stockit? ? order_article.article.quantity_available : @unit[i] %> * <%=h order_article.article.unit %></td>
<td><%= number_to_currency(@price[i]) %></td> <td><%= number_to_currency(@price[i]) %></td>
<td id="units_<%= i %>"><%= order_article.units_to_order %></td> <td><span id="missing_units_<%= i %>"><%= if @order.stockit?
order_article.article.quantity_available
else
missing_units = @unit[i] - (((@quantity[i] + @others_quantity[i]) % @unit[i]) + @tolerance[i] + @others_tolerance[i])
missing_units < 0 ? 0 : missing_units
end%></span></td>
<td class="quantity"> <td class="quantity">
<input type="hidden" id="q_<%= i %>" name="<%= "ordered[#{order_article.id}][quantity]" %>" value="<%= @quantity[i] %>" size="2" /> <input type="hidden" id="q_<%= i %>" name="<%= "ordered[#{order_article.id}][quantity]" %>" value="<%= @quantity[i] %>" size="2" />
<span id="q_used_<%= i %>" class="used"><%= @used_quantity[i] %></span> + <span id="q_used_<%= i %>" class="used"><%= @used_quantity[i] %></span> +
<span id="q_unused_<%= i %>" class="unused"><%= @quantity[i] - @used_quantity[i] %></span> <span id="q_unused_<%= i %>" class="unused"><%= @quantity[i] - @used_quantity[i] %></span>
<span class="total">(<span id="q_total_<%= i %>"><%= @quantity[i] + @others_quantity[i] %></span>)</span>
<%= button_to_function('+', "increaseQuantity(#{i})") %> <%= button_to_function('+', "increaseQuantity(#{i})") %>
<%= button_to_function('-', "decreaseQuantity(#{i})") %> <%= button_to_function('-', "decreaseQuantity(#{i})") %>
</td> </td>
@ -58,23 +60,32 @@
<% if (@unit[i] > 1) -%> <% if (@unit[i] > 1) -%>
<span id="t_used_<%= i %>" class="used"><%= @used_tolerance[i] %></span> + <span id="t_used_<%= i %>" class="used"><%= @used_tolerance[i] %></span> +
<span id="t_unused_<%= i %>" class="unused"><%= @tolerance[i] - @used_tolerance[i] %></span> <span id="t_unused_<%= i %>" class="unused"><%= @tolerance[i] - @used_tolerance[i] %></span>
<span class="total">(<span id="t_total_<%= i %>"><%= @tolerance[i] + @others_tolerance[i] %></span>)</span>
<%= button_to_function('+', "increaseTolerance(#{i})") %> <%= button_to_function('+', "increaseTolerance(#{i})") %>
<%= button_to_function('-', "decreaseTolerance(#{i})") %> <%= button_to_function('-', "decreaseTolerance(#{i})") %>
<% end -%> <% end -%>
</td> </td>
<td id="td_price_<%= i %>" style="text-align:right; padding-right:10px; width:4em"><span id="price_<%= i %>_display"><%= number_to_currency(article_total, :unit => "") %></span> €</td> <td id="td_price_<%= i %>" style="text-align:right; padding-right:10px; width:4em"><span id="price_<%= i %>_display"><%= number_to_currency(article_total, :unit => "") %></span> €
<div class="article-info" id="article-info_<%= order_article.id %>" style="display:none">
<div class="right">
Volle Gebinde: <span id="units_<%= i %>"><%= order_article.units_to_order %></span><br/>
Gesamt-Einheiten: <span id="q_total_<%= i %>"><%= @quantity[i] + @others_quantity[i] %></span><br/>
Gesamt-Toleranz: <span id="t_total_<%= i %>"><%= @tolerance[i] + @others_tolerance[i] %></span><br/>
</div>
<div class="left">
<b><%= order_article.article.name -%></b>
<p>
Hersteller: <%= order_article.article.manufacturer -%><br />
Notiz: <%= order_article.article.note -%><br />
Gebinde: <%= @order.stockit? ? order_article.article.quantity_available : @unit[i] %> * <%=h order_article.article.unit %>
</p>
</div>
</div>
</td>
</tr> </tr>
<div class="article-info" id="article-info_<%= order_article.id %>" style="display:none">
<b><%= order_article.article.name -%></b> <%- i = i + 1
<p> end
Hersteller: <%= order_article.article.manufacturer -%><br /> end -%>
Notiz: <%= order_article.article.note -%><br />
</p>
</div>
<%- i = i + 1
end
end -%>
</tbody> </tbody>
</table> </table>
</div> </div>
@ -125,7 +136,7 @@ end%>
// configuration // configuration
setToleranceBehaviour(<%= Foodsoft.config[:tolerance_is_costly] %>); setToleranceBehaviour(<%= Foodsoft.config[:tolerance_is_costly] %>);
// initialize javascript // initialize javascript
updateBalance(); updateBalance();

View File

@ -109,6 +109,13 @@ function update(item, quantity, tolerance) {
itemTotal[item] = price[item] * (Number(quantity)); itemTotal[item] = price[item] * (Number(quantity));
} }
$('price_' + item + '_display').update(asMoney(itemTotal[item])); $('price_' + item + '_display').update(asMoney(itemTotal[item]));
// update missing units
missing_units = unit[item] - (((quantityOthers[item] + Number(quantity)) % unit[item]) + Number(tolerance) + toleranceOthers[item])
if (missing_units < 0) {
missing_units = 0;
}
$('missing_units_' + item).update(String(missing_units));
// update balance // update balance
updateBalance(); updateBalance();

View File

@ -81,6 +81,12 @@ option {
span.click-me { span.click-me {
cursor: pointer; } cursor: pointer; }
.left {
float: left; }
.right {
float: right; }
.clear { .clear {
clear: both; } clear: both; }
@ -413,6 +419,7 @@ table#order {
padding-right: 10px; } padding-right: 10px; }
#order-footer, .article-info { #order-footer, .article-info {
text-align: left;
z-index: 1; z-index: 1;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
@ -435,7 +442,7 @@ table#order {
.article-info { .article-info {
z-index: 2; z-index: 2;
width: 30em; width: 50em;
height: 8em; height: 8em;
border: none; border: none;
left: 30px; } left: 30px; }

View File

@ -81,6 +81,12 @@ option {
span.click-me { span.click-me {
cursor: pointer; } cursor: pointer; }
.left {
float: left; }
.right {
float: right; }
.clear { .clear {
clear: both; } clear: both; }
@ -413,6 +419,7 @@ table#order {
padding-right: 10px; } padding-right: 10px; }
#order-footer, .article-info { #order-footer, .article-info {
text-align: left;
z-index: 1; z-index: 1;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
@ -435,7 +442,7 @@ table#order {
.article-info { .article-info {
z-index: 2; z-index: 2;
width: 30em; width: 50em;
height: 8em; height: 8em;
border: none; border: none;
left: 30px; } left: 30px; }

View File

@ -90,7 +90,10 @@ option
span.click-me span.click-me
cursor: pointer cursor: pointer
.left
float: left
.right
float: right
.clear .clear
clear: both clear: both
@ -454,6 +457,7 @@ table#order
td td
:padding-right 10px :padding-right 10px
#order-footer, .article-info #order-footer, .article-info
text-align: left
z-index: 1 z-index: 1
position: fixed position: fixed
bottom: 0 bottom: 0
@ -475,7 +479,7 @@ table#order
background-color: red background-color: red
.article-info .article-info
z-index: 2 z-index: 2
width: 30em width: 50em
height: 8em height: 8em
border: none border: none
left: 30px left: 30px