Revision ed023e22
Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt
bin/mozilla/do.pl | ||
---|---|---|
1126 | 1126 |
|
1127 | 1127 |
# Standardlagerplatz für Standard-Auslagern verwenden, falls keiner für die Ware explizit definiert wurde |
1128 | 1128 |
if ($::instance_conf->get_transfer_default_use_master_default_bin) { |
1129 |
$part_info->{warehouse_id} ||= $::instance_conf->get_default_warehouse_id;
|
|
1130 |
$part_info->{bin_id} ||= $::instance_conf->get_default_bin_id;
|
|
1129 |
$part_info->{warehouse_id} ||= $::instance_conf->get_warehouse_id; |
|
1130 |
$part_info->{bin_id} ||= $::instance_conf->get_bin_id; |
|
1131 | 1131 |
} |
1132 | 1132 |
|
1133 | 1133 |
my $units = AM->retrieve_units(\%myconfig, $form); |
... | ... | |
1560 | 1560 |
|
1561 | 1561 |
# entsprechende defaults holen, falls standardlagerplatz verwendet werden soll |
1562 | 1562 |
if ($::instance_conf->get_transfer_default_use_master_default_bin) { |
1563 |
$default_warehouse_id = $::instance_conf->get_default_warehouse_id;
|
|
1564 |
$default_bin_id = $::instance_conf->get_default_bin_id;
|
|
1563 |
$default_warehouse_id = $::instance_conf->get_warehouse_id; |
|
1564 |
$default_bin_id = $::instance_conf->get_bin_id; |
|
1565 | 1565 |
} |
1566 | 1566 |
|
1567 | 1567 |
|
... | ... | |
1637 | 1637 |
# auslagern soll immer gehen, auch wenn nicht genügend auf lager ist. |
1638 | 1638 |
# der lagerplatz ist hier extra konfigurierbar, bspw. Lager-Korrektur mit |
1639 | 1639 |
# Lagerplatz Lagerplatz-Korrektur |
1640 |
my $default_warehouse_id_ignore_onhand = $::instance_conf->get_default_warehouse_id_ignore_onhand;
|
|
1641 |
my $default_bin_id_ignore_onhand = $::instance_conf->get_default_bin_id_ignore_onhand;
|
|
1640 |
my $default_warehouse_id_ignore_onhand = $::instance_conf->get_warehouse_id_ignore_onhand; |
|
1641 |
my $default_bin_id_ignore_onhand = $::instance_conf->get_bin_id_ignore_onhand; |
|
1642 | 1642 |
if ($::instance_conf->get_transfer_default_ignore_onhand && $default_bin_id_ignore_onhand) { |
1643 | 1643 |
# entsprechende defaults holen |
1644 | 1644 |
# falls chargenumber, bestbefore oder anzahl nicht stimmt, auf automatischen |
Auch abrufbar als: Unified diff
InstanceConf: Funktionen get_default_(warehouse|bin)_id heißen inzwischen get_(warehouse|bin)_id