Revision dcdef7d9
Von Jan Büren vor fast 3 Jahren hinzugefügt
SL/Controller/DeliveryOrder.pm | ||
---|---|---|
933 | 933 |
stock_info => $yaml, |
934 | 934 |
stock_qty => $stock_qty, |
935 | 935 |
}; |
936 |
|
|
937 | 936 |
$self->render(\ SL::JSON::to_json($response), { layout => 0, type => 'json', process => 0 }); |
938 | 937 |
} |
939 | 938 |
|
... | ... | |
2154 | 2153 |
$units_by_name{$_->{unit}}->convert_to($_->{qty}, $units_by_name{$unit}) |
2155 | 2154 |
} @$stock_info; |
2156 | 2155 |
|
2157 |
my $content = _format_number($sum, 2); |
|
2156 |
my $content = _format_number($sum, 2) . ' ' . $unit;
|
|
2158 | 2157 |
|
2159 | 2158 |
return $content; |
2160 | 2159 |
} |
templates/webpages/delivery_order/tabs/_row.html | ||
---|---|---|
88 | 88 |
</td> |
89 | 89 |
|
90 | 90 |
<td> |
91 |
<span id="stock_[% ID %]" class="data-stock-qty">[% SELF.calculate_stock_in_out(ITEM) %]</span> |
|
91 |
<span id="stock_[% ID %]" class="data-stock-qty">[% SELF.calculate_stock_in_out(ITEM) %] [% ITEM.unit %]</span>
|
|
92 | 92 |
[% P.button_tag("kivi.DeliveryOrder.open_stock_in_out_dialog(this, '" _ in_out _"')", "?") %] |
93 | 93 |
</td> |
94 | 94 |
</tr> |
Auch abrufbar als: Unified diff
DeliveryOrder: calculate_stock_in_out liefert auch die Einheit mit
In do.pl wird hier auch hart die Standardeinheit mitübergeben und
ein Wechsel der Einheit in den Auslagermasken hat keine Auswirkung
TODO: Macht es Sinn überhaupt eine Auswahlliste für Einheit anzubieten?