Beim Einlagern Grund für Einlagerung mit aufnehmen
authorMartin Helmling mh@waldpark.octosoft.eu <martin.helmling@octosoft.eu>
Mon, 12 May 2014 12:15:00 +0000 (14:15 +0200)
committerMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Thu, 22 Sep 2016 06:09:28 +0000 (08:09 +0200)
SL/Controller/Inventory.pm
locale/de/all
templates/webpages/inventory/warehouse_selection_stock.html

index ceebf68..6392ecc 100644 (file)
@@ -39,7 +39,9 @@ sub action_stock_in {
   $::form->{title}   = t8('Stock');
 
   $::request->layout->focus('#part_id_name');
-  $_[0]->render('inventory/warehouse_selection_stock', title => $::form->{title});
+  my $transfer_types = WH->retrieve_transfer_types('in');
+  map { $_->{description} = $main::locale->text($_->{description}) } @{ $transfer_types };
+  $self->render('inventory/warehouse_selection_stock', title => $::form->{title}, TRANSFER_TYPES => $transfer_types );
 }
 
 sub action_stock {
index 532596b..4b05b81 100755 (executable)
@@ -2483,6 +2483,7 @@ $self->{texts} = {
   'Select template to paste'    => 'Einzufügende Vorlage auswählen',
   'Select type of removal'      => 'Grund der Entnahme ausw&auml;hlen',
   'Select type of transfer'     => 'Grund der Umlagerung ausw&auml;hlen',
+  'Select type of transfer in'  => 'Grund der Einlagerung auswählen:',
   'Selected'                    => 'Ausgewählt',
   'Selection'                   => 'Auswahlbox',
   'Selection fields: The option field must contain the available options for the selection. Options are separated by \'##\', for example \'Early##Normal##Late\'.' => 'Auswahlboxen: Das Optionenfeld muss die f&uuml;r die Auswahl verf&uuml;gbaren Eintr&auml;ge enthalten. Die Eintr&auml;ge werden mit \'##\' voneinander getrennt. Beispiel: \'Fr&uuml;h##Normal##Sp&auml;t\'.',
index d53dc05..c9ca339 100644 (file)
    </td>
   </tr>
 
+  <tr>
+   <td>[% 'Select type of transfer in' | $T8 %]:</td>
+   <td>[% L.select_tag('transfer_type_id', TRANSFER_TYPES, title_key='description') %] </td>
+  </tr>
+
   <tr>
    <th align="right" nowrap>[% 'Optional comment' | $T8 %]</th>
    <td>[% L.input_tag('comment', FORM.comment, size=60) %]</td>