X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/61cdba5d566357f3beabe0e7f3f0cb2d7bdccd73..aa1a40e9141fd718e85e6e92f78adf301f53cf1f:/SL/InstanceConfiguration.pm diff --git a/SL/InstanceConfiguration.pm b/SL/InstanceConfiguration.pm index 850e50cb3..97ece8670 100644 --- a/SL/InstanceConfiguration.pm +++ b/SL/InstanceConfiguration.pm @@ -144,6 +144,42 @@ sub get_purchase_delivery_order_show_delete { return $self->{data}->{purchase_delivery_order_show_delete}; } +sub get_default_warehouse_id { + my ($self) = @_; + return ($self->{data}->{warehouse_id}); +} + +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; __END__ @@ -256,6 +292,35 @@ corresponding record type (true or false). Returns the default behavior for showing the delete button for the corresponding record type (true or false). +=item C + +Returns the default warehouse_id + +=item C + +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