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 sort_by => 'pricegroup.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);
47 sub discount_from_source { }
50 my ($self, %params) = @_;
52 return () unless $self->record->is_sales;
54 my @prices = $self->available_prices;
55 my $customer = $self->record->customer;
57 return () if !$customer || !$customer->pricegroup_id;
59 my $best_price = first { $_->spec == $customer->pricegroup_id } @prices;
61 return $best_price || ();
67 my ($self, $price_obj) = @_;
69 SL::PriceSource::Price->new(
70 price => $price_obj->price,
71 spec => $price_obj->pricegroup->id,
72 description => $price_obj->pricegroup->pricegroup,
73 price_source => $self,