Fremdschlüssel für Tabellen oe, delivery_orders, parts, translation
[kivitendo-erp.git] / SL / DB / Business.pm
index badd0b5..1fea0ef 100644 (file)
@@ -1,13 +1,19 @@
-# This file has been auto-generated only because it didn't exist.
-# Feel free to modify it at will; it will not be overwritten automatically.
-
 package SL::DB::Business;
 
 use strict;
 
 use SL::DB::MetaSetup::Business;
+use SL::DB::Manager::Business;
+
+sub validate {
+  my ($self) = @_;
+
+  my @errors;
+  push @errors, $::locale->text('The description is missing.')          if !$self->description;
+  push @errors, $::locale->text('The discount must not be negative.')   if $self->discount <  0;
+  push @errors, $::locale->text('The discount must be less than 100%.') if $self->discount >= 1;
 
-# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
-__PACKAGE__->meta->make_manager_class;
+  return @errors;
+}
 
 1;