X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/82053b457be3de2ee5285dc13633222f4d30802c..aa1a40e9141fd718e85e6e92f78adf301f53cf1f:/SL/InstanceConfiguration.pm diff --git a/SL/InstanceConfiguration.pm b/SL/InstanceConfiguration.pm index d9b7129a7..97ece8670 100644 --- a/SL/InstanceConfiguration.pm +++ b/SL/InstanceConfiguration.pm @@ -153,6 +153,32 @@ sub get_default_bin_id { my ($self) = @_; return ($self->{data}->{bin_id}); } +sub get_default_warehouse_id_ignore_onhand { + my ($self) = @_; + return ($self->{data}->{warehouse_id_ignore_onhand}); +} + +sub get_default_bin_id_ignore_onhand { + my ($self) = @_; + return ($self->{data}->{bin_id_ignore_onhand}); +} + + +sub get_transfer_default { + my ($self) = @_; + return ($self->{data}->{transfer_default}); +} + +sub get_transfer_default_use_master_default_bin { + my ($self) = @_; + return ($self->{data}->{transfer_default_use_master_default_bin}); +} + +sub get_transfer_default_ignore_onhand { + my ($self) = @_; + return ($self->{data}->{transfer_default_ignore_onhand}); +} + 1; @@ -274,6 +300,27 @@ Returns the default warehouse_id Returns the default bin_id +=item C + +Returns the default warehouse_id for transfers without checking the +current stock quantity + +=item C + +Returns the default bin_id for transfers without checking the. +current stock quantity + + + +=item C + +=item C + +=item C + +Returns the default behavior for the transfer out default feature (true or false) + + =back =head1 BUGS