Revision 118a8b62
Von G. Richardson vor mehr als 5 Jahren hinzugefügt
SL/Controller/Inventory.pm | ||
---|---|---|
45 | 45 |
|
46 | 46 |
$::form->{title} = t8('Stock'); |
47 | 47 |
|
48 |
# Sometimes we want to open stock_in with a part already selected, but only |
|
49 |
# the parts_id is passed in the url (and not also warehouse, bin and unit). |
|
50 |
# Setting select_default_bin in the form will make sure the default warehouse |
|
51 |
# and bin of that part will already be preselected, as normally |
|
52 |
# set_target_from_part is only called when a part is changed. |
|
53 |
$self->set_target_from_part if $::form->{select_default_bin}; |
|
48 | 54 |
$::request->layout->focus('#part_id_name'); |
49 | 55 |
my $transfer_types = WH->retrieve_transfer_types('in'); |
50 | 56 |
map { $_->{description} = $main::locale->text($_->{description}) } @{ $transfer_types }; |
Auch abrufbar als: Unified diff
Inventory stock_in - select_default_bin Modus
wird in der Form / URL ein select_default_bin=1 übergeben, wird der
Standardlagerplatz des Artikels vorausgewählt (sofern vorhanden).
Ansonsten passiert das Aktualisieren von Lager/Lagerplatz nur, wenn sich
der Artikel nach Laden der Seite ändert.