1 package SL::PriceSource::Pricegroup;
4 use parent qw(SL::PriceSource::Base);
6 use SL::PriceSource::Price;
8 use SL::Locale::String;
9 use List::UtilsBy qw(min_by);
10 use List::Util qw(first);
12 sub name { 'pricegroup' }
14 sub description { t8('Pricegroup') }
16 sub available_prices {
17 my ($self, %params) = @_;
19 return () unless $self->record->is_sales;
21 my $item = $self->record_item;
23 my $prices = SL::DB::Manager::Price->get_all(
24 query => [ parts_id => $item->parts_id, price => { gt => 0 } ],
25 with_objects => 'pricegroup',
26 order_by => 'pricegroun.id',
29 return () unless @$prices;
32 $self->make_price($_);
36 sub available_discounts { }
38 sub price_from_source {
39 my ($self, $source, $spec) = @_;
41 my $price = SL::DB::Manager::Price->find_by(pricegroup_id => $spec, parts_id => $self->part->id);
43 # TODO: if someone deletes the prices entry, this fails. add a fallback
44 return $self->make_price($price);
48 my ($self, %params) = @_;
50 return () unless $self->record->is_sales;
52 my @prices = $self->available_prices;
53 my $customer = $self->record->customer;
55 return () if !$customer || !$customer->klass;
57 my $best_price = first { $_->spec == $customer->klass } @prices;
59 return $best_price || ();
65 my ($self, $price_obj) = @_;
67 SL::PriceSource::Price->new(
68 price => $price_obj->price,
69 spec => $price_obj->pricegroup->id,
70 description => $price_obj->pricegroup->pricegroup,
71 price_source => $self,