1 # This file has been auto-generated only because it didn't exist.
2 # Feel free to modify it at will; it will not be overwritten automatically.
8 use SL::DB::MetaSetup::Shop;
9 use SL::DB::Manager::Shop;
10 use SL::DB::Helper::ActsAsList;
11 use SL::Locale::String qw(t8);
13 __PACKAGE__->meta->initialize;
20 push @errors, $::locale->text('The description is missing.') unless $self->{description};
21 push @errors, $::locale->text('The path is missing.') unless $self->{path};
29 my @shops_dd = ( { title => t8("all") , value =>'' } );
30 my $shops = SL::DB::Manager::Shop->get_all( where => [ obsolete => 0 ] );
31 my @tmp = map { { title => $_->{description}, value => $_->{id} } } @{ $shops } ;
46 SL::DB::Shop - Model for the 'shops' table
50 This is a standard Rose::DB::Object based model and can be used as one.
58 Returns an error if the shop description is missing
62 Returns an array of hashes for dropdowns in filters
68 Werner Hahn E<lt>wh@futureworldsearch.netE<gt>
70 G. Richardson E<lt>grichardson@kivitendo-premium.deE<gt>