X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FPart.pm;h=c2cb641ae98bd97647828b823cea05c9f1fae9f6;hb=bf78e242d22391be5f937f410153342f7acaf59b;hp=5ea3b26989c223d071411179b8398b947bef01a3;hpb=06e79bf0f4ad9d5499f4435d2158d8a064034a8f;p=kivitendo-erp.git diff --git a/SL/DB/Part.pm b/SL/DB/Part.pm index 5ea3b2698..c2cb641ae 100644 --- a/SL/DB/Part.pm +++ b/SL/DB/Part.pm @@ -162,9 +162,27 @@ sub new_assortment { sub last_modification { my ($self) = @_; - return $self->mtime or $self->itime; + return $self->mtime // $self->itime; }; +sub used_in_record { + my ($self) = @_; + die 'not an accessor' if @_ > 1; + + return 1 unless $self->id; + + my @relations = qw( + SL::DB::InvoiceItem + SL::DB::OrderItem + SL::DB::DeliveryOrderItem + ); + + for my $class (@relations) { + eval "require $class"; + return 1 if $class->_get_manager_class->get_all_count(query => [ parts_id => $self->id ]); + } + return 0; +} sub orphaned { my ($self) = @_; die 'not an accessor' if @_ > 1; @@ -176,7 +194,6 @@ sub orphaned { SL::DB::OrderItem SL::DB::DeliveryOrderItem SL::DB::Inventory - SL::DB::Assembly SL::DB::AssortmentItem ); @@ -263,6 +280,36 @@ sub get_chart { return $charts->{$taxzone}->{$type}; } +sub get_stock { + my ($self, %params) = @_; + + return undef unless $self->id; + + my $query = 'SELECT SUM(qty) FROM inventory WHERE parts_id = ?'; + my @values = ($self->id); + + if ( $params{bin_id} ) { + $query .= ' AND bin_id = ?'; + push(@values, $params{bin_id}); + } + + if ( $params{warehouse_id} ) { + $query .= ' AND warehouse_id = ?'; + push(@values, $params{warehouse_id}); + } + + if ( $params{shippingdate} ) { + die unless ref($params{shippingdate}) eq 'DateTime'; + $query .= ' AND shippingdate <= ?'; + push(@values, $params{shippingdate}); + } + + my ($stock) = selectrow_query($::form, $self->db->dbh, $query, @values); + + return $stock || 0; # never return undef +}; + + # this is designed to ignore chargenumbers, expiration dates and just give a list of how much <-> where sub get_simple_stock { my ($self, %params) = @_; @@ -493,6 +540,10 @@ fields belonging to the tax zone given by C<$params{taxzone}>. The information retrieved by the function is cached. +=item C + +Checks if this article has been used in orders, invoices or delivery orders. + =item C Checks if this article is used in orders, invoices, delivery orders or @@ -520,6 +571,20 @@ Non-recursive lastcost sum of all the assembly item lastcosts. Non-recursive lastcost sum of all the assortment item lastcosts. +=item C + +Fetches stock qty in the default unit for a part. + +bin_id and warehouse_id may be passed as params. If only a bin_id is passed, +the stock qty for that bin is returned. If only a warehouse_id is passed, the +stock qty for all bins in that warehouse is returned. If a shippingdate is +passed the stock qty for that date is returned. + +Examples: + my $qty = $part->get_stock(bin_id => 52); + + $part->get_stock(shippingdate => DateTime->today->add(days => -5)); + =back =head1 AUTHORS