]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/InvoiceItem.pm
Preis-/Betrags-/Steuerberechnung in Models einbinden
[mfinanz.git] / SL / DB / InvoiceItem.pm
index 20afb033f4d37c2fd10758da149270b7c5ccee09..04b28a1952fe7eca064aa904f103a46d5478916c 100644 (file)
@@ -4,19 +4,17 @@ use strict;
 
 use SL::DB::MetaSetup::InvoiceItem;
 
-for my $field (qw(
-  qty allocated sellprice fxsellprice discount base_qty marge_total
-  marge_percent lastcost price_factor marge_price_factor
-)) {
-  __PACKAGE__->attr_number($field, places => -2);
-}
-
 __PACKAGE__->meta->add_relationship(
   part => {
     type         => 'one to one',
     class        => 'SL::DB::Part',
     column_map   => { parts_id => 'id' },
-  }
+  },
+  price_factor_obj => {
+    type           => 'one to one',
+    class          => 'SL::DB::PriceFactor',
+    column_map     => { price_factor_id => 'id' },
+  },
 );
 
 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.